/* ==========================================================
   MANNENWEEKEND ’26 — neon nacht-arcade
   ========================================================== */

:root {
    --bg: #0a0a14;
    --bg2: #16112b;
    --card: rgba(255, 255, 255, 0.045);
    --border: rgba(255, 255, 255, 0.1);
    --pink: #ff2d78;
    --cyan: #7ee7ff;
    --gold: #ffd166;
    --green: #06d6a0;
    --text: #eef0ff;
    --muted: #9aa3c7;
    --display: 'Bungee', cursive;
    --body: 'Space Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--text);
    background:
        radial-gradient(90% 60% at 80% -10%, rgba(131, 56, 236, 0.25), transparent 60%),
        radial-gradient(70% 50% at 10% 10%, rgba(255, 45, 120, 0.14), transparent 60%),
        linear-gradient(180deg, var(--bg2) 0%, var(--bg) 40%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* ---------- start overlay ---------- */
.start-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(120% 100% at 50% 0%, #1c1440 0%, #0a0a14 70%);
    cursor: pointer; transition: opacity 0.5s, visibility 0.5s;
}
.start-overlay.hidden { opacity: 0; visibility: hidden; }

.trumpeter { position: relative; width: 168px; height: 168px; animation: bob 1.9s ease-in-out infinite; }
.trumpeter canvas { width: 168px; height: 168px; border-radius: 50%; box-shadow: 0 14px 44px rgba(0,0,0,.55), 0 0 34px rgba(255,209,102,.25); }
.trumpet-icon {
    position: absolute; right: -26px; bottom: 2px; font-size: 62px;
    transform: rotate(12deg); filter: drop-shadow(0 6px 10px rgba(0,0,0,.5));
    transition: transform .2s;
}
.start-overlay.playing .trumpet-icon { animation: toot .42s ease-in-out infinite; }
@keyframes toot {
    0%,100% { transform: rotate(12deg) scale(1) }
    50% { transform: rotate(7deg) scale(1.14) }
}
.ceremonie { margin-top: 10px; }
.anthem-btn {
    margin-top: 26px; font-family: var(--display); font-size: clamp(16px, 4.6vw, 22px);
    color: #160b1e; cursor: pointer; border: none; border-radius: 18px; padding: 18px 38px;
    background: linear-gradient(180deg, #ffe259, #ffa751);
    box-shadow: 0 6px 0 #a8531f, 0 16px 44px rgba(255, 167, 81, 0.35);
    transition: transform .1s, box-shadow .1s, opacity .3s;
}
.anthem-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #a8531f; }
.anthem-btn:disabled { opacity: 0; pointer-events: none; }
.skip-link {
    margin-top: 18px; background: none; border: none; cursor: pointer;
    color: var(--muted); font-family: var(--body); font-size: 13px; letter-spacing: .08em;
    text-decoration: underline;
}
.float-note {
    position: absolute; top: 34%; color: var(--gold); pointer-events: none;
    text-shadow: 0 0 14px rgba(255,209,102,.7);
    animation: noteUp 2.4s ease-out forwards;
}
@keyframes noteUp {
    from { transform: translateY(0) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    to { transform: translateY(-42vh) translateX(6vw) rotate(28deg); opacity: 0; }
}
.start-overlay h2 {
    font-family: var(--display); font-size: clamp(28px, 8vw, 56px); margin-top: 18px;
    background: linear-gradient(180deg, #ffe259, #ffa751 50%, #ff2d78);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,.5));
}
.start-overlay h2 span { font-size: 0.55em; vertical-align: super; }
.start-overlay p { margin-top: 12px; color: var(--muted); letter-spacing: 0.25em; text-transform: uppercase; font-size: 12px; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }

/* ---------- nav ---------- */
.topnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px clamp(16px, 4vw, 40px);
    background: rgba(10, 10, 20, 0.65);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.brand { font-family: var(--display); font-size: 18px; color: var(--gold); text-decoration: none; }
.navlinks { display: flex; gap: clamp(12px, 3vw, 28px); }
.navlinks a {
    color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px;
    letter-spacing: 0.06em; transition: color .15s;
}
.navlinks a:hover { color: var(--cyan); }
.navlinks a { position: relative; }
.nav-dot {
    position: absolute; top: -3px; right: -9px; width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink); box-shadow: 0 0 8px rgba(255, 45, 120, 0.8); display: none;
}
.nav-dot.on { display: block; }
.chat-open { float: right; color: var(--cyan); text-decoration: none; font-family: var(--body); font-size: 12px; font-weight: 700; }
.chat-open:hover { text-decoration: underline; }

/* ---------- hero ---------- */
.hero {
    position: relative; text-align: center;
    padding: calc(70px + env(safe-area-inset-top)) 20px 40px;
    max-width: 900px; margin: 0 auto;
}
.hero-glow {
    position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
    width: min(600px, 90vw); height: 300px; pointer-events: none;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 45, 120, 0.22), transparent 70%);
    filter: blur(10px);
}
.hero-kicker {
    color: var(--cyan); font-size: clamp(11px, 2.6vw, 14px); font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 14px;
    text-shadow: 0 0 14px rgba(126, 231, 255, 0.6);
}
.hero h1 {
    font-family: var(--display); line-height: 1.02;
    font-size: clamp(30px, 7.5vw, 72px);
    background: linear-gradient(180deg, #fff 20%, #b9c3ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,.45));
}
.answer {
    font-family: var(--display);
    font-size: clamp(64px, 18vw, 150px); line-height: 1;
    margin: 18px 0 6px; color: var(--pink);
    text-shadow: 0 6px 0 rgba(0,0,0,.5), 0 0 40px rgba(255, 45, 120, 0.55);
    animation: answerPulse 2.2s ease-in-out infinite;
}
.answer.ja {
    color: var(--green);
    text-shadow: 0 6px 0 rgba(0,0,0,.5), 0 0 50px rgba(6, 214, 160, 0.65);
    font-size: clamp(72px, 20vw, 170px);
}
@keyframes answerPulse { 0%,100% { transform: scale(1) } 50% { transform: scale(1.035) } }
.subtitle { color: var(--muted); font-size: clamp(14px, 3.4vw, 17px); margin-bottom: 28px; }

/* countdown */
.countdown {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 2vw, 16px); max-width: 620px; margin: 0 auto 26px;
}
.time-unit {
    position: relative; padding: clamp(12px, 3vw, 22px) 4px;
    background: var(--card); border: 1px solid var(--border); border-radius: 18px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 10px 30px rgba(0,0,0,.35);
    transition: transform .15s, border-color .15s;
}
.time-unit:hover { transform: translateY(-3px); border-color: rgba(255, 209, 102, 0.5); }
.time-unit:hover::after {
    content: attr(data-secret);
    position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
    background: #1c1533; color: var(--gold); border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 8px; font-size: 11px; white-space: nowrap; z-index: 5;
}
.time-unit.wide { grid-column: 1 / -1; }
.time-number {
    font-family: var(--display); display: block;
    font-size: clamp(26px, 7vw, 52px); color: var(--gold);
    text-shadow: 0 0 22px rgba(255, 209, 102, 0.45);
    font-variant-numeric: tabular-nums;
}
.time-label { margin-top: 4px; font-size: clamp(9px, 2vw, 12px); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* progressbar */
.year-progress { max-width: 620px; margin: 0 auto 22px; text-align: left; }
.year-progress-label {
    display: flex; justify-content: space-between; font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.year-progress-bar {
    position: relative; height: 14px; border-radius: 8px;
    background: rgba(255,255,255,.07); border: 1px solid var(--border); overflow: visible;
}
#progressFill {
    height: 100%; width: 0; border-radius: 8px;
    background: linear-gradient(90deg, var(--cyan), var(--gold), var(--pink));
    box-shadow: 0 0 18px rgba(255, 209, 102, 0.35);
    transition: width 1s ease;
}
.progress-flag { position: absolute; right: -6px; top: -9px; font-size: 18px; }

.sleepjes { color: var(--muted); font-size: 12.5px; letter-spacing: .04em; margin: -14px 0 18px; min-height: 1.2em; }

.message { font-size: clamp(15px, 3.6vw, 19px); color: var(--cyan); font-weight: 600; min-height: 1.5em; }

.beer-container { margin-top: 18px; display: flex; justify-content: center; gap: 14px; }
.beer { font-size: 34px; cursor: pointer; display: inline-block; transition: transform .3s; }
.beer:hover { transform: scale(1.25) rotate(-8deg); }

/* ---------- ticker ---------- */
.ticker {
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03); padding: 10px 0; margin: 10px 0 0;
}
.ticker-track { display: inline-block; animation: tickerScroll 60s linear infinite; }
.ticker-track span { color: var(--muted); font-size: 14px; font-weight: 500; padding: 0 18px; }
.ticker-track span.dot { padding: 0; }
@keyframes tickerScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- secties ---------- */
.section { max-width: 1080px; margin: 0 auto; padding: clamp(44px, 8vw, 90px) clamp(16px, 4vw, 32px) 0; }
.section-head { text-align: center; margin-bottom: clamp(24px, 5vw, 44px); }
.section-head h2 {
    font-family: var(--display); font-size: clamp(24px, 6vw, 44px);
    color: var(--text); filter: drop-shadow(0 3px 0 rgba(0,0,0,.4));
}
.section-sub { color: var(--muted); margin-top: 10px; font-size: 14.5px; max-width: 560px; margin-inline: auto; line-height: 1.6; }
.chip {
    display: inline-block; background: rgba(255, 209, 102, 0.14); color: var(--gold);
    border: 1px solid rgba(255, 209, 102, 0.4); font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.14em; border-radius: 6px; padding: 3px 8px; margin-right: 8px; vertical-align: 1px;
}

/* ---------- race sectie ---------- */
.race-card {
    position: relative; border-radius: 28px; overflow: hidden;
    border: 1px solid rgba(255, 209, 102, 0.35);
    background:
        linear-gradient(100deg, rgba(10, 8, 24, 0.93) 0%, rgba(10, 8, 24, 0.72) 55%, rgba(10, 8, 24, 0.35) 100%),
        url('images/photo_5776371022302399083_y.jpg') center 30% / cover no-repeat;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 45, 120, 0.12);
}
.race-card::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 14px;
    background: repeating-conic-gradient(#fff 0% 25%, #111 0% 50%) 0 0 / 18px 18px; opacity: .9;
}
.race-card-inner { padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 56px); max-width: 560px; }
.race-eyebrow { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; margin-bottom: 12px; }
.race-title {
    font-family: var(--display); line-height: .95;
    font-size: clamp(34px, 7.5vw, 58px);
    background: linear-gradient(180deg, #ffe259 0%, #ffa751 45%, #ff2d78 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 4px 0 rgba(0,0,0,.55));
}
.race-desc { color: #cfd4f2; margin: 16px 0 24px; line-height: 1.65; font-size: 15.5px; max-width: 460px; }
.race-desc strong { color: var(--cyan); }
.race-btn {
    display: inline-block; text-decoration: none;
    font-family: var(--display); font-size: clamp(16px, 4vw, 21px); color: #160b1e;
    background: linear-gradient(180deg, #ffe259, #ffa751);
    padding: 16px 34px; border-radius: 16px;
    box-shadow: 0 6px 0 #a8531f, 0 14px 40px rgba(255, 167, 81, 0.35);
    transition: transform .1s, box-shadow .1s;
}
.race-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #a8531f; }
.race-record { margin-top: 16px; color: var(--gold); font-size: 13px; font-weight: 600; }

/* ---------- arcade ---------- */
.arcade-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.arcade-card {
    display: block; text-decoration: none; color: var(--text);
    background: var(--card); border: 1px solid var(--border); border-radius: 22px;
    padding: 26px 22px 22px; text-align: center;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.arcade-card:hover {
    transform: translateY(-5px); border-color: rgba(255, 209, 102, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.arcade-emoji { font-size: 52px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.5)); }
.arcade-card h3 { font-family: var(--display); font-size: 17px; margin: 12px 0 8px; color: var(--gold); }
.arcade-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.arcade-status {
    display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; color: var(--cyan);
    border: 1px solid rgba(126, 231, 255, 0.35); border-radius: 8px; padding: 4px 10px;
}

/* ---------- dagplanning ---------- */
.planning-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.day-card {
    position: relative;
    background: var(--card); border: 1px solid var(--border); border-radius: 22px;
    padding: 20px 20px 18px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.day-card:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 231, 255, 0.45);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.day-card.highlight {
    border-color: rgba(255, 209, 102, 0.55);
    background: linear-gradient(160deg, rgba(255, 209, 102, 0.08), rgba(255, 45, 120, 0.06));
}
.day-card.today { border-color: var(--green); box-shadow: 0 0 30px rgba(6, 214, 160, 0.25); }
.day-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.day-num { font-size: 34px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.day-date { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--cyan); text-transform: uppercase; }
.day-title { font-family: var(--display); font-size: 17px; color: var(--text); margin-top: 2px; }
.day-index {
    margin-left: auto; align-self: flex-start;
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--muted);
    border: 1px solid var(--border); border-radius: 6px; padding: 3px 7px;
}
.day-items { list-style: none; }
.day-items li {
    padding: 7px 0 7px 18px; position: relative;
    color: #c6cbe8; font-size: 14px; line-height: 1.45;
    border-bottom: 1px dashed rgba(255,255,255,.07);
}
.day-items li:last-child { border-bottom: none; }
.day-items li::before { content: '›'; position: absolute; left: 2px; color: var(--pink); font-weight: 700; }
.day-cta {
    display: inline-block; margin-top: 10px; color: var(--gold); text-decoration: none;
    font-weight: 700; font-size: 13.5px;
}
.day-cta:hover { text-decoration: underline; }
.today-badge {
    position: absolute; top: -10px; right: 14px;
    background: var(--green); color: #06281f;
    font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
    padding: 4px 10px; border-radius: 8px; box-shadow: 0 6px 16px rgba(6, 214, 160, 0.4);
}

/* ---------- clubhuis ---------- */
.club-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.club-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 22px;
    padding: 20px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.club-card h3 { font-family: var(--display); font-size: 14px; color: var(--gold); margin-bottom: 14px; letter-spacing: .04em; }
.club-wide { grid-column: 1 / -1; }
.club-empty { color: var(--muted); font-size: 13px; font-style: italic; list-style: none; }
.club-hint { color: var(--muted); font-size: 12.5px; margin-top: 12px; line-height: 1.5; }

#identityForm input, #chatForm input {
    width: 100%; background: rgba(255,255,255,.07); border: 1.5px solid var(--border);
    border-radius: 12px; padding: 11px 14px; color: var(--text);
    font-family: var(--body); font-size: 14px; outline: none;
}
#identityForm input:focus, #chatForm input:focus { border-color: rgba(126,231,255,.5); }
.avatar-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.avatar-btn {
    width: 42px; height: 42px; font-size: 21px; cursor: pointer;
    background: rgba(255,255,255,.06); border: 2px solid var(--border); border-radius: 12px;
    transition: transform .1s, border-color .1s;
}
.avatar-btn:active { transform: scale(.9); }
.avatar-btn.sel { border-color: var(--gold); background: rgba(255,209,102,.15); }

.who-list { list-style: none; }
.who-list li { padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.07); color: #c6cbe8; font-size: 14px; }
.who-list li:last-child { border-bottom: none; }
.who-av { margin-right: 6px; }

.boards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.board h4 { font-size: 12px; letter-spacing: .12em; color: var(--cyan); margin-bottom: 8px; font-weight: 700; }
.board ol { list-style: none; }
.board li { display: flex; align-items: center; gap: 6px; padding: 5px 0; font-size: 13.5px; color: #c6cbe8; }
.board .pos { width: 26px; text-align: center; }
.board .pts { margin-left: auto; font-family: var(--display); font-size: 12px; color: var(--gold); }

.chat-box { max-height: 240px; overflow-y: auto; margin-bottom: 12px; }
.chat-box p { padding: 6px 0; font-size: 14px; color: #c6cbe8; border-bottom: 1px dashed rgba(255,255,255,.06); }
.chat-box p b { color: var(--text); }
#chatForm { display: flex; gap: 8px; }
#chatForm input { flex: 1; }

/* ---------- reglement ---------- */
.rules {
    max-width: 640px; margin: 0 auto; list-style: none;
    background: var(--card); border: 1px solid var(--border); border-radius: 22px;
    padding: 10px 22px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.rules li {
    padding: 13px 0 13px 64px; position: relative;
    color: #c6cbe8; font-size: 14.5px; line-height: 1.55;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.rules li:last-child { border-bottom: none; }
.rules .rule-nr {
    position: absolute; left: 0; top: 12px;
    font-family: var(--display); font-size: 11px; color: var(--gold);
    border: 1px solid rgba(255, 209, 102, 0.4); border-radius: 7px; padding: 3px 7px;
    background: rgba(255, 209, 102, 0.08);
}
.rules li:last-child { color: var(--gold); font-style: italic; }

/* ---------- bier o'clock ---------- */
.beer-time-box {
    max-width: 560px; margin: 0 auto; text-align: center;
    background: var(--card); border: 1px solid var(--border); border-radius: 26px;
    padding: clamp(26px, 5vw, 40px);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.beer-time-box h3 { font-family: var(--display); font-size: clamp(17px, 4.4vw, 24px); color: var(--text); }
.beer-time-answer {
    font-family: var(--display); font-size: clamp(48px, 13vw, 92px); line-height: 1.1;
    color: var(--pink); text-shadow: 0 5px 0 rgba(0,0,0,.5), 0 0 34px rgba(255, 45, 120, 0.5);
    margin: 8px 0 2px;
}
.beer-time-answer.ja { color: var(--green); text-shadow: 0 5px 0 rgba(0,0,0,.5), 0 0 40px rgba(6, 214, 160, 0.6); }
.beer-time-subtitle { color: var(--muted); font-size: 14px; }

/* ---------- wall of shame ---------- */
.shame-controls { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.ctrl-btn {
    font-family: var(--body); font-weight: 700; font-size: 13.5px; cursor: pointer;
    color: var(--text); background: rgba(255,255,255,.08);
    border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 18px;
    transition: background .15s, border-color .15s, transform .1s;
}
.ctrl-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(126,231,255,.5); }
.ctrl-btn:active { transform: scale(.96); }
.ctrl-btn.gold { border-color: rgba(255, 209, 102, 0.5); color: var(--gold); background: rgba(255, 209, 102, 0.1); }

.photo-wall {
    display: grid; gap: clamp(12px, 2.5vw, 22px);
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 44vw), 1fr));
}
.photo-card {
    position: relative; cursor: pointer;
    background: #f5efe0; border-radius: 6px; padding: 8px 8px 6px;
    transform: rotate(var(--rotation, 0deg));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transition: transform .18s, box-shadow .18s;
    animation: photoIn .5s ease backwards;
}
.photo-card:hover {
    transform: rotate(0deg) scale(1.05); z-index: 3;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}
@keyframes photoIn { from { opacity: 0; transform: translateY(20px) rotate(var(--rotation)) } }
.photo-tape {
    position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(-3deg);
    width: 74px; height: 20px; background: rgba(255, 224, 130, 0.75);
    box-shadow: 0 2px 5px rgba(0,0,0,.2); border-radius: 2px;
}
.photo-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 3px; display: block; }
.photo-caption {
    padding: 7px 2px 3px; text-align: center;
    color: #3d3425; font-size: 12px; font-weight: 600; font-style: italic;
}

/* spotlight */
.spotlight-overlay {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5, 4, 12, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; cursor: pointer;
}
.spotlight-overlay.active { opacity: 1; visibility: visible; }
.spotlight-content { text-align: center; max-width: min(92vw, 560px); }
.spotlight-label { font-family: var(--display); color: var(--gold); font-size: clamp(15px, 4vw, 24px); margin-bottom: 14px; min-height: 1em; }
.spotlight-content img {
    max-width: 100%; max-height: 70vh; border-radius: 14px;
    border: 4px solid #f5efe0; box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.spotlight-caption { margin-top: 14px; color: var(--muted); font-style: italic; font-size: 15px; }

/* ---------- footer ---------- */
.footer { text-align: center; padding: clamp(50px, 9vw, 90px) 20px 46px; color: var(--muted); font-size: 13.5px; }
.footer p { margin-top: 16px; }
.footer-hint { opacity: 0.45; font-size: 11.5px; letter-spacing: 0.12em; }
.fruitschaal-btn {
    font-family: var(--body); font-weight: 700; font-size: 14px; cursor: pointer;
    color: #f0c8ff; background: rgba(131, 56, 236, 0.16);
    border: 1.5px solid rgba(131, 56, 236, 0.5); border-radius: 14px; padding: 13px 22px;
    transition: background .15s, transform .1s;
}
.fruitschaal-btn:hover { background: rgba(131, 56, 236, 0.3); }
.fruitschaal-btn:active { transform: scale(.96); }

/* ---------- audio knop ---------- */
.audio-btn {
    position: fixed; bottom: 18px; right: 18px; z-index: 200;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(20, 16, 40, 0.8); border: 1.5px solid var(--border);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-size: 22px; cursor: pointer; transition: transform .15s, border-color .15s;
}
.audio-btn:hover { transform: scale(1.1); border-color: var(--gold); }
.audio-btn.playing { animation: audioPulse 2s ease-in-out infinite; }
@keyframes audioPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.4) }
    50% { box-shadow: 0 0 0 12px rgba(255, 209, 102, 0) }
}

/* ---------- confetti & party ---------- */
.confetti {
    position: fixed; top: -12px; width: 10px; height: 10px; z-index: 900;
    animation: confettiFall linear forwards; border-radius: 2px; pointer-events: none;
}
@keyframes confettiFall {
    to { transform: translateY(105vh) rotate(720deg); opacity: 0.6; }
}
.party-mode { animation: partyShake 0.5s ease infinite; }
@keyframes partyShake {
    0%,100% { filter: hue-rotate(0deg) } 50% { filter: hue-rotate(40deg) }
}

/* ==========================================================
   VAPE SHOOTER (easter egg)
   ========================================================== */
.game-overlay {
    position: fixed; inset: 0; z-index: 600;
    background: radial-gradient(120% 100% at 50% 0%, #251545 0%, #0a0a14 75%);
    display: none; cursor: none;
}
.game-overlay.active { display: block; }
.game-cursor { position: fixed; pointer-events: none; z-index: 650; display: none; transform: translate(-20%, -20%); }
.game-cursor img { width: 80px; height: auto; filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5)); }
.game-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 620;
    display: flex; justify-content: center; align-items: center; gap: 26px;
    padding: 16px; cursor: none;
}
.game-score, .game-timer { font-family: var(--display); font-size: 20px; color: var(--gold); text-shadow: 0 0 16px rgba(255, 209, 102, 0.5); }
.game-close-btn {
    position: absolute; right: 16px; top: 12px;
    background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--border);
    width: 40px; height: 40px; border-radius: 50%; font-size: 17px; cursor: pointer;
}
.game-area { position: absolute; inset: 60px 0 0 0; cursor: none; }
.game-vape {
    position: absolute; width: 60px; height: 80px;
    background: url('vape.png') center / contain no-repeat;
    cursor: none; animation: vapeFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 79, 212, 0.8));
}
@keyframes vapeFloat { 0%,100% { margin-top: 0 } 50% { margin-top: -12px } }
.game-vape.exploding { animation: vapeExplode 0.2s ease forwards; }
@keyframes vapeExplode { to { transform: scale(2.2) rotate(45deg); opacity: 0; filter: brightness(3); } }
.game-vape.fading { animation: vapeFade 0.3s ease forwards; }
@keyframes vapeFade { to { opacity: 0; transform: translateY(16px) } }
.game-smoke {
    position: absolute; width: 22px; height: 22px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.85), rgba(255,255,255,0));
    animation: smokePoof 0.5s ease-out forwards; pointer-events: none;
}
@keyframes smokePoof { to { transform: translate(var(--dx), var(--dy)) scale(2); opacity: 0; } }
.game-over-screen {
    position: absolute; inset: 0; z-index: 640;
    display: none; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    background: rgba(5, 4, 12, 0.85); cursor: auto;
}
.game-over-screen.active { display: flex; }
.game-over-screen h2 { font-family: var(--display); font-size: clamp(30px, 8vw, 54px); color: var(--pink); text-shadow: 0 0 30px rgba(255,45,120,.5); }
.game-over-screen p { color: var(--muted); font-size: 16px; }
.game-over-screen button {
    font-family: var(--display); font-size: 15px; cursor: pointer;
    color: #160b1e; background: linear-gradient(180deg, #ffe259, #ffa751);
    border: none; border-radius: 12px; padding: 12px 26px; margin-top: 6px;
    box-shadow: 0 4px 0 #a8531f;
}
.game-over-screen button:active { transform: translateY(3px); box-shadow: 0 1px 0 #a8531f; }

/* ---------- mobiel ---------- */
@media (max-width: 640px) {
    .navlinks a { font-size: 13px; }
    .photo-wall { grid-template-columns: repeat(2, 1fr); }
    .race-card-inner { max-width: 100%; }
    .audio-btn { bottom: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
