:root {
    --bg-color: #fafafa;
    --text-main: #171717;
    --text-muted: #737373;
    --text-light: #a3a3a3;
    --border-light: #e5e5e5;
    --font-stack: 'Courier New', Courier, monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background: #000;
    color: #fff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Utilities */
.container { 
    padding-left: 1rem;
    padding-right: 1rem;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.letter-spaced { letter-spacing: 0.05em; }
.mb-025 { margin-bottom: 0.25rem; }
.section { padding-top: 3rem; }
.section:first-child { padding-top: 1.5rem; }
.section:last-child { padding-bottom: 1.5rem; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

p.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Header */
header {
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

header h1, header .subtitle, header .description {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Small back chevron for legal/privacy/cookies pages */
header h1 a.back-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

header h1 a.back-link::before {
    content: "<";
    font-size: 0.65em;
    opacity: 0.9;
    transform: translateY(-0.05em);
    margin-right: 0.35rem;
    color: rgba(255,255,255,0.95);
}

header .description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%) contrast(110%);
    z-index: 0;
}

/* Language Selector */
.lang-selector {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.lang-selector a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.lang-selector a:hover, .lang-selector a.active {
    color: #fff;
    font-weight: 700;
}

/* Video */
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.video-box {
    aspect-ratio: 16 / 9;
    background-color: #f5f5f5;
    border: 1px solid #d4d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.video-box:hover { border-color: var(--text-muted); }

.video-box.has-thumbnail {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.video-box.has-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    transition: background 0.2s;
    z-index: 1;
}

.video-box.has-thumbnail:hover::before { background: rgba(0,0,0,0.4); }

.video-placeholder-content {
    position: relative;
    z-index: 2;
}

.play-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #a3a3a3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    transition: all 0.2s;
}

.video-box.has-thumbnail .play-btn {
    border-color: #fff;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
}

.video-box:hover .play-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}

.video-box.has-thumbnail:hover .play-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.play-triangle {
    width: 0; 
    height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid currentColor;
    margin-left: 4px;
}

/* Lists */
.legal-content ul {
    margin: 1rem 0 1rem 8rem;
    padding: 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content p {
    margin-left: 4rem;
    margin-bottom: 1.5rem;
}
/* Cookies page adjustments - titles not numbered */
.legal-content h2 + p,
.legal-content h2 + ul + p {
    margin-left: 0;
}

.cookies-page ul {
    margin-left: 4rem !important;
}
.list-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.2s;
}

.list-item:last-child { border-bottom: none; }
.list-item:hover { background-color: rgba(229, 229, 229, 0.5); }

.list-item { color: var(--text-main); }
.list-item .text-muted { color: rgba(23,23,23,0.72); }
.list-item .text-light { color: rgba(23,23,23,0.62); }

.concert-past span:first-child {
    text-decoration: line-through;
}

/* Contact */
footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(110%);
    z-index: 0;
}

.footer-info, .footer-social {
    position: relative;
    z-index: 2;
}

.contact-section .text-muted {
    color: #d4d4d4;
}

.email-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    display: block;
}

.email-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    transition: color 0.2s;
}

.social-icons a:hover { color: #d4d4d4; }

.icon-svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding-left: 4rem;
        padding-right: 4rem; 
    }
    .section {
        max-width: 90rem;
        margin: 0 auto;
    }
    h1 { font-size: 4.5rem; }
    .video-container { 
        flex-direction: row; 
    }
    .video-box { 
        flex: 1;
        max-width: 50vw;
    }
    .list-item { 
        grid-template-columns: repeat(4, 1fr); 
        font-size: 1rem;
    }
    .email-link { font-size: 2rem; }
    header .description { max-width: 50%; }
    header {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    footer{
        padding-top: 3rem;
        padding-bottom: 3rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .lang-selector {
        right: 4rem;
    }
}

/* Cookie banner */
#cookie-banner{
    display:none;
    position:fixed;
    left:0;right:0;bottom:0;
    background:linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.85));
    color:#fff;
    padding:1rem 1.5rem;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    z-index:9999;
    font-family:var(--font-stack);
}
#cookie-banner .cb-text{flex:1;color:var(--text-light);font-size:0.95rem}
#cookie-banner .cb-buttons{display:flex;gap:0.5rem}
#cookie-banner button{padding:0.5rem 0.75rem;border:1px solid rgba(255,255,255,0.12);border-radius:0;cursor:pointer;background:transparent;color:#fff;font-weight:600;font-family:inherit;font-size:inherit;transition:all .12s}
#cookie-banner button.accept{background:var(--text-main);border-color:var(--text-main);color:#fff}
#cookie-banner button.accept:hover{background:#fff;color:var(--text-main)}
#cookie-banner button.reject{background:transparent;border-color:rgba(255,255,255,0.12);color:#fff}
#cookie-banner button.reject:hover{background:rgba(255,255,255,0.06)}
@media (max-width:600px){#cookie-banner{flex-direction:column;align-items:flex-start}#cookie-banner .cb-buttons{align-self:stretch;justify-content:flex-end}}

/* Video denied state */
.video-box.cookies-denied{background-color:#111;color:#fff}
.video-box .hidden-icon{width:48px;height:48px;display:block;margin:0 auto 0.5rem;filter:invert(1) brightness(1.6);}
.video-placeholder-content.denied .denied-msg{color:var(--text-light);font-size:0.9rem;text-align:center}
.video-box.cookies-denied .play-btn{display:none}