/* ==========================================================
   SimIdiots — The Greatest A.I. Fail Show On Earth
   Aesthetic: dopamine neon burst landing
   Palette : #fff700 #ff0090 #00ccff #1a0a2e #ffffff
   Fonts   : Righteous (display) / Poppins (body) / Bungee Shade (accent)
   ========================================================== */

:root {
    --neon-yellow: #fff700;
    --hot-magenta: #ff0090;
    --electric-blue: #00ccff;
    --dark-stage: #1a0a2e;
    --dark-stage-2: #2a0f4a;
    --spotlight: #ffffff;

    --font-display: "Righteous", "Poppins", system-ui, sans-serif;
    --font-body: "Poppins", system-ui, -apple-system, sans-serif;
    --font-accent: "Bungee Shade", "Righteous", system-ui, sans-serif;

    --section-pad: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4rem);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-stage);
    background-image:
        radial-gradient(ellipse at 15% 0%, rgba(255, 0, 144, 0.15), transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(0, 204, 255, 0.12), transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 247, 0, 0.05), transparent 70%);
    color: var(--spotlight);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ===== Confetti layer ===== */
.confetti-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 14px;
    border-radius: 2px;
    will-change: transform, opacity;
    animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
    0% {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(var(--cx, 0), 110vh, 0) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Top Nav ===== */
.topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 4vw, 3rem);
    background: rgba(26, 10, 46, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 247, 0, 0.25);
}
.topnav-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow), 0 0 18px var(--hot-magenta);
}
.topnav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.topnav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--spotlight);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.topnav-links a:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}
.topnav-cta {
    background: var(--hot-magenta);
    color: var(--spotlight);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(255, 0, 144, 0.6), 0 0 24px rgba(255, 0, 144, 0.3);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.topnav-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 18px rgba(255, 0, 144, 0.85), 0 0 36px rgba(255, 0, 144, 0.5);
}
@media (max-width: 720px) {
    .topnav-links { display: none; }
}

/* ===== Hero / Marquee ===== */
.hero {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
    position: relative;
}

.marquee-frame {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    border: 6px solid var(--neon-yellow);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 247, 0, 0.18), transparent 60%),
        linear-gradient(180deg, var(--dark-stage-2), var(--dark-stage));
    box-shadow:
        0 0 0 3px var(--hot-magenta),
        0 0 25px rgba(255, 247, 0, 0.5),
        0 0 60px rgba(255, 0, 144, 0.35);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.marquee-lights {
    position: absolute;
    inset: -14px;
    pointer-events: none;
}
.marquee-lights .bulb {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--neon-yellow);
    box-shadow: 0 0 8px var(--neon-yellow), 0 0 14px var(--neon-yellow);
    animation: bulb-blink 1.2s ease-in-out infinite;
}
.marquee-lights .bulb.alt {
    background: var(--hot-magenta);
    box-shadow: 0 0 8px var(--hot-magenta), 0 0 14px var(--hot-magenta);
}
@keyframes bulb-blink {
    0%, 49% { opacity: 1; transform: scale(1); }
    50%, 100% { opacity: 0.18; transform: scale(0.8); }
}

.hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-display);
    color: var(--electric-blue);
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 8px var(--electric-blue);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 1;
    color: var(--neon-yellow);
    text-shadow:
        0 0 10px var(--neon-yellow),
        0 0 20px var(--neon-yellow),
        0 0 40px var(--hot-magenta);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: var(--spotlight);
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}
.hl-magenta {
    color: var(--hot-magenta);
    text-shadow: 0 0 10px var(--hot-magenta), 0 0 22px var(--hot-magenta);
}

.hero-tagline {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
    background: var(--neon-yellow);
    color: var(--dark-stage);
    box-shadow: 0 0 14px var(--neon-yellow), 0 0 32px rgba(255, 247, 0, 0.5);
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 20px var(--neon-yellow), 0 0 50px rgba(255, 247, 0, 0.7);
}
.btn-ghost {
    background: transparent;
    color: var(--spotlight);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5) inset, 0 0 14px rgba(0, 204, 255, 0.4);
}
.btn-ghost:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(0, 204, 255, 0.12);
    box-shadow: 0 0 18px rgba(0, 204, 255, 0.7) inset, 0 0 26px rgba(0, 204, 255, 0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 4vw, 3rem);
    margin-top: 1.5rem;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--electric-blue);
    text-shadow: 0 0 10px var(--electric-blue), 0 0 22px rgba(0, 204, 255, 0.6);
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

/* ===== Generic Section ===== */
.section {
    position: relative;
    padding: var(--section-pad);
    overflow: hidden;
}
.section-spotlight {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 70%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 247, 0, 0.18), transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.section-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-kicker {
    font-family: var(--font-display);
    color: var(--hot-magenta);
    letter-spacing: 0.34em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 8px var(--hot-magenta);
}
.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow), 0 0 40px var(--hot-magenta);
    margin-bottom: 1rem;
}
.section-title.accent-bungee {
    font-family: var(--font-accent);
    color: var(--neon-yellow);
    text-shadow: 0 0 18px var(--hot-magenta), 0 0 32px rgba(255, 0, 144, 0.5);
    letter-spacing: 0.04em;
}
.section-lede {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

/* ===== Carousel / Tickets ===== */
.section-carousel {
    background: linear-gradient(180deg, transparent, rgba(0, 204, 255, 0.05) 50%, transparent);
}

.ticket-track {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 1.5rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticket-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: ticket-scroll 50s linear infinite;
}
.ticket-row.is-paused {
    animation-play-state: paused;
}
@keyframes ticket-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticket {
    flex: 0 0 320px;
    display: flex;
    background: var(--spotlight);
    color: var(--dark-stage);
    border: 2px dashed var(--hot-magenta);
    border-radius: var(--radius);
    box-shadow:
        0 0 0 4px rgba(255, 0, 144, 0.15),
        0 12px 30px rgba(255, 0, 144, 0.35),
        0 0 28px rgba(255, 247, 0, 0.25);
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ticket:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow:
        0 0 0 4px rgba(255, 0, 144, 0.3),
        0 18px 40px rgba(255, 0, 144, 0.55),
        0 0 40px rgba(255, 247, 0, 0.5);
}

.ticket-stub {
    flex: 0 0 70px;
    background: var(--neon-yellow);
    color: var(--dark-stage);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    text-align: center;
    /* perforated edge effect */
    background-image:
        radial-gradient(circle, var(--dark-stage) 5px, transparent 5px),
        linear-gradient(0deg, var(--neon-yellow), var(--neon-yellow));
    background-position: right center, left center;
    background-size: 15px 15px, auto;
    background-repeat: repeat-y, no-repeat;
}
.ticket-stub-num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transform: rotate(-90deg);
    white-space: nowrap;
    margin-bottom: 0.5rem;
}
.ticket-stub-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    transform: rotate(-90deg);
}

.ticket-body {
    padding: 1.1rem 1.25rem 1rem;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.ticket-cat {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--hot-magenta);
    margin-bottom: 0.4rem;
}
.ticket-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--dark-stage);
    margin-bottom: 0.5rem;
}
.ticket-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(26, 10, 46, 0.78);
    flex: 1;
}
.ticket-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding-top: 0.6rem;
    border-top: 2px dashed rgba(255, 0, 144, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: rgba(26, 10, 46, 0.7);
    font-weight: 700;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.carousel-btn {
    background: var(--electric-blue);
    color: var(--dark-stage);
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 0 14px rgba(0, 204, 255, 0.6), 0 0 28px rgba(0, 204, 255, 0.3);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.carousel-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 22px rgba(0, 204, 255, 0.8), 0 0 40px rgba(0, 204, 255, 0.5);
}
.carousel-marquee {
    color: var(--neon-yellow);
    font-family: var(--font-display);
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    text-shadow: 0 0 10px var(--neon-yellow);
    animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Podium ===== */
.section-leaderboard {
    background: linear-gradient(180deg, transparent, rgba(255, 0, 144, 0.05), transparent);
}
.podium {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
    max-width: 1100px;
    margin: 0 auto;
}
.podium-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.podium-medal {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark-stage);
    margin-bottom: 0.85rem;
    box-shadow: 0 0 18px currentColor;
}
.podium-card {
    background: var(--spotlight);
    color: var(--dark-stage);
    border-radius: var(--radius);
    padding: 1.2rem 1.25rem;
    width: 100%;
    border: 2px dashed var(--hot-magenta);
    box-shadow: 0 12px 32px rgba(255, 0, 144, 0.35), 0 0 22px rgba(255, 247, 0, 0.2);
    margin-bottom: 1rem;
    text-align: center;
    transition: transform 0.25s ease;
}
.podium-card:hover {
    transform: translateY(-4px);
}
.podium-cat {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.4rem;
}
.podium-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.podium-desc {
    font-size: 0.9rem;
    color: rgba(26, 10, 46, 0.78);
    margin-bottom: 0.6rem;
}
.podium-votes {
    font-family: var(--font-display);
    color: var(--hot-magenta);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}
.podium-pillar {
    width: 100%;
    display: grid;
    place-items: center;
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--dark-stage);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -6px 0 rgba(0, 0, 0, 0.15) inset, 0 0 28px currentColor;
}

.podium-first .podium-medal,
.podium-first .podium-pillar {
    background: var(--neon-yellow);
    color: var(--dark-stage);
}
.podium-first .podium-medal { color: var(--dark-stage); box-shadow: 0 0 20px var(--neon-yellow); }
.podium-first .podium-pillar { height: 240px; box-shadow: 0 0 32px var(--neon-yellow); }
.podium-first .podium-cat { color: var(--neon-yellow); background: var(--dark-stage); padding: 0.25rem 0.6rem; border-radius: 4px; display: inline-block; }

.podium-second .podium-medal,
.podium-second .podium-pillar {
    background: var(--electric-blue);
}
.podium-second .podium-medal { box-shadow: 0 0 20px var(--electric-blue); }
.podium-second .podium-pillar { height: 180px; box-shadow: 0 0 28px var(--electric-blue); }
.podium-second .podium-cat { color: var(--electric-blue); }

.podium-third .podium-medal,
.podium-third .podium-pillar {
    background: var(--hot-magenta);
    color: var(--spotlight);
}
.podium-third .podium-medal { box-shadow: 0 0 20px var(--hot-magenta); color: var(--spotlight); }
.podium-third .podium-pillar { height: 130px; box-shadow: 0 0 26px var(--hot-magenta); color: var(--spotlight); }
.podium-third .podium-cat { color: var(--hot-magenta); }

@media (max-width: 720px) {
    .podium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .podium-pillar { height: auto !important; padding: 1rem 0; }
}

/* ===== Categories ===== */
.cat-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.cat-card {
    display: block;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    border: 2px solid currentColor;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}
.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, currentColor, transparent 60%);
    opacity: 0.08;
    pointer-events: none;
}
.cat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 18px currentColor;
}
.cat-yellow { color: var(--neon-yellow); }
.cat-magenta { color: var(--hot-magenta); }
.cat-blue { color: var(--electric-blue); }

.cat-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: currentColor;
    color: var(--dark-stage);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 14px currentColor;
}
.cat-title {
    font-family: var(--font-display);
    color: var(--spotlight);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.cat-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
}
.cat-count {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: currentColor;
    text-shadow: 0 0 8px currentColor;
}

/* ===== Marquee Band Ticker ===== */
.section-marquee-band {
    padding: 0;
    border-top: 4px solid var(--neon-yellow);
    border-bottom: 4px solid var(--neon-yellow);
    background: var(--hot-magenta);
    overflow: hidden;
}
.ticker {
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}
.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
}
.ticker-track span {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    color: var(--neon-yellow);
    letter-spacing: 0.18em;
    text-shadow: 0 0 8px var(--neon-yellow), 0 2px 0 var(--dark-stage);
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Submit ===== */
.submit-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 820px) {
    .submit-wrap { grid-template-columns: 1fr; }
}
.submit-copy .section-kicker,
.submit-copy .section-title,
.submit-copy .section-lede { text-align: left; }
.submit-copy .section-head { text-align: left; margin: 0 0 1.5rem; }

.submit-bullets {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}
.submit-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
}
.bullet-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

.submit-form {
    background: var(--spotlight);
    color: var(--dark-stage);
    border-radius: 16px;
    padding: 1.75rem;
    border: 3px dashed var(--hot-magenta);
    box-shadow: 0 0 24px rgba(255, 0, 144, 0.45), 0 0 48px rgba(255, 247, 0, 0.18);
    display: grid;
    gap: 1rem;
}
.form-label {
    display: grid;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    color: var(--dark-stage);
    text-transform: uppercase;
}
.form-label input,
.form-label textarea,
.form-label select {
    font: 400 1rem/1.4 var(--font-body);
    color: var(--dark-stage);
    background: rgba(26, 10, 46, 0.05);
    border: 2px solid rgba(26, 10, 46, 0.2);
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-label textarea { resize: vertical; }
.form-label input:focus,
.form-label textarea:focus,
.form-label select:focus {
    outline: 0;
    border-color: var(--hot-magenta);
    box-shadow: 0 0 0 3px rgba(255, 0, 144, 0.18);
}
.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
    background: var(--hot-magenta);
    color: var(--spotlight);
    box-shadow: 0 0 16px rgba(255, 0, 144, 0.6), 0 0 36px rgba(255, 0, 144, 0.35);
}
.btn-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 22px rgba(255, 0, 144, 0.85), 0 0 50px rgba(255, 0, 144, 0.55);
}
.form-status {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--hot-magenta);
    min-height: 1.2em;
    text-align: center;
}
.form-status.is-success { color: #008060; }
.form-status.is-error { color: #b00060; }

/* ===== Footer ===== */
.footer {
    padding: 3rem clamp(1.25rem, 5vw, 4rem) 2rem;
    border-top: 3px dashed rgba(255, 247, 0, 0.4);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 22px var(--hot-magenta);
    margin-bottom: 0.5rem;
}
.footer-tag {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.footer-col h4 {
    font-family: var(--font-display);
    color: var(--electric-blue);
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 204, 255, 0.6);
}
.footer-col ul { display: grid; gap: 0.4rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--neon-yellow); }
.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

/* ===== Reveal animation for sections ===== */
.section, .footer {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.is-visible, .footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-lights .bulb { animation: none; opacity: 1; }
    .ticket-row, .ticker-track { animation: none; }
    .confetti-piece { display: none; }
    .section, .footer { opacity: 1; transform: none; }
}
