/* ============================================================ */
/*  VARIABLES / DESIGN TOKENS                                   */
/* ============================================================ */
:root {
    /* Brand Colors */
    --vuma-yellow: rgba(255, 242, 0, 1);
    --vuma-blue: rgba(43, 57, 144, 1);
    --vuma-white: rgba(255, 255, 255, 1);
    --vuma-black: rgba(14, 14, 14, 1);

    /* Fallback Brand Gradients */
    --vuma-orange-main: #ff7300;
    --vuma-orange-dark: #e05326;

    /* Typography */
    --font-heading: 'Dela Gothic One', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-btn: 'Dela Gothic One', sans-serif;
}

/* ============================================================ */
/*  BASE RESETS                                                  */
/* ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--vuma-white);
    background-color: var(--vuma-black);
}

/* ============================================================ */
/*  A. NAVBAR                                                    */
/* ============================================================ */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 16px 0;
    background: var(--vuma-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--vuma-black) !important;
    padding: 0 !important;
    transition: color 0.2s ease;
}

.nav-link.active {
    font-weight: 700;
    color: var(--vuma-orange-dark) !important;
}

.nav-link:hover {
    color: var(--vuma-orange-dark) !important;
}

.btn-play-now {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    background-color: rgba(43, 57, 144, 1);
    color: var(--vuma-white) !important;
    border-radius: 50px;
    padding: 12px 28px;
    border: 3px solid rgba(255, 242, 0, 1);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-play-now:hover {
    transform: scale(1.03);
    filter: brightness(1.15);
    color: var(--vuma-white) !important;
}



/* ============================================================ */
/*  B. HERO SECTION                                              */
/* ============================================================ */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-wrapper .container,
.hero-wrapper .row {
    position: relative;
    z-index: 2;
}

/* -- Left Column -- */
.hero-left {
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 52px;
    line-height: 110%;
    letter-spacing: 0%;
    color: var(--vuma-yellow);
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-hero-cta {
    font-family: var(--font-btn);
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    background-color: rgba(43, 57, 144, 1);
    color: var(--vuma-white);
    border-radius: 50px;
    padding: 16px 42px;
    border: 4px solid rgba(246, 246, 246, 1);
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-hero-cta:hover {
    transform: scale(1.03);
    filter: brightness(1.15);
    color: var(--vuma-white);
}

/* ============================================================ */
/*  INSTRUCTIONS PAGE                                           */
/* ============================================================ */

/* -- Left Column Overrides -- */
.instructions-left {
    padding-top: 80px;
    padding-bottom: 100px;
}

.instructions-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    color: var(--vuma-yellow);
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
    display: inline-block;
}

.instructions-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--vuma-yellow);
    border-radius: 2px;
}

/* -- Bullet List -- */
.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.instructions-list li {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: var(--vuma-white);
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.instructions-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--vuma-yellow);
    font-size: 20px;
    font-weight: 700;
}

.instructions-list li strong {
    font-weight: 700;
    font-style: italic;
    color: var(--vuma-yellow);
}

/* -- Support Sentence -- */
.instructions-support {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 460px;
}

/* -- Form -- */
.instructions-form {
    max-width: 460px;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 180px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--vuma-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: var(--vuma-yellow);
    box-shadow: 0 0 0 3px rgba(255, 242, 0, 0.25);
}

.form-input::placeholder {
    color: rgba(14, 14, 14, 0.45);
}

.btn-instructions-cta {
    font-family: var(--font-btn);
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    background-color: rgba(43, 57, 144, 1);
    color: var(--vuma-white);
    border-radius: 50px;
    padding: 14px 40px;
    border: 3px solid rgba(255, 242, 0, 1);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    width: 100%;
}

.btn-instructions-cta:hover {
    transform: scale(1.03);
    filter: brightness(1.15);
    color: var(--vuma-white);
}

/* -- Right Column: Woman Image -- */
.instructions-right {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.instructions-woman {
    max-width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.45));
}

/* -- Decorative Slogan -- */
.instructions-slogan {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
    padding-left: 12%;
}

@media (min-width: 1200px) {
    .instructions-slogan {
        padding-left: calc((100% - 1140px) / 2 + 12px);
    }
}

@media (min-width: 1400px) {
    .instructions-slogan {
        padding-left: calc((100% - 1320px) / 2 + 12px);
    }
}

.slogan-play {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 42px;
    color: var(--vuma-white);
    margin-right: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slogan-paid {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 42px;
    color: var(--vuma-yellow);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* -- Instructions Responsive: Tablet -- */
@media (max-width: 991.98px) {
    .instructions-title {
        font-size: 36px;
    }

    .instructions-left {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .instructions-list li {
        font-size: 16px;
    }

    .instructions-woman {
        max-height: 400px;
    }

    .instructions-right {
        min-height: 350px;
    }

    .instructions-slogan {
        display: none;
    }

    .form-row {
        flex-direction: column;
    }

    .form-input {
        width: 100%;
    }
}

/* -- Instructions Responsive: Mobile -- */
@media (max-width: 575.98px) {
    .instructions-title {
        font-size: 28px;
    }

    .instructions-list li {
        font-size: 15px;
    }

    .instructions-support {
        font-size: 15px;
    }

    .btn-instructions-cta {
        font-size: 20px;
        padding: 14px 32px;
    }

    .instructions-woman {
        max-height: 280px;
    }

    .instructions-right {
        min-height: 250px;
    }
}

/* Social Proof Panel */
.social-proof-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack .avatar {
    height: 44px;
    width: auto;
    object-fit: cover;
}

.proof-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--vuma-white);
    max-width: 280px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* -- Right Column: Combined Hero Image -- */
.hero-right {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-composite-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

/* ============================================================ */
/*  C. LIVE TICKER BANNER                                       */
/* ============================================================ */
.live-ticker-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: var(--vuma-black);
    z-index: 1050;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: continuousMarqueeLoop 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--vuma-white);
    padding-right: 45px;
    white-space: nowrap;
}

.emoji-icon {
    margin-right: 8px;
    font-size: 18px;
}

@keyframes continuousMarqueeLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ============================================================ */
/*  RESPONSIVE: TABLET (≤ 991px)                                 */
/* ============================================================ */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 20px;
        border-radius: 12px;
        margin-top: 12px;
    }

    .hero-left {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-proof-panel {
        justify-content: center;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-composite-image {
        max-height: 420px;
    }
}

/* ============================================================ */
/*  RESPONSIVE: MOBILE (≤ 575px)                                 */
/* ============================================================ */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-hero-cta {
        font-size: 20px;
        padding: 14px 32px;
    }

    .social-proof-panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .proof-text {
        max-width: 100%;
    }

    .hero-right {
        min-height: 300px;
    }

    .hero-composite-image {
        max-height: 300px;
    }

    .live-ticker-banner {
        height: 46px;
    }

    .ticker-item {
        font-size: 13px;
        padding-right: 30px;
    }
}

/* ============================================================ */
/*  LEADERBOARD PAGE                                           */
/* ============================================================ */

/* -- Centered Hero Variant -- */
.leaderboard-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.leaderboard-content {
    padding-top: 40px;
    padding-bottom: 100px;
}

.leaderboard-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    color: var(--vuma-yellow);
    margin-bottom: 36px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* -- Leaderboard Card -- */
.leaderboard-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

/* -- Individual Row -- */
.lb-row {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    transition: background 0.2s ease;
}

.lb-row:hover {
    background: rgba(43, 57, 144, 0.04);
}

.lb-row+.lb-row {
    border-top: 1px solid rgba(14, 14, 14, 0.06);
}

/* Rank */
.lb-rank {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--vuma-black);
    min-width: 28px;
    text-align: center;
}

/* Avatar */
.lb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.26px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-image: linear-gradient(white, white), linear-gradient(180deg, #F3903F 0%, #E93E3A 87.02%);
    flex-shrink: 0;
}

/* Name */
.lb-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--vuma-black);
    flex: 1;
    text-align: left;
}

/* Score */
.lb-score {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lb-points {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--vuma-blue);
}

.lb-coin-icon {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
}

/* -- Current User Row -- */
.lb-row-you {
    background: rgba(255, 242, 0, 0.12);
    border-radius: 12px;
    margin: 8px 12px 4px;
    padding: 12px 16px;
    border: 1.5px solid rgba(255, 242, 0, 0.4);
}

.lb-row-you:hover {
    background: rgba(255, 242, 0, 0.18);
}

.lb-row-you .lb-name {
    font-weight: 700;
    color: var(--vuma-blue);
}

/* ============================================================ */
/*  LEADERBOARD RESPONSIVE                                      */
/* ============================================================ */
@media (max-width: 991.98px) {
    .leaderboard-title {
        font-size: 36px;
    }

    .leaderboard-card {
        max-width: 480px;
        border-radius: 16px;
    }

    .lb-row {
        padding: 10px 16px;
    }

    .lb-avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .leaderboard-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .leaderboard-card {
        max-width: 100%;
        border-radius: 14px;
        padding: 12px 0;
    }

    .lb-row {
        padding: 10px 12px;
        gap: 8px;
    }

    .lb-rank {
        font-size: 14px;
        min-width: 22px;
    }

    .lb-avatar {
        width: 32px;
        height: 32px;
    }

    .lb-name {
        font-size: 14px;
    }

    .lb-points {
        font-size: 14px;
    }

    .lb-row-you {
        margin: 6px 8px 2px;
        padding: 10px 12px;
    }
}

/* ============================================================ */
/*  TRIVIA PAGE                                                 */
/* ============================================================ */

.trivia-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 40px;
}

/* -- Top Status Bar -- */
.trivia-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 680px;
    padding: 24px 20px 16px;
    gap: 12px;
}

.trivia-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--vuma-white);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.trivia-back:hover {
    opacity: 0.8;
    color: var(--vuma-white);
}

.trivia-points-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px 18px;
    border: 2px solid var(--vuma-yellow);
}

.trivia-points-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--vuma-black);
}

.trivia-points-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--vuma-blue);
}

.trivia-points-icon {
    width: 16px;
    height: 16px;
}

.trivia-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.trivia-score {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trivia-score-label {
    color: var(--vuma-black);
}

.trivia-score-value {
    color: var(--vuma-white);
    font-weight: 600;
}

.trivia-timer {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--vuma-black);
    border: 2.5px solid var(--vuma-yellow);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vuma-white);
}

/* -- Progress Tracker -- */
.trivia-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 12px 0 28px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tp-step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--vuma-white);
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Connector line between steps */
.tp-step::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

/* No connector after the last step */
.tp-step:last-child::after {
    display: none;
}

/* Completed step: solid white fill, dark checkmark */
.tp-step.tp-done {
    background: var(--vuma-white);
    border-color: var(--vuma-white);
}

.tp-step.tp-done svg {
    stroke: #666;
    stroke-width: 3;
}

/* Connector after a done step turns solid white */
.tp-step.tp-done::after {
    background: var(--vuma-white);
}

/* Current step: yellow fill, dark number, glow */
.tp-step.tp-current {
    background: var(--vuma-yellow);
    border-color: var(--vuma-yellow);
    color: var(--vuma-black);
    font-weight: 700;
    box-shadow: 0 0 18px rgba(255, 242, 0, 0.5);
}

/* Connector after current step stays semi-transparent */
.tp-step.tp-current::after {
    background: rgba(255, 255, 255, 0.35);
}

/* -- Question Bubble -- */
.trivia-question-wrapper {
    width: 100%;
    max-width: 720px;
    padding: 0 20px;
    margin-bottom: 28px;
}

.trivia-question-bubble {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 78px 60px 50px;
    overflow: hidden;
}

.trivia-bubble-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trivia-question-text {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: var(--vuma-white);
    text-align: center;
    margin: 0;
    max-width: 580px;
}

.trivia-bubble-tail {
    display: none;
}

/* -- Answer Grid -- */
.trivia-answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.trivia-answer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
    outline: none;
}

.trivia-answer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.trivia-answer-card:active {
    transform: scale(0.98);
}

.ta-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.ta-badge-a {
    background: rgba(0, 255, 195, 1);
    color: white;
}

.ta-badge-b {
    background: rgba(43, 120, 144, 1);
    color: white;
}

.ta-badge-c {
    background: rgba(253, 199, 12, 1);
    color: white;
}

.ta-badge-d {
    background: rgba(0, 204, 255, 1);
    color: white;
}

.ta-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--vuma-black);
}

/* ============================================================ */
/*  TRIVIA RESPONSIVE                                            */
/* ============================================================ */
@media (max-width: 991.98px) {
    .trivia-top-bar {
        padding: 18px 16px 12px;
    }

    .trivia-question-bubble {
        padding: 30px 36px 40px;
        min-height: 150px;
    }

    .trivia-question-text {
        font-size: 18px;
    }

    .trivia-answers {
        gap: 12px;
    }

    .trivia-answer-card {
        padding: 14px 16px;
        gap: 10px;
    }

    .ta-text {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .trivia-top-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 14px 12px 10px;
    }

    .trivia-points-pill {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .trivia-meta {
        gap: 10px;
    }

    .tp-step {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tp-step::after {
        width: 14px;
    }

    .trivia-progress {
        gap: 0;
        margin: 8px 0 20px;
    }

    .trivia-question-bubble {
        padding: 24px 24px 34px;
        min-height: 120px;
    }

    .trivia-question-text {
        font-size: 16px;
        max-width: 100%;
    }

    .trivia-answers {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trivia-answer-card {
        padding: 14px 16px;
    }

    .ta-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .ta-text {
        font-size: 14px;
    }
}

/* ============================================================ */
/*  CONGRATULATIONS PAGE                                        */
/* ============================================================ */

.congrats-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.congrats-back {
    position: absolute;
    top: 28px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--vuma-white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.congrats-back:hover {
    opacity: 0.8;
    color: var(--vuma-white);
}

.congrats-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 520px;
    width: 100%;
}

.congrats-title {
    font-family: 'Kanit', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 110%;
    color: var(--vuma-yellow);
    margin-bottom: 12px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.congrats-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--vuma-white);
    margin-bottom: 36px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

/* -- Stats Card -- */
.congrats-card {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px 12px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.congrats-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
}

.congrats-number {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

.congrats-number-correct {
    color: #22c55e;
}

.congrats-number-wrong {
    color: #ef4444;
}

.congrats-number-total {
    color: var(--vuma-orange-main);
}

.congrats-number-points {
    color: var(--vuma-orange-main);
}

.congrats-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(14, 14, 14, 0.6);
    text-transform: uppercase;
}

/* -- Daily Win Reward Banner -- */
.congrats-daily-win {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 28px;
}

.congrats-daily-win-icon {
    font-size: 28px;
    line-height: 1;
}

.congrats-daily-win-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--vuma-white);
}

.congrats-daily-win-text strong {
    font-weight: 700;
    color: var(--vuma-yellow);
}

/* -- Action Buttons -- */
.congrats-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.congrats-btn {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
    min-width: 180px;
    text-align: center;
}

.congrats-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.12);
}

.congrats-btn-primary {
    background-color: rgba(43, 57, 144, 1);
    color: var(--vuma-white);
    border: 3px solid rgba(255, 242, 0, 1);
}

.congrats-btn-primary:hover {
    color: var(--vuma-white);
}

.congrats-btn-secondary {
    background-color: var(--vuma-white);
    color: var(--vuma-black);
    border: 2px solid rgba(14, 14, 14, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.congrats-btn-secondary:hover {
    color: var(--vuma-black);
}

/* ============================================================ */
/*  CONGRATULATIONS RESPONSIVE                                  */
/* ============================================================ */
@media (max-width: 575.98px) {
    .congrats-title {
        font-size: 34px;
    }

    .congrats-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .congrats-card {
        flex-wrap: wrap;
        padding: 16px 8px;
        border-radius: 16px;
    }

    .congrats-stat {
        flex: 0 0 50%;
        padding: 8px 6px;
    }

    .congrats-number {
        font-size: 28px;
    }

    .congrats-actions {
        flex-direction: column;
        align-items: center;
    }

    .congrats-btn {
        width: 100%;
        max-width: 260px;
        font-size: 16px;
        padding: 14px 28px;
    }

    .congrats-back {
        top: 18px;
        left: 20px;
    }
}