/* ========================================
   DESIGN CHALLENGE — Designer Edition
   ======================================== */

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

:root {
    --bg: #fafafa;
    --text: #0a0a0a;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-tertiary: rgba(0, 0, 0, 0.35);
    --blue: #3b82f6;
    --teal: #06b6d4;
    --orange: #f97316;
    --green: #22c55e;

    --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html,
body {
    height: 100%;
    cursor: none;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
    overflow-y: auto;
}

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

/* ========================================
   CUSTOM CURSOR
   ======================================== */

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin: -4px 0 0 -4px;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: -20px 0 0 -20px;
    transition: width 0.3s, height 0.3s, margin 0.3s;
}

.cursor.hover {
    transform: scale(0);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   DOT MATRIX
   ======================================== */

#dotMatrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   MORPHING BLOB
   ======================================== */

.blob {
    display: none;
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
    }

    75% {
        border-radius: 40% 30% 60% 50% / 70% 50% 40% 60%;
    }
}

@keyframes blob-gradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    /* height: 100vh;
    height: 100dvh; */
    display: flex;
    flex-direction: column;
    padding: 1.5rem 3rem;
    overflow: hidden;
    z-index: 1;
}

/* ========================================
   NAV
   ======================================== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    z-index: 10;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

body.loaded .nav-brand {
    opacity: 1;
    transform: translateY(0);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background: var(--text);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease, transform 0.15s ease;
}

body.loaded .nav-cta {
    opacity: 1;
    animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.nav-cta svg {
    transition: transform 0.2s;
}

.nav-cta:hover svg {
    transform: translateX(4px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO MAIN
   ======================================== */

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Tag */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem 0.5rem 0.625rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

body.loaded .tag {
    opacity: 1;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
}

.tag-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid var(--green);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Title */
.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.char-wrap {
    display: inline-block;
    overflow: visible;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded .char {
    opacity: 1;
    transform: translateY(0);
}

.char-wrap:nth-child(1) .char {
    transition-delay: 0.5s;
}

.char-wrap:nth-child(2) .char {
    transition-delay: 0.53s;
}

.char-wrap:nth-child(3) .char {
    transition-delay: 0.56s;
}

.char-wrap:nth-child(4) .char {
    transition-delay: 0.59s;
}

.char-wrap:nth-child(5) .char {
    transition-delay: 0.62s;
}

.char-wrap:nth-child(6) .char {
    transition-delay: 0.65s;
}

.char-wrap:nth-child(8) .char {
    transition-delay: 0.68s;
}

.char-wrap:nth-child(9) .char {
    transition-delay: 0.71s;
}

.char-wrap:nth-child(10) .char {
    transition-delay: 0.74s;
}

.space {
    display: inline-block;
    width: 0.25em;
}

.highlight .char {
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* Buttons */
.btn-primary {
    position: relative;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    background: var(--text);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.15s ease;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .btn-bg {
    transform: scaleX(1);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s, transform 0.15s ease;
}

.btn-ghost:hover {
    color: var(--text);
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.countdown-icon {
    font-size: 1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 4rem;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--text) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.countdown-name {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-tertiary);
    line-height: 1;
    margin-bottom: 1rem;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.3;
    }
}

.countdown-date {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s both;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.scroll-indicator:hover .scroll-arrow svg {
    color: var(--blue);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ========================================
   TICKER
   ======================================== */

.ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.77rem 0;
    background: var(--text);
    color: var(--bg);
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-track span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

/* ========================================
   MAGNETIC
   ======================================== */

.magnetic {
    transition: transform 0.15s ease;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {

    html,
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    #dotMatrix {
        display: none;
    }

    .hero {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.35rem;
        /* Mobile: fade + slide up animation for whole title */
        opacity: 0;
        transform: translateY(30px);
        animation: mobileTitleFade 0.8s ease-out 0.3s forwards;
    }

    @keyframes mobileTitleFade {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Disable character-by-character animation on mobile */
    .char {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    .char-wrap {
        overflow: visible;
    }

    .countdown-timer {
        padding: 1rem 1.25rem;
        gap: 0.25rem;
    }

    .countdown-unit {
        min-width: 2.5rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-separator {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .countdown-name {
        font-size: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Mobile ticker - faster and proper looping */
    .ticker-track {
        gap: 2rem;
        animation: ticker-mobile 15s linear infinite;
    }

    .ticker-track span {
        font-size: 0.65rem;
    }

    @keyframes ticker-mobile {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* Mobile scroll indicator */
    .scroll-indicator {
        margin-top: 2rem;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
    }

    .scroll-text {
        font-size: 0.6875rem;
    }
}

/* Countdown Open State */
.countdown-container.open .countdown-label {
    color: var(--green);
    font-weight: 600;
}

.countdown-container.open .countdown-timer {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
}

.countdown-container.open .countdown-value {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   FOCUS
   ======================================== */

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

a:focus:not(:focus-visible) {
    outline: none;
}

/* ========================================
   PRIZES SECTION
   ======================================== */

.prizes-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.prizes-bg-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.prizes-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prizes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prizes-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.prizes-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.prizes-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Prize Card Base */
.prize-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.prize-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prize-card:hover .prize-glow {
    opacity: 1;
}

/* Prize card variants */
.prize-first .prize-glow {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
}

.prize-first {
    border-color: rgba(255, 215, 0, 0.3);
}

.prize-first .prize-amount {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-second .prize-glow {
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.15) 0%, transparent 50%);
}

.prize-second {
    border-color: rgba(192, 192, 192, 0.3);
}

.prize-second .prize-amount {
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-third .prize-glow {
    background: radial-gradient(circle at center, rgba(205, 127, 50, 0.15) 0%, transparent 50%);
}

.prize-third {
    border-color: rgba(205, 127, 50, 0.3);
}

.prize-third .prize-amount {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-all .prize-glow {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.prize-all {
    border-color: rgba(59, 130, 246, 0.3);
}

.prize-all .prize-amount {
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-rank {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.prize-medal {
    font-size: 2rem;
}

.prize-place {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prize-amount {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.prize-amount-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.prize-perks {
    list-style: none;
}

.prize-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.perk-icon {
    color: var(--blue);
    font-size: 0.625rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 6rem 2rem;
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

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

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-category {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-category-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-tertiary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE - PRIZES & FAQ
   ======================================== */

@media (max-width: 1024px) {
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prizes-section {
        padding: 4rem 0;
    }

    .prizes-container {
        padding: 0 1rem;
    }

    .prizes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0 1rem 1rem;
        margin: 0 -1rem;
    }

    .prizes-grid::-webkit-scrollbar {
        display: none;
    }

    .prizes-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .prize-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: center;
        padding: 1.5rem;
    }

    .prize-amount {
        font-size: 1.75rem;
    }

    .faq-section {
        padding: 4rem 1rem;
    }

    .faq-category {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 1rem 0;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    padding: 2rem;
    background: var(--text);
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}

footer a:hover .footer-brand {
    opacity: 0.8;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-divider {
        display: none;
    }
}