/* ═══ mgk Nation — Machine Gun Kelly fan page ═══
   Palette: signature hot pink + black, with neon accents */

:root {
    --bg:        #0a0a0a;
    --bg-2:      #141414;
    --bg-3:      #1c1c1c;
    --pink:      #ff1b9f;     /* signature MGK pink */
    --pink-2:    #ff61c5;     /* lighter accent */
    --pink-deep: #c4097a;
    --neon:      #39ff14;     /* glitch green accent (sparingly) */
    --red:       #e63946;
    --white:     #ffffff;
    --gray:      #a3a3a3;
    --gray-2:    #6b6b6b;
    --border:    #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

::selection { background: var(--pink); color: var(--bg); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Halftone overlay (subtiel) */
.halftone {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 4px 4px;
    opacity: 0.7;
}

/* Subtle noise/grain */
.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ═══ NAV ═══ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px;
    background: rgba(10, 10, 10, 0.0);
    backdrop-filter: blur(0);
    transition: all 0.3s;
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 12px 32px;
}

.brand {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
    display: inline-flex; align-items: center;
}
.brand-x { color: var(--pink); margin-right: 4px; font-size: 26px; line-height: 1; }
.brand-pink { color: var(--pink); }

.nav-links {
    list-style: none;
    display: flex; gap: 28px;
}
.nav-links a {
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gray);
    transition: color 0.18s; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    height: 2px; width: 0; background: var(--pink);
    transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }

.burger {
    display: none; background: transparent; border: 0; cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: var(--bg);
    z-index: 99;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
    font-family: 'Anton', sans-serif;
    font-size: 32px; letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    transition: color 0.18s;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--pink); }

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    padding: 120px 24px 80px;
}

/* MGK foto met meer van het beeld zichtbaar — minder gezoomd */
.hero-photo {
    position: absolute; inset: 0;
    background-image: url('/assets/img/mgk-hero.jpg');
    background-size: auto 100%;          /* fit hoogte, foto blijft volledig zichtbaar */
    background-position: right center;   /* foto rechts in beeld, tekst links */
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-photo::before {
    /* Gradient die de linker-kant donker maakt voor leesbaarheid, foto-kant helder */
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(95deg,
            rgba(10,10,10,0.97) 0%,
            rgba(10,10,10,0.78) 25%,
            rgba(10,10,10,0.30) 50%,
            rgba(10,10,10,0.10) 75%,
            rgba(10,10,10,0.45) 100%);
}
.hero-photo::after {
    /* Pink color-grading + halftone glow */
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 25% 40%, rgba(255,27,159,0.25), transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(196,9,122,0.20), transparent 60%),
        linear-gradient(180deg, transparent 65%, rgba(10,10,10,0.85));
    mix-blend-mode: screen;
    pointer-events: none;
}

@media (max-width: 800px) {
    .hero-photo {
        background-size: auto 75%;
        background-position: center 12%;
    }
    .hero-photo::before {
        background:
            linear-gradient(180deg,
                rgba(10,10,10,0.30) 0%,
                rgba(10,10,10,0.20) 25%,
                rgba(10,10,10,0.55) 50%,
                rgba(10,10,10,0.92) 80%,
                rgba(10,10,10,0.97) 100%);
    }
}

.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.4;
    pointer-events: none; z-index: 2;
    animation: pulse 8s ease-in-out infinite;
}
.glow-1 {
    width: 500px; height: 500px;
    background: var(--pink);
    top: -100px; left: -100px;
}
.glow-2 {
    width: 600px; height: 600px;
    background: var(--pink-deep);
    bottom: -200px; right: -150px;
    animation-delay: 4s;
}
@keyframes pulse {
    0%,100% { transform: scale(1) translate(0,0); opacity: 0.55; }
    50%     { transform: scale(1.15) translate(20px,-20px); opacity: 0.7; }
}

.hero-content {
    position: relative; z-index: 3;
    text-align: center;
    max-width: 1100px;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--pink);
    background: rgba(255,27,159,0.1);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; color: var(--pink);
    margin-bottom: 28px;
}
.badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 10px var(--pink);
    animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 14vw, 200px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 0 80px rgba(255,27,159,0.3);
}
.hero-title .line { display: block; }
.hero-title .strike {
    text-decoration: line-through;
    text-decoration-color: var(--pink);
    text-decoration-thickness: 6px;
    color: var(--gray);
}
.hero-title .line:last-child { color: var(--pink); }

.hero-sub {
    font-size: clamp(13px, 2vw, 17px);
    letter-spacing: 6px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border: 0;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    font-family: inherit;
}
.btn-primary {
    background: var(--pink); color: var(--bg);
    box-shadow: 0 0 30px rgba(255,27,159,0.4);
}
.btn-primary:hover {
    background: var(--white); color: var(--pink);
    box-shadow: 0 0 40px rgba(255,27,159,0.6); transform: translateY(-2px);
}
.btn-ghost {
    background: transparent; color: var(--white);
    border: 2px solid var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--bg); }
.btn-sm { padding: 9px 18px; font-size: 11px; }

.scroll-prompt {
    position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 4px; color: var(--gray);
    animation: bounce 2s infinite;
    z-index: 3;
}
@keyframes bounce {
    0%,100% { transform: translate(-50%, 0); }
    50%     { transform: translate(-50%, 8px); }
}

.hero-marquee {
    position: absolute; bottom: 0; left: 0; right: 0;
    overflow: hidden; white-space: nowrap;
    background: var(--pink); color: var(--bg);
    padding: 12px 0;
    font-family: 'Anton', sans-serif;
    font-size: 18px; letter-spacing: 4px;
    z-index: 4;
    border-top: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
    transform: rotate(-2deg) scaleX(1.05);
    transform-origin: center;
}
.hero-marquee span {
    display: inline-block;
    animation: marquee 40s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ═══ SECTIONS ═══ */
.section {
    padding: 120px 24px;
    position: relative; z-index: 2;
}
.section-dark {
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.container {
    max-width: 1200px; margin: 0 auto;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 11px; letter-spacing: 4px; font-weight: 700;
    color: var(--pink);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 8vw, 96px);
    line-height: 0.95; letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.pink { color: var(--pink); }
.section-sub {
    font-size: 16px; color: var(--gray);
    max-width: 600px; margin-bottom: 56px;
}

/* About */
.about-grid {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px;
    align-items: start;
}
.about-text .lead {
    font-size: 19px; line-height: 1.6;
    color: var(--white); margin-bottom: 18px;
}
.about-text p { color: var(--gray); margin-bottom: 14px; font-size: 15px; }
.about-text strong { color: var(--white); }

.about-facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.fact {
    background: var(--bg-2); border: 1px solid var(--border);
    padding: 24px 18px; border-radius: 4px;
    transition: all 0.2s;
}
.fact:hover { border-color: var(--pink); transform: translateY(-3px); }
.fact-num {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 44px; line-height: 1; color: var(--pink);
    margin-bottom: 8px;
}
.fact-lbl { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* Albums */
.albums {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}
.album {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px;
    transition: all 0.25s;
    cursor: pointer;
}
.album:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: 0 12px 40px rgba(255,27,159,0.15);
}
.album-cover {
    aspect-ratio: 1;
    border-radius: 2px;
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.album-num {
    font-family: 'Anton', sans-serif;
    font-size: 80px; color: rgba(255,255,255,0.3);
    line-height: 1;
}
.featured-tag {
    position: absolute; top: 12px; right: 12px;
    background: var(--pink); color: var(--bg);
    padding: 4px 10px; font-size: 10px;
    font-weight: 800; letter-spacing: 2px;
    border-radius: 2px;
}
.album h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px; letter-spacing: 0.5px;
    color: var(--white); margin-bottom: 4px;
    text-transform: uppercase;
}
.album-year {
    font-size: 11px; letter-spacing: 2px;
    color: var(--pink); margin-bottom: 10px;
    text-transform: uppercase; font-weight: 700;
}
.album-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Album cover gradients (verschillende per album voor variatie tot user echte covers heeft) */
.album-1 .album-cover { background: linear-gradient(135deg, #2c3e50, #4a4a4a); }
.album-2 .album-cover { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.album-3 .album-cover { background: linear-gradient(135deg, #ff61c5, #ff1b9f); }
.album-4 .album-cover { background: linear-gradient(135deg, #2d1b69, #ff1b9f); }
.album-5 .album-cover {
    background: linear-gradient(135deg, #ff1b9f, #ff61c5);
    box-shadow: 0 0 30px rgba(255,27,159,0.3) inset;
}
.album-5 .album-num { color: rgba(255,255,255,0.5); }
.album-6 .album-cover { background: linear-gradient(135deg, #ff1b9f, #c4097a, #1a1a1a); }
.album-7 .album-cover {
    background: linear-gradient(135deg, #c4097a 0%, #ff1b9f 35%, #d97706 75%, #78350f 100%);
    box-shadow: 0 0 30px rgba(255,27,159,0.3) inset;
}
.album-7 { border-color: var(--pink); }

.album-featured {
    border-color: var(--pink);
    box-shadow: 0 0 30px rgba(255,27,159,0.15);
}

/* Tracks */
.tracks { list-style: none; }
.track {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 20px; align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.2s;
}
.track:hover { padding-left: 12px; }
.track:hover .track-num { color: var(--pink); }
.track-num {
    font-family: 'Anton', sans-serif;
    font-size: 38px; color: var(--gray-2);
    transition: color 0.2s; line-height: 1;
}
.track-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 26px; letter-spacing: 0.5px;
    color: var(--white); text-transform: lowercase;
    margin-bottom: 4px;
}
.track-body p { color: var(--gray); font-size: 14px; }
.track-meta {
    font-size: 11px; letter-spacing: 1.5px;
    color: var(--gray-2); text-transform: uppercase;
}

/* Quote */
.quote-section {
    background:
        radial-gradient(ellipse at center, rgba(255,27,159,0.15), transparent 60%),
        var(--bg);
    padding: 140px 24px;
    text-align: center;
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.quote-mark {
    font-family: 'Permanent Marker', cursive;
    font-size: 200px; color: var(--pink);
    line-height: 0.5; height: 80px;
    text-shadow: 0 0 40px rgba(255,27,159,0.4);
}
.quote-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(24px, 4vw, 44px);
    line-height: 1.3; letter-spacing: -0.5px;
    max-width: 900px; margin: 0 auto 24px;
    text-transform: uppercase;
}
.quote-author {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px; color: var(--pink);
    letter-spacing: 2px;
}

/* Tour */
.tour-list { max-width: 800px; }
.tour-empty {
    background: var(--bg-2); border: 1px dashed var(--border);
    padding: 60px 30px; text-align: center; border-radius: 4px;
}
.tour-empty i {
    font-size: 48px; color: var(--pink);
    margin-bottom: 18px;
    display: inline-block;
    animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tour-empty h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px; margin-bottom: 8px;
}
.tour-empty p { color: var(--gray); }

.tour-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px; align-items: center;
    padding: 22px 26px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
    transition: all 0.2s;
}
.tour-row:hover { border-color: var(--pink); transform: translateX(4px); }
.tour-date {
    text-align: center;
    border-right: 1px solid var(--border); padding-right: 16px;
}
.tour-date .d {
    font-family: 'Anton', sans-serif;
    font-size: 38px; color: var(--pink); display: block; line-height: 1;
}
.tour-date .m {
    font-size: 11px; letter-spacing: 2px; color: var(--gray);
    text-transform: uppercase;
}
.tour-info h4 {
    font-family: 'Anton', sans-serif;
    font-size: 22px; text-transform: uppercase;
}
.tour-info p { color: var(--gray); font-size: 14px; }

/* Gallery */
.gallery {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-item {
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; cursor: pointer; position: relative;
    transition: all 0.3s;
}
.gallery-item:hover {
    border-color: var(--pink);
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(255,27,159,0.2);
}
.gallery-item span {
    font-family: 'Anton', sans-serif;
    font-size: 22px; letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    transition: color 0.2s;
}
.gallery-item:hover span { color: var(--pink); }
.gi-1 { background: linear-gradient(135deg, #ff1b9f, #2d1b69); }
.gi-2 { background: linear-gradient(135deg, #1a1a1a, #c4097a); }
.gi-3 { background: linear-gradient(135deg, #ff61c5, #ff1b9f); }
.gi-4 { background: linear-gradient(135deg, #c4097a, #1a1a1a); }
.gi-5 { background: linear-gradient(135deg, #ff1b9f, #ff61c5, #2d1b69); }
.gi-6 { background: linear-gradient(135deg, #2d1b69, #1a1a1a); }
.gi-7 { background: linear-gradient(135deg, #1a1a1a, #ff1b9f); }
.gi-8 { background: linear-gradient(135deg, #ff61c5, #c4097a); }

/* Connect / Socials */
.socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.social {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 24px;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.25s;
}
.social:hover {
    border-color: var(--pink); transform: translateX(4px);
    background: var(--bg-3);
}
.social i {
    font-size: 30px; color: var(--pink);
    width: 40px; text-align: center;
}
.social div strong {
    display: block; font-size: 15px; margin-bottom: 2px;
    text-transform: uppercase; letter-spacing: 1px;
}
.social div span { font-size: 12px; color: var(--gray); }

/* Footer */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 24px 40px;
    text-align: center;
    position: relative; z-index: 2;
}
.footer-brand {
    font-family: 'Anton', sans-serif;
    font-size: 32px; letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-text {
    color: var(--gray); font-size: 13px;
    max-width: 600px; margin: 0 auto 18px;
    line-height: 1.7;
}
.footer-text strong { color: var(--white); }
.footer-meta {
    color: var(--gray-2); font-size: 11px;
    letter-spacing: 1.5px; text-transform: uppercase;
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%; border: 0; cursor: pointer;
    background: var(--pink); color: var(--bg);
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(255,27,159,0.5);
    z-index: 50;
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* Reveal animations */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.reveal.in {
    opacity: 1; transform: translateY(0);
}

/* ═══ TOUR PAGE ═══ */
.tour-hero {
    min-height: 60vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255,27,159,0.20), transparent 60%),
        radial-gradient(ellipse 50% 40% at 75% 70%, rgba(196,9,122,0.22), transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #1a0820 60%, #0a0a0a 100%);
    padding: 140px 24px 80px;
}
.tour-hero .hero-title { font-size: clamp(48px, 11vw, 140px); }

.tour-events {
    display: flex; flex-direction: column; gap: 8px;
}

.tour-event {
    display: grid;
    grid-template-columns: 90px 56px 1fr auto;
    gap: 22px; align-items: center;
    padding: 22px 26px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.25s;
    position: relative; overflow: hidden;
}

/* NEXT UP — eerstvolgende show extra geprononceerd */
.tour-event.tour-event-next {
    grid-template-columns: 110px 72px 1fr auto;
    gap: 24px; padding: 32px 30px;
    margin-bottom: 24px;
    background:
        linear-gradient(135deg, rgba(255,27,159,0.08), transparent 60%),
        var(--bg-2);
    border: 2px solid var(--pink);
    box-shadow:
        0 0 60px rgba(255,27,159,0.18),
        0 12px 40px rgba(0,0,0,0.4);
    animation: nextGlow 4s ease-in-out infinite;
}
@keyframes nextGlow {
    0%,100% { box-shadow: 0 0 60px rgba(255,27,159,0.18), 0 12px 40px rgba(0,0,0,0.4); }
    50%     { box-shadow: 0 0 80px rgba(255,27,159,0.32), 0 12px 40px rgba(0,0,0,0.4); }
}
.tour-event.tour-event-next::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--pink);
    transform: scaleY(1);
}
.tour-event.tour-event-next::after {
    content: 'NEXT UP';
    position: absolute; top: 0; right: 0;
    background: var(--pink); color: var(--bg);
    font-size: 10px; letter-spacing: 3px; font-weight: 800;
    padding: 5px 14px;
    border-radius: 0 0 0 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255,27,159,0.5);
}
.tour-event.tour-event-next:hover {
    transform: translateX(4px) scale(1.005);
    border-color: var(--pink-2);
}
.tour-event.tour-event-next .te-day { font-size: 48px; line-height: 1; }
.tour-event.tour-event-next .te-mon { font-size: 13px; }
.tour-event.tour-event-next .te-dow { font-size: 11px; color: var(--pink); }
.tour-event.tour-event-next .flag { width: 72px; }
.tour-event.tour-event-next .te-venue { font-size: 26px; }
.tour-event.tour-event-next .te-loc { font-size: 14px; color: var(--white); }
@media (max-width: 700px) {
    .tour-event.tour-event-next { grid-template-columns: 80px 48px 1fr; padding: 22px 18px; }
    .tour-event.tour-event-next .te-day { font-size: 34px; }
    .tour-event.tour-event-next .flag { width: 48px; }
    .tour-event.tour-event-next .te-venue { font-size: 19px; }
}
.tour-event::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--pink);
    transform: scaleY(0); transform-origin: center;
    transition: transform 0.3s;
}
.tour-event:hover {
    border-color: var(--pink);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(255,27,159,0.15);
}
.tour-event:hover::before { transform: scaleY(1); }

.te-date {
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 16px;
    line-height: 1;
}
.te-dow {
    display: block;
    font-size: 10px; letter-spacing: 2px;
    color: var(--gray-2); text-transform: uppercase; font-weight: 700;
    margin-bottom: 4px;
}
.te-day {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 36px; line-height: 1; color: var(--pink);
    margin-bottom: 2px;
}
.te-mon {
    display: block;
    font-size: 11px; letter-spacing: 2.5px;
    color: var(--white); font-weight: 700;
}

.te-flag-wrap {
    display: flex; align-items: center; justify-content: center;
}
.flag {
    width: 56px; height: auto;
    border-radius: 4px;
    transition: transform 0.25s;
}
.tour-event:hover .flag {
    transform: scale(1.08) rotate(-2deg);
}

.te-info { min-width: 0; }
.te-venue {
    font-family: 'Anton', sans-serif;
    font-size: 22px; letter-spacing: 0.5px;
    color: var(--white); text-transform: uppercase;
    margin-bottom: 4px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.te-loc {
    font-size: 13px; color: var(--gray);
}

.te-action { flex-shrink: 0; }
.te-soon {
    font-size: 11px; letter-spacing: 2px;
    color: var(--gray-2); text-transform: uppercase;
    padding: 8px 14px; border: 1px dashed var(--border);
    border-radius: 4px;
}
.te-sold {
    font-size: 11px; letter-spacing: 3px; font-weight: 800;
    color: var(--red); text-transform: uppercase;
    padding: 8px 14px; border: 2px solid var(--red);
    border-radius: 4px; background: rgba(230,57,70,0.08);
}
.te-range {
    display: block; margin-top: 4px;
    font-size: 10px; letter-spacing: 1.5px;
    color: var(--pink); font-weight: 700;
}

.tour-foot {
    margin-top: 40px; text-align: center;
    color: var(--gray-2); font-size: 12px; letter-spacing: 0.5px;
}
.tour-foot code {
    background: var(--bg-3); color: var(--pink);
    padding: 2px 8px; border-radius: 3px;
    font-family: 'Menlo','Consolas',monospace; font-size: 11px;
}
.section-sub a { color: var(--pink); border-bottom: 1px dotted var(--pink); }
.section-sub a:hover { color: var(--pink-2); }

.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

@media (max-width: 700px) {
    .tour-event {
        grid-template-columns: 70px 40px 1fr;
        gap: 14px; padding: 16px 18px;
    }
    .te-day { font-size: 28px; }
    .flag { width: 40px; }
    .te-venue { font-size: 17px; white-space: normal; }
    .te-action {
        grid-column: 1 / -1;
        text-align: center; padding-top: 10px;
        border-top: 1px solid var(--border);
        margin-top: 6px;
    }
    .tour-event:hover { transform: none; }
}

/* ═══ VENUE INFO MODAL ═══ */
.venue-modal-bg {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none; align-items: center; justify-content: center;
    padding: 24px; overflow-y: auto;
    opacity: 0; transition: opacity 0.3s;
}
.venue-modal-bg.active { display: flex; opacity: 1; }

.venue-modal {
    position: relative;
    width: 100%; max-width: 720px; max-height: 90vh;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 24px 80px rgba(255,27,159,0.2), 0 8px 32px rgba(0,0,0,0.6);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.venue-modal-bg.active .venue-modal { transform: translateY(0) scale(1); }

.venue-close {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 16px;
    cursor: pointer; transition: all 0.2s;
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
}
.venue-close:hover {
    background: var(--pink); border-color: var(--pink);
    transform: rotate(90deg);
}

/* HERO — sticky top, scrollt niet mee */
.vm-hero {
    position: relative;
    flex-shrink: 0;
    min-height: 220px;
    padding: 32px 28px 24px;
    background:
        radial-gradient(ellipse at top right, rgba(255,27,159,0.4), transparent 60%),
        linear-gradient(135deg, #1a0820 0%, #0a0a0a 100%);
    background-size: cover;
    background-position: center 28%;
    color: var(--white);
    border-bottom: 1px solid var(--border);
}
.vm-hero.vm-has-image {
    min-height: 320px;          /* meer ruimte voor foto op desktop */
}
.vm-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(255,27,159,0.3), transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.85) 100%);
    pointer-events: none;
}
.vm-hero-content { position: relative; z-index: 2; }

.vm-flag-line {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray);
}
.vm-flag svg { vertical-align: middle; }
.vm-loc { color: var(--gray); }

.vm-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 0.95; letter-spacing: -0.5px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.vm-date {
    font-size: 14px; color: var(--pink-2);
    font-weight: 600; letter-spacing: 0.5px;
}
.vm-sold-tag {
    display: inline-block;
    margin-left: 10px; padding: 3px 10px;
    background: var(--red); color: var(--white);
    font-size: 10px; font-weight: 800; letter-spacing: 2px;
    border-radius: 3px; vertical-align: middle;
}

/* BODY — alleen dit deel scrollt, scrollbar ZIT NIET naast de hero */
.vm-body {
    flex: 1; min-height: 0;
    overflow-y: auto;
    padding: 28px;
}
.vm-body::-webkit-scrollbar { width: 8px; }
.vm-body::-webkit-scrollbar-track { background: var(--bg-3); }
.vm-body::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }
.vm-body::-webkit-scrollbar-thumb:hover { background: var(--pink-2); }

/* COUNTDOWN */
.vm-countdown {
    background: linear-gradient(135deg, var(--bg-3), #1a0820);
    border: 1px solid var(--pink);
    border-radius: 12px;
    padding: 22px 18px;
    margin-bottom: 24px;
    box-shadow: 0 0 40px rgba(255,27,159,0.12) inset;
}
.vm-cd-label {
    font-size: 11px; letter-spacing: 3px;
    color: var(--pink); font-weight: 700;
    text-align: center; margin-bottom: 14px;
    text-transform: uppercase;
}
.vm-cd-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 4px;
}
.vm-cd-cell {
    flex: 1; max-width: 100px;
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative; overflow: hidden;
}
.vm-cd-cell::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    animation: vmShine 3s linear infinite;
}
@keyframes vmShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.vm-cd-num {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1; color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0 0 16px rgba(255,27,159,0.4);
    font-variant-numeric: tabular-nums;
}
.vm-cd-lbl {
    display: block;
    font-size: 9px; letter-spacing: 2px;
    color: var(--gray-2);
    margin-top: 6px; text-transform: uppercase;
    font-weight: 700;
}
.vm-cd-sep {
    font-family: 'Anton', sans-serif;
    font-size: clamp(20px, 5vw, 36px);
    color: var(--pink);
    line-height: 1;
    animation: vmBlink 1s steps(2) infinite;
}
@keyframes vmBlink { 50% { opacity: 0.3; } }

/* FACTS */
.vm-facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px; margin-bottom: 24px;
}
.vm-fact {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s;
}
.vm-fact:hover { border-color: var(--pink); }
.vm-fact > i {
    color: var(--pink);
    font-size: 16px; width: 20px; text-align: center;
}
.vm-fact strong {
    display: block;
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 18px; line-height: 1;
}
.vm-fact span {
    display: block;
    font-size: 10.5px; letter-spacing: 1.5px;
    color: var(--gray-2); margin-top: 4px;
    text-transform: uppercase; font-weight: 700;
}

/* DESC */
.vm-h3 {
    font-family: 'Anton', sans-serif;
    font-size: 16px; letter-spacing: 1px;
    color: var(--pink); text-transform: uppercase;
    margin-bottom: 12px;
}
.vm-h3 i { margin-right: 6px; }
.vm-desc-wrap { margin-bottom: 24px; }
.vm-desc {
    color: var(--gray); font-size: 14px; line-height: 1.65;
    margin-bottom: 12px;
}
.vm-wiki {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--pink);
    border-bottom: 1px dotted var(--pink);
    padding-bottom: 1px;
}
.vm-wiki:hover { color: var(--pink-2); }

/* MAP */
.vm-map-wrap { margin-bottom: 24px; }
.vm-map {
    position: relative;
    border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    background: var(--bg-3);
}
.vm-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(1.05);
}
.vm-map-link {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 11px; letter-spacing: 1px;
    padding: 6px 10px; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 6px;
    text-transform: uppercase; font-weight: 700;
}
.vm-map-link:hover { color: var(--pink); border-color: var(--pink); }

/* LOADING */
.vm-loading {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 40px 20px;
    color: var(--gray);
}
.vm-spinner {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--pink);
    animation: vmSpin 0.8s linear infinite;
}
@keyframes vmSpin { to { transform: rotate(360deg); } }

/* ACTIONS */
.vm-actions {
    display: flex; gap: 10px; justify-content: flex-end;
    padding-top: 18px; border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.vm-actions .btn { flex: 1; justify-content: center; min-width: 120px; }

/* Responsive */
@media (max-width: 600px) {
    .venue-modal-bg { padding: 0; }
    .venue-modal {
        max-width: 100%; max-height: 100vh;
        border-radius: 0; min-height: 100vh;
    }
    .vm-hero { padding: 24px 20px 18px; }
    .vm-body { padding: 20px; }
    .vm-cd-cell { padding: 10px 4px; }
    .vm-cd-sep { font-size: 22px; }
    .vm-facts { grid-template-columns: 1fr 1fr; }
}

/* Tour-event te-action: laat info-knop netjes naast tickets ─── */
.te-info-btn {
    margin-right: 4px;
}
@media (max-width: 700px) {
    .te-action {
        display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    }
    .te-action .btn { flex: 1; min-width: 100px; }
}

/* Easter egg: Konami code activates glitch */
.glitch-mode .hero-title,
.glitch-mode .section-title {
    animation: glitch 0.3s infinite;
}
@keyframes glitch {
    0%, 100% { transform: translate(0); text-shadow: 0 0 20px var(--pink); }
    20% { transform: translate(-2px, 2px); text-shadow: 2px 0 var(--pink), -2px 0 var(--neon); }
    40% { transform: translate(2px, -2px); text-shadow: -2px 0 var(--neon), 2px 0 var(--pink); }
    60% { transform: translate(-2px, -2px); text-shadow: 2px 2px var(--pink); }
    80% { transform: translate(2px, 2px); text-shadow: -2px -2px var(--neon); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .nav { padding: 14px 18px; }
    .nav-links { display: none; }
    .burger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .section { padding: 80px 20px; }
    .scroll-prompt { display: none; }
    .hero { padding: 100px 20px 80px; }
}

@media (max-width: 640px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .track { grid-template-columns: 40px 1fr; }
    .track-meta { grid-column: 1 / -1; padding-left: 60px; font-size: 10px; }
    .track-num { font-size: 28px; }
    .track-body h3 { font-size: 22px; }
    .quote-mark { font-size: 140px; height: 60px; }
    .hero-sub { letter-spacing: 4px; }
    .hero-marquee { font-size: 14px; }
    .footer { padding: 40px 18px 30px; }
}
