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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(180, 120, 40, 0.1),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(140, 35, 50, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(80, 40, 120, 0.06),
            transparent 35%
        ),
        #0d0d0d;

    color: #fff8ee;

    font-family: "Noto Serif Devanagari", serif;

    overflow-x: hidden;

    /* subtle noise texture */
    background-attachment: fixed;
}

:root {
    --gold: #ffd966;
    --gold-light: #fff0b3;
    --gold-dark: #c9972e;

    --bg: #0d0d0d;
    --card: #2a2a2a;
    --card2: #222222;

    --text: #fff8ee;
    --muted: #c4bbb0;

    --border: rgba(240, 190, 70, .28);

    /* 3D depth tokens */
    --shadow-soft:
        0 2px 4px rgba(0,0,0,.35),
        0 8px 20px rgba(0,0,0,.45);
    --shadow-raised:
        0 1px 0 rgba(255,255,255,.06) inset,
        0 -1px 0 rgba(0,0,0,.65) inset,
        0 6px 14px rgba(0,0,0,.5),
        0 18px 40px rgba(0,0,0,.55);
    --shadow-deep:
        0 1px 0 rgba(255,255,255,.07) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 10px 22px rgba(0,0,0,.6),
        0 28px 60px rgba(0,0,0,.7),
        0 0 80px rgba(255,180,40,.06);
}


/* =================================
   AMBIENT BACKGROUND ORBS
================================= */

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    opacity: .35;
}

body::before {
    width: 500px;
    height: 500px;
    top: -180px;
    left: -180px;
    background: radial-gradient(circle, rgba(255, 180, 60, .35), transparent 70%);
    animation: floatSlow 22s ease-in-out infinite;
}

body::after {
    width: 600px;
    height: 600px;
    bottom: -250px;
    right: -220px;
    background: radial-gradient(circle, rgba(180, 40, 80, .3), transparent 70%);
    animation: floatSlow 28s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.08); }
}


/* =================================
   GLOBAL
================================= */

section {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-family: "Cinzel", serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #f0c45e;
    text-align: center;
    margin-bottom: 12px;
    text-shadow:
        0 1px 0 rgba(0,0,0,.7),
        0 0 16px rgba(255,200,60,.25);
}

.gold-line {
    width: 55px;
    height: 2px;
    margin: 10px auto 42px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #f0c45e,
            transparent
        );
    box-shadow:
        0 1px 0 rgba(0,0,0,.7),
        0 0 14px rgba(255,200,60,.45);
}


/* =================================
   NAVBAR — GLASS + GOLD HAIRLINE
================================= */

.navbar {
    width: 100%;
    height: 78px;

    position: sticky;
    top: 0;
    z-index: 9999;

    background:
        linear-gradient(180deg, rgba(30,30,30,.9) 0%, rgba(15,15,15,.92) 100%);

    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);

    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(0,0,0,.9);

    box-shadow:
        0 1px 0 rgba(255,255,255,.06) inset,
        0 -1px 0 rgba(0,0,0,.9) inset,
        0 8px 24px rgba(0,0,0,.6),
        0 2px 6px rgba(0,0,0,.5);
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,200,60,.35) 30%,
        rgba(255,217,102,.5) 50%,
        rgba(255,200,60,.35) 70%,
        transparent 100%
    );
    opacity: .7;
    pointer-events: none;
}


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

.nav-container {
    width: min(1340px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Cinzel", serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff2d1;
    text-shadow:
        0 1px 0 rgba(0,0,0,.9),
        0 2px 4px rgba(0,0,0,.6),
        0 0 18px rgba(255,217,102,.2);
}


.logo-star {
    color: #ffd966;
    font-size: 16px;
    line-height: 1;
    text-shadow:
        0 0 16px rgba(255, 217, 102, 0.7),
        0 0 30px rgba(255, 200, 60, .35),
        0 1px 0 rgba(0,0,0,.7);
}


.logo-year {
    color: #f5c842;
    margin-left: 2px;
}


/* =========================================
   NAV LINKS — HOVER UNDERLINE
========================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 39px;
}


.nav-links a {
    position: relative;
    text-decoration: none;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #a89f94;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd966, transparent);
    transform: translateX(-50%);
    transition: width .3s ease;
    box-shadow: 0 0 10px rgba(255,217,102,.6);
}

.nav-links a:hover {
    color: #ffd966;
    text-shadow: 0 0 12px rgba(255,217,102,.45);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #ffd966;
    text-shadow: 0 0 12px rgba(255,217,102,.4);
}


/* =========================================
   RIGHT ACTIONS
========================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}


/* =========================================
   BOOK TICKET BUTTON — SHIMMER
========================================= */

.nav-book-btn {
    position: relative;
    height: 40px;
    min-width: 178px;
    padding: 0 24px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fff5c8 0%,
            #ffd966 45%,
            #f0b900 100%
        );

    color: #1a1408;
    font-family: "Cinzel", serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;

    box-shadow:
        0 1px 0 rgba(255,255,255,.85) inset,
        0 -2px 0 rgba(150,90,0,.45) inset,
        0 0 26px rgba(255, 200, 50, 0.42),
        0 4px 10px rgba(0,0,0,.5),
        0 10px 24px rgba(0,0,0,.4);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.nav-book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.65),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 55% { left: -120%; }
    85%, 100% { left: 160%; }
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.9) inset,
        0 -2px 0 rgba(150,90,0,.45) inset,
        0 0 38px rgba(255, 200, 50, 0.62),
        0 6px 14px rgba(0,0,0,.55),
        0 14px 32px rgba(0,0,0,.45);
}


.nav-book-btn:active {
    transform: translateY(1px);
    box-shadow:
        0 1px 0 rgba(0,0,0,.3) inset,
        0 0 18px rgba(255,200,50,.3),
        0 2px 6px rgba(0,0,0,.5);
}


.book-arrow {
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-1px);
}


/* =========================================
   PROFILE BUTTON
========================================= */

.profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #8a7338;

    background:
        linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0d88a;
    font-size: 13px;
    cursor: pointer;

    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -1px 0 rgba(0,0,0,.8) inset,
        0 4px 10px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,200,60,.08);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        box-shadow .25s ease;
}


.profile-btn:hover {
    background: linear-gradient(180deg, #38332a 0%, #262219 100%);
    border-color: #c9972e;
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -1px 0 rgba(0,0,0,.8) inset,
        0 6px 14px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,200,60,.2),
        0 0 20px rgba(255,200,60,.25);
}

@media (min-width: 761px) {
    .profile-btn {
        display: none;
    }
}


/* =========================================
   MOBILE MENU
========================================= */

.menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #ffd966;
    font-size: 21px;
    cursor: pointer;
    text-shadow: 0 0 12px rgba(255,200,60,.4);
}

.mobile-book-btn {
    display: none;
}


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

.hero {
    position: relative;
    min-height: 545px;
    padding: 52px 0 72px;
    background:
        radial-gradient(
            ellipse at 34% 45%,
            rgba(140, 85, 25, 0.14),
            transparent 42%
        ),
        #0d0d0d;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 420px;
    left: -100px;
    top: 40px;
    background: radial-gradient(
        circle,
        rgba(170, 110, 35, 0.11),
        transparent 70%
    );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180,40,80,.08), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-container {
    width: min(1156px, calc(100% - 80px));
    min-width: 0;
    min-height: 410px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 398px;
    align-items: center;
    column-gap: 72px;
    position: relative;
    z-index: 2;
}

.hero-content {
    min-width: 0;
    max-width: 700px;
    padding-top: 0;
}

.hero-event-pill {
    width: fit-content;
    height: 32px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 18px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 50%),
        linear-gradient(180deg, #3a3a3a 0%, #262626 100%);

    border: 1px solid #4a4538;

    color: #f0d07a;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -1px 0 rgba(0,0,0,.75) inset,
        0 6px 14px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,200,60,.06),
        0 0 24px rgba(255,200,60,.1);

    text-shadow: 0 1px 0 rgba(0,0,0,.7);
}

.hero-event-pill span {
    color: #ffd966;
    font-size: 11px;
    text-shadow: 0 0 12px rgba(255,200,60,.5);
}

.hero-top-text {
    margin-top: 21px;
    color: #ddd3c7;
    font-size: 14px;
    line-height: 1.5;
    text-shadow: 0 1px 0 rgba(0,0,0,.4);
}

.hero-title {
    margin-top: 13px;
    width: 100%;
    max-width: 700px;
    padding: 16px 4px 12px;
    font-size: clamp(58px, 5vw, 72px);
    line-height: 1.12;
    letter-spacing: 0;
    word-break: normal;
    overflow: visible;
    font-weight: 800;

    background: linear-gradient(
        110deg,
        #fff5c8 0%,
        #ffd966 45%,
        #f0b900 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 2px 0 rgba(0,0,0,.7))
        drop-shadow(0 4px 10px rgba(0,0,0,.5))
        drop-shadow(0 8px 28px rgba(255,180,40,.25));
}

.hero-description {
    margin-top: 10px;
    max-width: 680px;
    color: #c9c0b5;
    font-size: 15px;
    line-height: 1.7;
    text-shadow: 0 1px 0 rgba(0,0,0,.35);
}

.hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-benefits span {
    color: #b8afa5;
    font-size: 15px;
    white-space: nowrap;
}

.hero-benefits i {
    color: #ffd966;
    margin-right: 7px;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(255,200,60,.5);
}

.hero-benefits .benefit-dot {
    color: #7a7268;
    font-size: 15px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

/* =========================================
   HERO BOOK BUTTON — SHIMMER + PULSE
========================================= */

.hero-book-btn {
    position: relative;
    width: 214px;
    height: 58px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #fff5c8 0%,
        #ffd966 45%,
        #f0b900 100%
    );
    color: #1a1408;
    font-family: "Noto Serif Devanagari", serif;
    font-size:18px;
    font-weight: 700;
    cursor: pointer;

    box-shadow:
        0 1px 0 rgba(255,255,255,.85) inset,
        0 -3px 0 rgba(150,90,0,.5) inset,
        0 8px 20px rgba(0,0,0,.55),
        0 14px 38px rgba(255,180,40,.35),
        0 0 0 1px rgba(255,220,120,.15);

    transition: transform .2s ease, box-shadow .2s ease;

    animation: pulseGold 2.4s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow:
            0 1px 0 rgba(255,255,255,.85) inset,
            0 -3px 0 rgba(150,90,0,.5) inset,
            0 8px 20px rgba(0,0,0,.55),
            0 14px 38px rgba(255,180,40,.35),
            0 0 0 1px rgba(255,220,120,.15);
    }
    50% {
        box-shadow:
            0 1px 0 rgba(255,255,255,.9) inset,
            0 -3px 0 rgba(150,90,0,.5) inset,
            0 8px 20px rgba(0,0,0,.55),
            0 18px 48px rgba(255,180,40,.55),
            0 0 0 1px rgba(255,220,120,.25);
    }
}

.hero-book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-book-btn:hover {
    transform: translateY(-3px);
}

.hero-book-btn:active {
    transform: translateY(1px);
}

.ticket-icon {
    font-size: 14px;
    transform: rotate(-25deg);
}

.remaining-tickets {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9a9188;
    font-size: 15px;
}

.lightning {
    color: #f5c842;
    font-size: 18px;
    line-height: 1;
    text-shadow: 0 0 14px rgba(245,200,66,.7);
    animation: lightningFlicker 1.8s ease-in-out infinite;
}

@keyframes lightningFlicker {
    0%, 100% { opacity: 1; filter: brightness(1); }
    45% { opacity: .7; filter: brightness(1.4); }
    50% { opacity: 1; filter: brightness(1); }
}

.hero-ticket-area {
    width: 398px;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    perspective: 1400px;
}

/* =========================================
   FESTIVAL TICKET — DEEP 3D
========================================= */

.festival-ticket {
    width: 398px;
    aspect-ratio: 398 / 505;
    min-height: 0;
    padding: 17px;
    position: relative;
    border-radius: 18px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 35%),
        linear-gradient(
            145deg,
            #3a3630 0%,
            #262626 55%,
            #1a1a1a 100%
        );
    border: 1px solid #5a4c2a;

    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 10px 24px rgba(0,0,0,.65),
        0 35px 80px rgba(0, 0, 0, .8),
        0 0 0 1px rgba(255,200,60,.08),
        0 0 90px rgba(255,180,40,.12);

    overflow: hidden;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
    transform-style: preserve-3d;

    animation: ticketFloat 6s ease-in-out infinite;
}

@keyframes ticketFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(1.5deg); }
}

.festival-ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,217,102,.5),
        transparent
    );
    pointer-events: none;
}

.festival-ticket:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 20px 40px rgba(0,0,0,.7),
        0 55px 110px rgba(0, 0, 0, .85),
        0 0 0 1px rgba(255,200,60,.15),
        0 0 130px rgba(255,180,40,.25);
}

.ticket-header {
    min-height: 45px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ticket-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Cinzel", serif;
    color: #fff2d1;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 rgba(0,0,0,.8), 0 2px 4px rgba(0,0,0,.4);
}

.ticket-star {
    color: #ffd966;
    font-size: 18px;
    text-shadow: 0 0 16px rgba(255,200,60,.8), 0 0 30px rgba(255,200,60,.4);
    animation: starTwinkle 2.5s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: .85; filter: brightness(1.4); }
}

.entry-pass {
    margin-top: 2px;
    padding: 6px 10px;
    border-radius: 15px;
    background: linear-gradient(180deg, #574826 0%, #3d3119 100%);
    border: 1px solid #6b5a2e;
    color: #f5d77a;
    font-family: "Cinzel", serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .3px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -1px 0 rgba(0,0,0,.55) inset,
        0 3px 8px rgba(0,0,0,.45),
        0 0 12px rgba(255,200,60,.15);

    text-shadow: 0 1px 0 rgba(0,0,0,.6);
}

.ticket-photo {
    width: 100%;
    height: 170px;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    background: #3d2110;

    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -1px 0 rgba(0,0,0,.75) inset,
        0 4px 10px rgba(0,0,0,.55);
}

.ticket-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.18) contrast(1.1) brightness(1.06);
    transition: transform .6s ease;
}

.festival-ticket:hover .ticket-photo img {
    transform: scale(1.06);
}

.ticket-photo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .06),
            transparent 40%,
            rgba(0, 0, 0, .35)
        );
}

.ticket-photo-info {
    position: relative;
    margin-top: -48px;
    min-height: 48px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.ticket-photo-info span {
    order: 2;
    margin-top: 13px;
    color: #fff0d9;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 600;
    text-shadow: 0 2px 8px #000, 0 1px 0 rgba(0,0,0,.9);
}

.ticket-photo-info strong {
    order: 1;
    margin-top: 13px;
    color: #ffd966;
    font-family: "Cinzel", serif;
    font-size: 17px;
    text-shadow:
        0 2px 8px #000,
        0 1px 0 rgba(0,0,0,.9),
        0 0 18px rgba(255,200,60,.5);
}

.ticket-photo-info b {
    order: 3;
    margin: 13px 0 0 auto;
    align-self: center;
    padding: 3px 7px;
    border-radius: 3px;
    background: rgba(25, 25, 25, .95);
    color: #d4cbbd;
    font-family: "Cinzel", serif;
    font-size: 7px;
    letter-spacing: .4px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 -1px 0 rgba(0,0,0,.75) inset;
}

.ticket-divider {
    height: 18px;
    margin-top: 8px;
    border-top: 1px dashed #6b5a38;
    position: relative;
}

.left-notch,
.right-notch {
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #0d0d0d;
    top: -15px;
    box-shadow:
        0 3px 6px rgba(0,0,0,.9) inset,
        0 -1px 0 rgba(255,255,255,.06),
        0 0 0 1px rgba(0,0,0,.5);
}

.left-notch {
    left: -31px;
}

.right-notch {
    right: -31px;
}

.ticket-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 1px;
}

.ticket-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-detail small {
    color: #9a9184;
    font-family: "Cinzel", serif;
    font-size: 8px;
    letter-spacing: .5px;
}

.ticket-detail strong {
    color: #f0e8da;
    font-family: "Cinzel", serif;
    font-size: 12px;
    text-shadow: 0 1px 0 rgba(0,0,0,.7);
}

.ticket-detail-right {
    text-align: right;
}

.ticket-detail-right strong {
    color: #ffd966;
    text-shadow:
        0 1px 0 rgba(0,0,0,.7),
        0 0 14px rgba(255,200,60,.4);
}

.ticket-barcode {
    height: 87px;
    margin-top: 20px;
    border-radius: 6px;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 3px 8px rgba(0,0,0,.9) inset,
        0 -1px 0 rgba(255,255,255,.05) inset;
}

.barcode-lines {
    height: 39px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.barcode-lines span {
    display: block;
    width: 3px;
    height: 37px;
    background: #e8d492;
    box-shadow: 0 0 8px rgba(232,212,146,.35);
}

.barcode-lines span:nth-child(2n) {
    width: 5px;
}

.barcode-lines span:nth-child(3n) {
    width: 2px;
}

.barcode-lines span:nth-child(5n) {
    width: 1px;
}

.ticket-barcode p {
    margin-top: 8px;
    color: #948b7d;
    font-family: "Cinzel", serif;
    font-size: 7px;
    letter-spacing: 2.5px;
}

/* =========================================
   JACKPOT SECTION
========================================= */

.jackpot-section {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 0;
    text-align: center;
    perspective: 1400px;
}


.jackpot-box {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 58px 40px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 18px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 35%),
        radial-gradient(
            ellipse 420px 210px at 50% 48%,
            rgba(190, 120, 25, 0.22),
            transparent 70%
        ),
        linear-gradient(180deg, #333333 0%, #262626 100%);

    border: 1px solid #424242;

    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 10px 25px rgba(0, 0, 0, 0.65),
        0 30px 70px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255,200,60,.06),
        0 0 100px rgba(255,180,40,.1);

    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

.jackpot-box:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 16px 34px rgba(0, 0, 0, 0.7),
        0 42px 90px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255,200,60,.12),
        0 0 130px rgba(255,180,40,.18);
}

.jackpot-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255,217,102,.4),
        transparent 30%,
        transparent 70%,
        rgba(255,217,102,.25)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .8;
}

.jackpot-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 190px;
    left: 50%;
    top: 85px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(255, 200, 60, 0.2),
            transparent 70%
        );
    filter: blur(20px);
    pointer-events: none;
}


.hot-pill {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 18px;
    color: #ffc4c8;

    background:
        linear-gradient(180deg, #8a2c38 0%, #4a151b 100%);

    border: 1px solid #b03040;

    box-shadow:
        0 1px 0 rgba(255,255,255,.18) inset,
        0 -2px 0 rgba(0,0,0,.55) inset,
        0 0 26px rgba(200, 40, 55, 0.55),
        0 4px 12px rgba(0,0,0,.55);

    font-family: "Noto Serif Devanagari", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(0,0,0,.6);

    animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {
    0%, 100% { box-shadow:
        0 1px 0 rgba(255,255,255,.18) inset,
        0 -2px 0 rgba(0,0,0,.55) inset,
        0 0 26px rgba(200, 40, 55, 0.55),
        0 4px 12px rgba(0,0,0,.55);
    }
    50% { box-shadow:
        0 1px 0 rgba(255,255,255,.22) inset,
        0 -2px 0 rgba(0,0,0,.55) inset,
        0 0 40px rgba(200, 40, 55, 0.8),
        0 4px 12px rgba(0,0,0,.55);
    }
}


.jackpot-box h2 {
    position: relative;
    z-index: 2;
    margin-top: 31px;
    margin-bottom: 0;
    font-family: "Cinzel", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -2px;

    background:
        linear-gradient(
            180deg,
            #fff9d6 0%,
            #ffd966 48%,
            #e0a800 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 2px 0 rgba(0,0,0,.7))
        drop-shadow(0 4px 12px rgba(0,0,0,.5))
        drop-shadow(0 8px 28px rgba(255,180,40,.35));
}


.jackpot-box h3 {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    margin-bottom: 0;
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #f5e6d3;
    letter-spacing: -0.5px;
    text-shadow:
        0 1px 0 rgba(0,0,0,.8),
        0 0 20px rgba(255,200,120,.2);
}


.jackpot-box p {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 18px auto 0;
    color: #c9c0b5;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    text-align: center;
}


.warning-pill {
    position: relative;
    width: fit-content;
    height: 44px;
    margin: 28px auto 0;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 22px;

    background:
        linear-gradient(180deg, #8a2028 0%, #4a1018 100%);

    border: 1px solid #b03040;
    color: #ffc4c8;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    box-shadow:
        0 1px 0 rgba(255,255,255,.16) inset,
        0 -2px 0 rgba(0,0,0,.6) inset,
        0 0 32px rgba(200, 35, 50, 0.65),
        0 6px 14px rgba(0,0,0,.55);

    text-shadow: 0 1px 0 rgba(0,0,0,.55);
}


.warning-pill::first-letter {
    color: #ffb0b8;
}


.live-draw {
    width: 735px;
    max-width: calc(100% - 30px);
    height: 58px;
    margin: 18px auto 0;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    background:
        linear-gradient(180deg, #4a4742 0%, #2e2c29 100%);

    border: 1px solid #55524e;
    color: #f5e8cf;
    font-family: "Cinzel", serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .2px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 8px 25px rgba(0, 0, 0, 0.45),
        0 2px 6px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,200,60,.05);

    text-shadow: 0 1px 0 rgba(0,0,0,.7);
}


.live-draw:first-letter {
    font-size: 18px;
}


/* =========================================
   COUNTDOWN SECTION
========================================= */

.countdown-section {
    width: 100%;
    padding: 10px 20px 10px;
    text-align: center;
    position: relative;
    background:
        radial-gradient(
            ellipse 520px 300px at 18% 50%,
            rgba(150, 100, 35, 0.14),
            transparent 72%
        ),
        #0d0d0d;
}


.countdown-section .section-eyebrow {
    margin: 0;
    color: #f0c45e;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
}


.countdown-section h2 {
    margin: 8px 0 0;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    text-shadow:
        0 2px 0 rgba(0,0,0,.55),
        0 4px 18px rgba(0, 0, 0, 0.55);
}


.countdown-section .gold-line {
    width: 58px;
    height: 2px;
    margin: 9px auto 28px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #e8c45a 25%,
            #ffd966 50%,
            #e8c45a 75%,
            transparent
        );
    box-shadow:
        0 0 14px rgba(255, 217, 102, 0.45),
        0 1px 0 rgba(0,0,0,.65);
}


.countdown {
    width: 668px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    perspective: 1200px;
}


.count-box {
    position: relative;
    width: 100%;
    height: 112px;
    min-height: 112px;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.07), transparent 50%),
        linear-gradient(
            145deg,
            #363636 0%,
            #262626 100%
        );

    border: 1px solid #484848;

    box-shadow:
        0 1px 0 rgba(255,255,255,.09) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 8px 18px rgba(0, 0, 0, 0.55),
        0 20px 45px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255,200,60,.04);

    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}

.count-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    padding: 1px;
    background: linear-gradient(
        160deg,
        rgba(255,217,102,.35),
        transparent 40%,
        transparent 60%,
        rgba(255,217,102,.2)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.count-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 14px 28px rgba(0, 0, 0, 0.6),
        0 32px 65px rgba(0, 0, 0, 0.65),
        0 0 50px rgba(255,200,60,.15);
}

.count-box:hover::after {
    opacity: 1;
}


.count-box::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 40px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(255, 217, 102, 0.18),
            transparent 70%
        );
    pointer-events: none;
}


.count-box span {
    position: relative;
    z-index: 1;
    font-family: "Cinzel", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #ffd966;
    letter-spacing: -1px;
    text-shadow:
        0 2px 0 rgba(0,0,0,.75),
        0 4px 10px rgba(0,0,0,.5),
        0 0 28px rgba(255, 217, 102, 0.45);
}


.count-box small {
    position: relative;
    z-index: 1;
    margin-top: 11px;
    color: #d4c9bb;
    font-family: "Cinzel", serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0,0,0,.65);
}


.count-box.seconds-box span {
    color: #ffb3b8;
    text-shadow:
        0 2px 0 rgba(0,0,0,.75),
        0 4px 10px rgba(0,0,0,.5),
        0 0 28px rgba(255, 150, 160, 0.45);
}

.count-box.seconds-box small {
    color: #e8aeb2;
}


@media (min-width: 1100px) {
    .countdown-section {
        padding-top: 55px;
        padding-bottom: 70px;
    }
    .countdown-section h2 { font-size: 40px; }
    .countdown { width: 668px; gap: 18px; }
    .count-box { height: 112px; }
}


@media (max-width: 850px) {
    .countdown-section { padding: 20px 20px 20px; }
    .countdown-section h2 { font-size: 34px; }
    .countdown { width: 620px; gap: 14px; }
    .count-box { height: 100px; min-height: 100px; }
    .count-box span { font-size: 41px; }
}


@media (max-width: 600px) {
    .countdown-section {
        width: 100%;
        padding: 20px 15px 20px;
        overflow: hidden;
    }
    .countdown-section .section-eyebrow { font-size: 7px; letter-spacing: 2px; }
    .countdown-section h2 {
        margin-top: 7px;
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -.5px;
        white-space: nowrap;
    }
    .countdown-section .gold-line {
        width: 42px;
        height: 2px;
        margin-top: 8px;
        margin-bottom: 23px;
    }
    .countdown {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 9px;
        overflow: visible;
    }
    .count-box {
        width: 100%;
        min-width: 0;
        height: 88px;
        min-height: 88px;
        border-radius: 11px;
        padding: 8px 3px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .count-box span { font-size: 31px; line-height: 1; letter-spacing: -1px; }
    .count-box small {
        margin-top: 8px;
        font-size: 15px;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }
}


@media (max-width: 380px) {
    .countdown-section { padding-left: 8px; padding-right: 8px; }
    .countdown-section h2 { font-size: 23px; }
    .countdown { gap: 7px; }
    .count-box { height: 82px; min-height: 82px; padding-left: 2px; padding-right: 2px; }
    .count-box span { font-size: 28px; }
    .count-box small { margin-top: 7px; font-size: 5.5px; letter-spacing: 1px; }
}


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

.prizes-section {
    width: 100%;
    position: relative;
    padding: 20px 40px 20px;
    background: #0d0d0d;
    text-align: center;
    overflow: hidden;
}

.prizes-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 350px;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(160, 105, 35, 0.14), transparent 70%);
    pointer-events: none;
}

.prizes-section .section-eyebrow {
    position: relative;
    margin: 0;
    color: #f0c45e;
    font-family: "Cinzel", serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
    text-transform: uppercase;
}

.prizes-section h2 {
    position: relative;
    margin: 7px 0 0;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 6px 22px rgba(0,0,0,.5);
}

.prizes-section h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 12px auto 42px;
    background: linear-gradient(90deg, transparent, #e8c45a, #ffd966, #e8c45a, transparent);
    box-shadow: 0 0 14px rgba(255, 217, 102, .45), 0 1px 0 rgba(0,0,0,.65);
}

.prizes-section > .gold-line { display: none; }

.prizes-grid {
    position: relative;
    z-index: 2;
    width: min(1000px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    perspective: 1400px;
}

.prize-card {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 300px;
    padding: 18px 18px 19px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 40%),
        linear-gradient(145deg, #363636 0%, #282828 55%, #1f1f1f 100%);

    border: 1px solid #424242;
    border-radius: 12px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 10px 22px rgba(0, 0, 0, .6),
        0 22px 50px rgba(0, 0, 0, .6),
        0 0 0 1px rgba(255,200,60,.04);

    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .3s ease;
    transform-style: preserve-3d;
}

.prize-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd966;
    box-shadow: 0 0 16px rgba(255,217,102,.8), 0 0 32px rgba(255,217,102,.4);
}

.prize-card:nth-child(2)::before { background: #e0ddd8; box-shadow: 0 0 16px rgba(224,221,216,.7), 0 0 32px rgba(224,221,216,.35); }
.prize-card:nth-child(3)::before { background: #e8a880; box-shadow: 0 0 16px rgba(232,168,128,.7), 0 0 32px rgba(232,168,128,.35); }

.prize-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        160deg,
        rgba(255,217,102,.5),
        transparent 40%,
        transparent 60%,
        rgba(255,217,102,.3)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}

.prize-card:nth-child(2)::after {
    background: linear-gradient(160deg, rgba(224,221,216,.5), transparent 40%, transparent 60%, rgba(224,221,216,.3));
}
.prize-card:nth-child(3)::after {
    background: linear-gradient(160deg, rgba(232,168,128,.5), transparent 40%, transparent 60%, rgba(232,168,128,.3));
}

.prize-badge,
.prize-label {
    height: 22px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #574826 0%, #3d3119 100%);
    color: #f5d77a;
    font-family: "Cinzel", serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .35px;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -1px 0 rgba(0,0,0,.55) inset,
        0 3px 8px rgba(0,0,0,.45),
        0 0 10px rgba(255,200,60,.15);

    text-shadow: 0 1px 0 rgba(0,0,0,.6);
}

.prize-card:nth-child(2) .prize-badge,
.prize-card:nth-child(2) .prize-label { background: linear-gradient(180deg, #4a4d54 0%, #343740 100%); color: #d0d8e8; }
.prize-card:nth-child(3) .prize-badge,
.prize-card:nth-child(3) .prize-label { background: linear-gradient(180deg, #5d4536 0%, #42301f 100%); color: #f0b590; }

.prize-icon,
.trophy {
    width: 56px;
    height: 56px;
    margin-top: 14px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #454545 0%, #2b2b2b 100%);
    color: #ffd966;
    font-size: 22px;
    flex-shrink: 0;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 6px 14px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,200,60,.1);

    text-shadow: 0 0 18px currentColor, 0 0 36px currentColor;
}

.prize-card:nth-child(2) .prize-icon,
.prize-card:nth-child(2) .trophy { color: #f0eeea; }
.prize-card:nth-child(3) .prize-icon,
.prize-card:nth-child(3) .trophy { color: #f0b590; }

.prize-amount,
.prize-card h3 {
    margin-top: 18px;
    font-family: "Cinzel", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #ffd966;
    white-space: nowrap;
    text-shadow:
        0 2px 0 rgba(0,0,0,.75),
        0 4px 10px rgba(0,0,0,.5),
        0 0 28px rgba(255,217,102,.35);
}

.prize-card:nth-child(2) .prize-amount,
.prize-card:nth-child(2) h3 { color: #f0eeea; text-shadow: 0 2px 0 rgba(0,0,0,.75), 0 4px 10px rgba(0,0,0,.5), 0 0 28px rgba(240,238,234,.25); }
.prize-card:nth-child(3) .prize-amount,
.prize-card:nth-child(3) h3 { color: #f5d0b8; text-shadow: 0 2px 0 rgba(0,0,0,.75), 0 4px 10px rgba(0,0,0,.5), 0 0 28px rgba(245,208,184,.25); }

.prize-description,
.prize-card p {
    width: 100%;
    max-width: 230px;
    margin: 11px auto 0;
    color: #c4bbb0;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
}

.prize-tier {
    margin-top: 5px;
    padding-top: 15px;
    color: #f0c45e;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .45px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,200,60,.4);
}

.prize-card:nth-child(2) .prize-tier { color: #d8d6d2; }
.prize-card:nth-child(3) .prize-tier { color: #f0b590; }

.prize-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 18px 36px rgba(0, 0, 0, .65),
        0 42px 85px rgba(0, 0, 0, .7),
        0 0 0 1px rgba(255,200,60,.15),
        0 0 80px rgba(255,200,60,.15);
}

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

.prize-card:nth-child(1):hover { border-color: #a8863a; }
.prize-card:nth-child(2):hover { border-color: #7a7a7a; }
.prize-card:nth-child(3):hover { border-color: #a87658; }


/* =========================================================
   FEATURES SECTION
========================================================= */

.features-section {
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    padding: 10px 30px 20px;
    text-align: center;
    background:
        radial-gradient(
            ellipse 650px 350px at 70% 45%,
            rgba(140, 40, 65, 0.14),
            transparent 72%
        ),
        #0d0d0d;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 400px;
    right: -160px;
    top: 80px;
    background: radial-gradient(ellipse, rgba(140, 45, 65, 0.12), transparent 70%);
    pointer-events: none;
}

.features-section .section-eyebrow {
    position: relative;
    margin: 0;
    color: #f0c45e;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.features-section h2 {
    position: relative;
    margin: 8px 0 0;
    padding: 12px 0;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 6px 22px rgba(0,0,0,.5);
}

.features-section h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent, #e8c45a, #ffd966, #e8c45a, transparent);
    box-shadow: 0 0 14px rgba(255, 217, 102, .45), 0 1px 0 rgba(0,0,0,.65);
}

.features-section h2::before {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin: 0 auto 12px;
    background: linear-gradient(90deg, transparent, #e8c45a, #ffd966, #e8c45a, transparent);
    box-shadow: 0 0 14px rgba(255, 217, 102, .45), 0 1px 0 rgba(0,0,0,.65);
}

.features-section > .gold-line { display: none; }

.features-grid {
    position: relative;
    z-index: 2;
    width: min(930px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    perspective: 1400px;
}

.features-section .section-eyebrow,
.features-section h2 { text-align: center; }

.feature-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 124px;
    padding: 24px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.06), transparent 50%),
        linear-gradient(145deg, #363636 0%, #282828 100%);

    border: 1px solid #424242;
    border-radius: 12px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 8px 18px rgba(0, 0, 0, .5),
        0 18px 40px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255,200,60,.04);

    transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        160deg,
        rgba(255,217,102,.4),
        transparent 40%,
        transparent 60%,
        rgba(255,217,102,.25)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(180deg, #4a4a4a 0%, #2e2e2e 100%);
    color: #ffd966;
    font-size: 22px;
    line-height: 1;

    box-shadow:
        0 1px 0 rgba(255, 255, 255, .12) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 5px 12px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,200,60,.1);

    text-shadow: 0 0 14px currentColor;
}

.feature-card:nth-child(1) .feature-icon { color: #ffc84d; }
.feature-card:nth-child(2) .feature-icon { color: #40d0f5; }
.feature-card:nth-child(3) .feature-icon { color: #ffb04d; }
.feature-card:nth-child(4) .feature-icon { color: #ff6b7a; }

.feature-card h3,
.feature-content h3 {
    min-width: 0;
    margin: 0;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.2px;
    text-shadow: 0 1px 0 rgba(0,0,0,.6);
}

.feature-card p,
.feature-content p {
    max-width: 390px;
    margin: 5px 0 0;
    color: #c4bbb0;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.55;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #5a5244;
    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 14px 28px rgba(0, 0, 0, .6),
        0 28px 60px rgba(0, 0, 0, .65),
        0 0 0 1px rgba(255,200,60,.1),
        0 0 50px rgba(255,200,60,.1);
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
    width: 100%;
    position: relative;
    padding: 20px 30px 20px;
    background:
        radial-gradient(
            ellipse 600px 300px at 50% 45%,
            rgba(150, 100, 30, 0.12),
            transparent 72%
        ),
        #0d0d0d;
    text-align: center;
    overflow: hidden;
}

.process-section .section-eyebrow {
    margin: 0;
    color: #f0c45e;
    font-family: "Cinzel", serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.process-section h2 {
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 6px 22px rgba(0,0,0,.5);
}

.process-section h2 .process-heading-icon {
    color: #ff4d9e;
    font-size: 35px;
    line-height: 1;
    filter: drop-shadow(0 0 14px rgba(255, 77, 158, .55));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.process-section h2::after {
    content: "";
    position: absolute;
    margin-top: 93px;
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8c45a, #ffd966, #e8c45a, transparent);
    box-shadow: 0 0 14px rgba(255,217,102,.45);
}

.process-section > .gold-line { display: none; }

.process-wrapper {
    width: min(760px, 100%);
    margin: 62px auto 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 55px;
}

.process-line {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 27px;
    height: 2px;
    background: linear-gradient(90deg, #8a7038, #c9972e, #8a7038);
    z-index: 0;
    box-shadow: 0 1px 0 rgba(0,0,0,.7), 0 0 12px rgba(200,150,60,.3);
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.step-number {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(180deg, rgba(255,255,255,.1), transparent 50%),
        linear-gradient(145deg, #3e3a30, #262420);

    border: 1px solid #a8863a;
    color: #ffd966;
    font-family: "Cinzel", serif;
    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 0 28px rgba(255, 200, 60, .3),
        0 8px 18px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,200,60,.08);

    text-shadow: 0 0 14px rgba(255,200,60,.6);
    transition: transform .3s ease, box-shadow .3s ease;
}

.step-number::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 1px solid rgba(255,217,102,.15);
    pointer-events: none;
}

.process-step:hover .step-number {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 1px 0 rgba(255,255,255,.15) inset,
        0 -2px 0 rgba(0,0,0,.7) inset,
        0 0 40px rgba(255, 200, 60, .5),
        0 12px 26px rgba(0,0,0,.6),
        0 0 0 1px rgba(255,200,60,.15);
}

.step-label,
.process-step h3 {
    margin: 17px 0 0;
    color: #f0d88a;
    font-family: "Cinzel", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .2px;
    text-shadow: 0 1px 0 rgba(0,0,0,.7), 0 0 14px rgba(255,200,60,.2);
}

.process-step p {
    width: 100%;
    max-width: 225px;
    margin: 12px auto 0;
    color: #c4bbb0;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 10px;
    line-height: 1.65;
    text-align: center;
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.booking-section {
    width: 100%;
    padding: 20px 34px 20px;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.booking-box {
    position: relative;
    width: min(1275px, 100%);
    min-height: 380px;
    margin: 0 auto;
    padding: 55px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;
    border-radius: 20px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%),
        linear-gradient(180deg, #454036 0%, #2e2e2e 22%, #262626 55%, #1f1f1f 100%);

    border: 1px solid #4a4842;

    box-shadow:
        0 1px 0 rgba(255,255,255,.1) inset,
        0 -3px 0 rgba(0,0,0,.75) inset,
        0 15px 35px rgba(0, 0, 0, .65),
        0 35px 80px rgba(0, 0, 0, .7),
        0 0 0 1px rgba(255,200,60,.05),
        0 0 120px rgba(255,180,40,.08);
}

.booking-box::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 180px;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255, 217, 102, .16), transparent 70%);
    pointer-events: none;
}

.booking-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255,217,102,.4),
        transparent 30%,
        transparent 70%,
        rgba(255,217,102,.3)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .85;
}

.booking-box h2 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #f5f0ea;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 51px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    text-align: center;
    text-shadow:
        0 2px 0 rgba(0,0,0,.7),
        0 4px 10px rgba(0,0,0,.55),
        0 8px 28px rgba(0,0,0,.45);
}

.booking-box p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 23px auto 0;
    color: #d4cbbf;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

/* =========================================
   BOOKING BUTTON — SHIMMER + PULSE
========================================= */

.booking-btn {
    position: relative;
    z-index: 2;
    width: 276px;
    height: 57px;
    margin-top: 25px;
    border: none;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;

    background: linear-gradient(180deg, #fff5c8 0%, #ffd966 45%, #f0b900 100%);
    color: #2b2008;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 1px 0 rgba(255,255,255,.85) inset,
        0 -3px 0 rgba(150,90,0,.5) inset,
        0 8px 20px rgba(0,0,0,.55),
        0 14px 38px rgba(255, 200, 50, .42),
        0 0 0 1px rgba(255,220,120,.15);

    transition: transform .2s ease;
    animation: pulseGold 2.4s ease-in-out infinite;
}

.booking-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.booking-btn:hover {
    transform: translateY(-3px);
}

.booking-btn:active {
    transform: translateY(1px);
}

.booking-btn span {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.bottom-message {
    width: 100%;
    min-height: 215px;
    padding: 42px 25px 48px;
    position: relative;
    background: #0d0d0d;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #2a2a2a;
}

.bottom-message::before {
    content: "";
    position: absolute;
    top: 43px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #4a4538 15%, #4a4538 85%, transparent 100%);
    z-index: 0;
    box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 0 12px rgba(255,200,60,.15);
}

.message-line { display: none; }

.bottom-message p {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto;
    padding: 0 35px;
    color: #f0d07a;
    background: #0d0d0d;
    font-family: "Noto Serif Devanagari", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    text-shadow: 0 0 18px rgba(255,200,60,.3), 0 1px 0 rgba(0,0,0,.6);
}

.bottom-ticket-btn {
    position: relative;
    width: 372px;
    height: 57px;
    max-width: 100%;
    margin: 48px auto 0;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 11px;
    border: 1px solid #7a6840;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 50%),
        linear-gradient(180deg, #3e3b36 0%, #2e2d2b 100%);

    color: #f5e6c8;
    font-family: "Cinzel", serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;

    box-shadow:
        0 1px 0 rgba(255,255,255,.12) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 8px 18px rgba(0, 0, 0, .55),
        0 16px 38px rgba(0, 0, 0, .6),
        0 0 0 1px rgba(255,200,60,.05);

    text-shadow: 0 1px 0 rgba(0,0,0,.7), 0 0 14px rgba(255,200,60,.2);

    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.bottom-ticket-btn:hover {
    transform: translateY(-3px);
    border-color: #c9972e;
    box-shadow:
        0 1px 0 rgba(255,255,255,.15) inset,
        0 -2px 0 rgba(0,0,0,.75) inset,
        0 12px 24px rgba(0, 0, 0, .6),
        0 24px 50px rgba(0, 0, 0, .65),
        0 0 0 1px rgba(255,200,60,.15),
        0 0 60px rgba(255,200,60,.15);
}


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

.faq-section {
    width: min(1000px, calc(100% - 70px));
    margin: auto;
    padding: 20px 0 20px;
    text-align: center;
}

.faq-container { text-align: left; }

.faq-item {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(255,255,255,.05), transparent 50%),
        #262626;

    border: 1px solid #424242;
    border-radius: 10px;

    box-shadow:
        0 1px 0 rgba(255,255,255,.06) inset,
        0 -2px 0 rgba(0,0,0,.55) inset,
        0 6px 14px rgba(0,0,0,.45),
        0 14px 30px rgba(0,0,0,.45);

    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item:hover {
    border-color: #55524a;
    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 -2px 0 rgba(0,0,0,.55) inset,
        0 8px 18px rgba(0,0,0,.5),
        0 18px 38px rgba(0,0,0,.5),
        0 0 40px rgba(255,200,60,.06);
}

.faq-question {
    width: 100%;
    padding: 17px;
    border: 0;
    background: transparent;
    color: #f0eae2;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    text-shadow: 0 1px 0 rgba(0,0,0,.6);
    cursor: pointer;
    transition: color .25s ease;
}

.faq-question:hover {
    color: #ffd966;
}

.faq-question span {
    color: #ffd966;
    font-size: 20px;
    transition: transform .3s ease;
    text-shadow: 0 0 14px rgba(255,200,60,.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 17px;
    color: #b8afa5;
    font-size: 10px;
    line-height: 1.7;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 100px;
    padding-bottom: 17px;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}


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

footer {
    width: 100%;
    min-height: 84px;
    padding: 0 55px;
    display: flex;
    align-items: center;

    background: linear-gradient(180deg, #131313 0%, #0d0d0d 100%);
    border-top: 1px solid #2a2a2a;

    box-shadow:
        0 -1px 0 rgba(255,255,255,.04) inset,
        0 -10px 28px rgba(0,0,0,.55);

    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,200,60,.25),
        transparent
    );
}

.footer-container {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-logo {
    justify-self: start;
    color: #f5e6b8;
    font-family: "Cinzel", serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
    text-shadow:
        0 1px 0 rgba(0,0,0,.8),
        0 0 14px rgba(255, 217, 102, .2);
}

.footer-logo::first-letter { color: #ffd966; }

.footer-container p {
    margin: 0;
    color: #b8afa5;
    font-family: "Cinzel", serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.powered {
    justify-self: end;
    color: #b8afa5;
    font-family: "Cinzel", serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.powered::first-letter { color: #ffd966; }


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

@media (max-width: 1200px) {
    .nav-container { width: calc(100% - 60px); }
    .nav-links { gap: 28px; margin-right: 35px; }
    .hero-container {
        width: calc(100% - 80px);
        grid-template-columns: minmax(0, 1fr) 360px;
        column-gap: 45px;
    }
    .hero-ticket-area,
    .festival-ticket { width: 360px; }
    .hero-title { font-size: 58px; }
}

@media (max-width: 1000px) {
    .nav-links { gap: 20px; margin-right: 22px; }
    .nav-links a { font-size: 9px; }
    .nav-book-btn { min-width: 145px; }
    .hero { padding: 20px 0 20px; }
    .hero-container {
        width: calc(100% - 50px);
        grid-template-columns: minmax(0, 1fr) 350px;
        column-gap: 30px;
    }
    .hero-ticket-area,
    .festival-ticket { width: 350px; }
    .hero-title { font-size: 51px; letter-spacing: 0; }
    .hero-description { font-size: 13px; }
}

@media (max-width: 1099px) {
    .jackpot-section { width: calc(100% - 50px); }
    .jackpot-box { height: auto; min-height: 350px; padding: 55px 30px 42px; }
    .jackpot-box h2 { font-size: 58px; }
    .jackpot-box h3 { font-size: 26px; }
}

@media (max-width: 850px) {
    .hero { padding: 45px 0 20px; }
    .hero-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    .hero-content { max-width: 700px; margin: 0 auto; }
    .hero-event-pill { margin: 0 auto; }
    .hero-top-text { font-size: 13px; }
    .hero-title {
        font-size: clamp(40px, 6.5vw, 46px);
        line-height: 1.12;
        padding: 16px 4px 12px;
    }
    .hero-description { margin-left: auto; margin-right: auto; font-size: 12px; }
    .hero-benefits { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-ticket-area { width: 100%; justify-content: center; }
    .festival-ticket { width: min(398px, 100%); }
    .jackpot-section,
    .prizes-section,
    .features-section,
    .process-section,
    .booking-section { width: calc(100% - 40px); }
}

@media (max-width: 760px) {
    .navbar { height: 68px; padding: 0; }
    .nav-container { width: calc(100% - 30px); }
    .nav-links { display: none !important; }
    .nav-actions, .menu-btn { display: none !important; }
    .logo { font-size: 14px; letter-spacing: 1px; }
    .logo-star { font-size: 13px; }

    .mobile-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 128px;
        height: 43px;
        border: none;
        border-radius: 24px;
        background: linear-gradient(180deg, #fff5c8 0%, #ffd966 48%, #f0b900 100%);
        color: #1a1408;
        font-family: "Noto Serif Devanagari", serif;
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
        cursor: pointer;
        box-shadow:
            0 1px 0 rgba(255,255,255,.75) inset,
            0 -2px 0 rgba(150,90,0,.45) inset,
            0 5px 22px rgba(255, 200, 50, .5),
            0 4px 10px rgba(0,0,0,.45);
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .mobile-book-btn:hover {
        transform: translateY(-1px);
        box-shadow:
            0 1px 0 rgba(255,255,255,.85) inset,
            0 -2px 0 rgba(150,90,0,.45) inset,
            0 8px 28px rgba(255, 200, 50, .65),
            0 6px 14px rgba(0,0,0,.5);
    }
    .mobile-book-btn span { color: #ff4d9e; font-size: 12px; line-height: 1; }

    .hero-container { width: calc(100% - 30px); }
    .hero-title {
        font-size: clamp(34px, 10.5vw, 42px);
        line-height: 1.14;
        padding: 12px 4px 8px;
    }
    .hero-description { font-size: 11px; }
    .hero-benefits { gap: 10px 18px; }
    .hero-benefits .benefit-dot { display: none; }
    .hero-cta { flex-direction: column; gap: 17px; }
    .hero-book-btn { width: 215px; }
    .hero-ticket-area { width: 100%; }
    .festival-ticket { width: min(398px, 100%); }

    .jackpot-section,
    .prizes-section,
    .features-section,
    .process-section,
    .booking-section { width: calc(100% - 30px); }

    .jackpot-box h2 { font-size: 40px; }
    .jackpot-box h3 { font-size: 19px; }
    .countdown-section h2,
    .prizes-section h2,
    .features-section h2,
    .process-section h2,
    .faq-section h2 { font-size: 27px; }

    .prizes-grid { grid-template-columns: 1fr; max-width: 390px; margin: auto; }
    .features-grid { grid-template-columns: 1fr; }
    .process-wrapper { grid-template-columns: 1fr; gap: 38px; }
    .process-line { left: 50%; right: auto; top: 10%; height: 80%; width: 1px; }
    .process-step { background: #0d0d0d; }
    .booking-box h2 { font-size: 27px; }

    .footer-container { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
    .footer-logo, .footer-container p, .powered { text-align: center; }
}

@media (max-width: 550px) {
    .hero { padding-top: 35px; }
    .hero-title {
        font-size: clamp(31px, 10vw, 36px);
        line-height: 1.16;
        padding: 10px 4px 7px;
    }
    .hero-top-text { font-size: 11px; }
    .hero-description { font-size: 10px; }
    .hero-benefits span { font-size: 12px; }
    .festival-ticket {
        width: 100%;
        max-width: 398px;
        min-width: 0;
        min-height: 480px;
        padding: 14px;
    }
    .ticket-header, .ticket-details, .ticket-photo-info { min-width: 0; }
    .ticket-brand { min-width: 0; white-space: nowrap; }
    .ticket-photo-info span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ticket-photo-info b { flex-shrink: 0; white-space: nowrap; }
    .ticket-detail { min-width: 0; }
    .ticket-detail strong { white-space: nowrap; font-size: 10px; }
    .ticket-barcode p {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        letter-spacing: 1.5px;
    }
    .ticket-brand { font-size: 15px; }
    .ticket-photo { height: 165px; }
    .ticket-photo-info span { font-size: 9px; }
    .ticket-photo-info strong { font-size: 16px; }
    .ticket-detail strong { font-size: 11px; }
    .ticket-barcode { height: 80px; }
}

@media (min-width: 1100px) {
    .jackpot-section { width: 1070px; }
    .jackpot-box { height: 367px; }
    .jackpot-box h2 { font-size: 64px; }
    .jackpot-box h3 { font-size: 29px; }
}

@media (max-width: 600px) {
    .jackpot-section { width: calc(100% - 30px); }
    .jackpot-box {
        min-height: 320px;
        height: auto;
        padding: 45px 18px 38px;
        border-radius: 14px;
    }
    .hot-pill { height: 30px; padding: 0 14px; font-size: 12px; }
    .jackpot-box h2 { margin-top: 27px; font-size: 42px; letter-spacing: -1px; }
    .jackpot-box h3 { margin-top: 13px; font-size: 20px; }
    .jackpot-box p { max-width: 330px; margin-top: 15px; font-size: 9px; line-height: 1.7; }
    .warning-pill { margin-top: 20px; font-size: 15px; }
    .live-draw { width: 100%; font-size: 10px; }
}

@media (min-width: 1400px) {
    .prizes-section { padding-top: 80px; padding-bottom: 100px; }
    .prizes-grid {
        width: 1000px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    .prize-card { height: 310px; padding-top: 19px; }
    .prize-amount, .prize-card h3 { font-size: 44px; }
}

@media (max-width: 1000px) {
    .prizes-section { padding: 40px 30px 80px; }
    .prizes-grid {
        width: 100%;
        max-width: 760px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .prize-card { height: 290px; }
}

@media (max-width: 700px) {
    .prizes-section { padding: 55px 20px 70px; }
    .prizes-section h2 { font-size: 32px; }
    .prizes-grid {
        width: 100%;
        max-width: 430px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .prize-card { width: 100%; height: 285px; min-height: 285px; }
}

@media (max-width: 480px) {
    .prizes-section { width: 100%; padding: 20px 15px 10px; }
    .prizes-section .section-eyebrow { font-size: 8px; letter-spacing: 2.2px; }
    .prizes-section h2 { font-size: 27px; letter-spacing: -.5px; }
    .prizes-section h2::after { width: 45px; margin-top: 10px; margin-bottom: 30px; }
    .prizes-grid { width: 100%; max-width: 100%; grid-template-columns: 1fr; gap: 15px; }
    .prize-card {
        width: 100%;
        height: 275px;
        min-height: 275px;
        padding: 17px 16px 18px;
        border-radius: 12px;
    }
    .prize-icon, .trophy { width: 50px; height: 50px; }
    .prize-amount, .prize-card h3 { font-size: 40px; }
    .prize-description, .prize-card p { max-width: 280px; font-size: 9px; }
}

@media (max-width: 360px) {
    .prizes-section { padding-left: 12px; padding-right: 12px; }
    .prizes-section h2 { font-size: 24px; }
    .prize-card { height: 265px; min-height: 265px; }
    .prize-amount, .prize-card h3 { font-size: 36px; }
}

@media (max-width: 900px) {
    .features-section { width: 100%; padding: 60px 25px 70px; }
    .features-section h2 { font-size: 36px; }
    .features-grid { width: 100%; max-width: 760px; gap: 16px; }
    .feature-card { min-height: 120px; padding: 21px; }
    .feature-card h3, .feature-content h3 { font-size: 17px; }
    .feature-card p, .feature-content p { font-size: 9px; }
}

@media (max-width: 650px) {
    .features-section { width: 100%; padding: 20px 16px 20px; }
    .features-section .section-eyebrow { font-size: 8px; letter-spacing: 2.2px; }
    .features-section h2 {
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -.5px;
    }
    .features-section h2::after { width: 45px; margin-top: 9px; margin-bottom: 27px; }
    .features-grid {
        width: 100%;
        max-width: 430px;
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .feature-card {
        width: 100%;
        min-height: 105px;
        padding: 18px;
        gap: 15px;
        border-radius: 12px;
    }
    .feature-icon { width: 50px; height: 50px; min-width: 50px; font-size: 19px; }
    .feature-card h3, .feature-content h3 { font-size: 16px; line-height: 1.3; }
    .feature-card p, .feature-content p { margin-top: 4px; font-size: 9px; line-height: 1.55; }
}

@media (max-width: 380px) {
    .features-section { width: 100%; padding-left: 12px; padding-right: 12px; }
    .features-section h2 { font-size: 25px; }
    .feature-card { padding: 16px; gap: 12px; }
    .feature-icon { width: 46px; height: 46px; min-width: 46px; }
    .feature-card h3, .feature-content h3 { font-size: 14px; }
    .feature-card p, .feature-content p { font-size: 8px; }
}

@media (min-width: 1100px) {
    .booking-section { padding: 20px 34px 20px; }
    .booking-box {
        width: 1275px;
        min-height: 380px;
        padding: 55px 40px 60px;
    }
    .booking-box h2 { font-size: 51px; }
}

@media (max-width: 1000px) {
    .booking-section { width: 100%; padding: 60px 25px 70px; }
    .booking-box { min-height: 350px; padding: 50px 30px 55px; border-radius: 16px; }
    .booking-box h2 { max-width: 750px; font-size: 43px; }
    .booking-box p { max-width: 650px; font-size: 12px; }
}

@media (max-width: 650px) {
    .booking-section { width: 100%; padding: 20px 15px 20px; }
    .booking-box {
        width: 100%;
        min-height: 330px;
        padding: 42px 18px 45px;
        border-radius: 14px;
    }
    .booking-box h2 {
        max-width: 360px;
        font-size: 32px;
        line-height: 1.22;
        letter-spacing: -.7px;
    }
    .booking-box p { max-width: 340px; margin-top: 19px; font-size: 10px; line-height: 1.7; }
    .booking-btn { width: 220px; height: 50px; margin-top: 22px; font-size: 11px; border-radius: 9px; }
}

@media (max-width: 380px) {
    .booking-section { padding-left: 12px; padding-right: 12px; }
    .booking-box { min-height: 310px; padding: 38px 15px 40px; }
    .booking-box h2 { max-width: 300px; font-size: 27px; }
    .booking-box p { max-width: 285px; font-size: 9px; }
    .booking-btn { width: 205px; height: 48px; }
}

/* =========================================================
   GLOBAL CONTRAST BOOST
========================================================= */

body { color: #fff8ee; }

.section-eyebrow,
.countdown-section .section-eyebrow,
.prizes-section .section-eyebrow,
.features-section .section-eyebrow,
.process-section .section-eyebrow { color: #f0c45e; }

.nav-links a { color: #b8afa5; }
.nav-links a.active, .nav-links a:hover { color: #ffd966; }

.hero-top-text, .hero-description, .feature-card p, .prize-card p, .process-step p, .booking-box p { color: #d4cbbf; }

.hero-benefits span, .remaining-tickets, .ticket-detail small, .ticket-barcode p, .footer-container p, .powered { color: #b8afa5; }

.feature-card, .prize-card, .count-box, .faq-item { border-color: #4a4a4a; }

.feature-card h3, .prize-card h3, .countdown-section h2, .prizes-section h2, .features-section h2, .process-section h2, .booking-box h2, .faq-question { color: #f5f0ea; }


/* =========================================================
   CTA BUTTON BLINK ANIMATION
========================================================= */

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .58; }
}

.nav-book-btn, .mobile-book-btn, .hero-book-btn, .booking-btn, .bottom-ticket-btn, .warning-pill {
    animation: blink 1s infinite;
}


/* =========================================================
   COUNTDOWN MOBILE OVERRIDES
========================================================= */

@media (max-width: 600px) {
    .countdown-section { width: 100%; padding: 20px 10px 20px; overflow: hidden; }
    .countdown-section h2 {
        margin-top: 7px;
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -.5px;
        white-space: nowrap;
    }
    .countdown {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 9px;
    }
    .count-box { min-width: 0; height: 88px; min-height: 88px; padding: 8px 3px; }
    .count-box span { font-size: 31px; }
    .count-box small {
        margin-top: 8px;
        font-size: 6.5px;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .countdown-section { padding-left: 8px; padding-right: 8px; }
    .countdown-section h2 { font-size: 23px; }
    .countdown { gap: 7px; }
    .count-box {
        height: 82px;
        min-height: 82px;
        padding-left: 2px;
        padding-right: 2px;
    }
    .count-box span { font-size: 28px; }
    .count-box small { margin-top: 7px; font-size: 5.5px; letter-spacing: 1px; }
}


/* =========================================================
   BOTTOM MESSAGE RESPONSIVE
========================================================= */

@media (min-width: 1000px) {
    .bottom-message { min-height: 215px; padding-top: 42px; }
    .bottom-ticket-btn { margin-top: 48px; }
}

@media (max-width: 800px) {
    .bottom-message { min-height: 200px; padding: 38px 20px 42px; }
    .bottom-message::before { left: 5%; right: 5%; }
    .bottom-message p { font-size: 15px; padding: 0 25px; }
    .bottom-ticket-btn {
        width: 340px;
        height: 53px;
        margin-top: 43px;
        font-size: 15px;
        letter-spacing: 2.5px;
    }
}

@media (max-width: 600px) {
    .bottom-message { min-height: 100px; padding: 20px 15px 20px; }
    .bottom-message::before { top: 36px; left: 0; right: 0; }
    .bottom-message p { font-size: 13px; padding: 0 16px; }
    .bottom-ticket-btn {
        width: min(340px, 100%);
        height: 51px;
        margin-top: 20px;
        padding: 0 15px;
        font-size: 13px;
        letter-spacing: 2px;
        gap: 9px;
    }
}

@media (max-width: 380px) {
    .bottom-message p { font-size: 11px; padding: 0 10px; }
    .bottom-ticket-btn { height: 48px; font-size: 11px; letter-spacing: 1.5px; }
}


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

@media (min-width: 1200px) {
    footer { min-height: 84px; padding: 0 55px; }
    .footer-container { max-width: 1330px; }
    .footer-logo { font-size: 13px; }
    .footer-container p { font-size: 10px; }
    .powered { font-size: 9px; }
}

@media (max-width: 900px) {
    footer { min-height: 80px; padding: 0 30px; }
    .footer-container { max-width: 100%; grid-template-columns: 1fr 1fr 1fr; }
    .footer-logo { font-size: 11px; letter-spacing: 1.5px; }
    .footer-container p { font-size: 9px; }
    .powered { font-size: 8px; letter-spacing: 1.5px; }
}

@media (max-width: 650px) {
    footer { min-height: auto; padding: 24px 18px; }
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }
    .footer-logo, .powered { justify-self: auto; text-align: center; }
    .footer-logo { font-size: 11px; letter-spacing: 1.5px; }
    .footer-container p { font-size: 8px; white-space: normal; }
    .powered { font-size: 8px; letter-spacing: 1.5px; }
}

@media (max-width: 380px) {
    footer { padding: 22px 14px; }
    .footer-container { gap: 11px; }
    .footer-logo { font-size: 10px; }
    .footer-container p { font-size: 7px; }
    .powered { font-size: 7px; }
}


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

@media (min-width: 1100px) {
    .process-section { padding-top: 72px; padding-bottom: 82px; }
    .process-wrapper { width: 760px; margin-top: 62px; gap: 55px; }
}

@media (max-width: 850px) {
    .process-section { width: 100%; padding: 60px 25px 70px; }
    .process-section h2 { font-size: 37px; }
    .process-section h2 .process-heading-icon { font-size: 30px; }
    .process-wrapper { width: 100%; max-width: 680px; gap: 25px; }
    .process-line { left: 40px; right: 40px; }
    .step-number { width: 54px; height: 54px; }
    .step-label, .process-step h3 { font-size: 15px; }
    .process-step p { font-size: 9px; max-width: 190px; }
}

@media (max-width: 650px) {
    .process-section { width: 100%; padding: 20px 18px 20px; }
    .process-section .section-eyebrow { font-size: 8px; letter-spacing: 2.2px; }
    .process-section h2 { gap: 9px; font-size: 29px; letter-spacing: -.5px; }
    .process-section h2 .process-heading-icon { font-size: 25px; }
    .process-section h2::after { margin-top: 73px; width: 45px; }
    .process-wrapper {
        width: 100%;
        max-width: 390px;
        margin-top: 48px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .process-line {
        left: 50%;
        right: auto;
        top: 25px;
        width: 2px;
        height: calc(100% - 50px);
        transform: translateX(-50%);
        background: linear-gradient(180deg, #8a7038, #c9972e, #8a7038);
    }
    .process-step { background: #0d0d0d; padding: 0 20px; }
    .step-number { width: 52px; height: 52px; z-index: 3; }
    .step-label, .process-step h3 { margin-top: 14px; font-size: 15px; }
    .process-step p { max-width: 280px; margin-top: 8px; font-size: 10px; }
}

@media (max-width: 380px) {
    .process-section { padding-left: 12px; padding-right: 12px; }
    .process-section h2 { font-size: 25px; }
    .process-section h2 .process-heading-icon { font-size: 22px; }
    .process-wrapper { max-width: 350px; gap: 30px; }
    .process-step p { font-size: 9px; }
}


/* =========================================================
   FINAL BOOKING OVERRIDES
========================================================= */

@media (max-width: 1000px) {
    .booking-section { width: 100%; padding: 60px 25px 70px; }
    .booking-box { min-height: 350px; padding: 50px 30px 55px; border-radius: 16px; }
    .booking-box h2 { max-width: 750px; font-size: 43px; }
    .booking-box p { max-width: 650px; font-size: 12px; }
}

@media (max-width: 650px) {
    .booking-section { width: 100%; padding: 20px 15px 20px; }
    .booking-box {
        width: 100%;
        min-height: 330px;
        padding: 42px 18px 45px;
        border-radius: 14px;
    }
    .booking-box h2 {
        max-width: 360px;
        font-size: 32px;
        line-height: 1.22;
        letter-spacing: -.7px;
    }
    .booking-box p { max-width: 340px; margin-top: 19px; font-size: 10px; line-height: 1.7; }
    .booking-btn { width: 220px; height: 50px; margin-top: 22px; font-size: 11px; border-radius: 9px; }
}

@media (max-width: 380px) {
    .booking-section { padding-left: 12px; padding-right: 12px; }
    .booking-box { min-height: 310px; padding: 38px 15px 40px; }
    .booking-box h2 { max-width: 300px; font-size: 27px; }
    .booking-box p { max-width: 285px; font-size: 9px; }
    .booking-btn { width: 205px; height: 48px; }
}