/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (CSS VARIABLES)
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-red: #E10600;
    --primary-red-hover: #ff1e18;
    --gold-accent: #D4AF37;
    --gold-accent-rgb: 212, 175, 55;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --premium-black: #0F0F10;
    --premium-dark-gray: #1E1E20;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    
    /* Background Gradients */
    --bg-gradient: linear-gradient(135deg, #0F0F10 0%, #1A1A1A 100%);
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --red-gradient: linear-gradient(135deg, #B30000 0%, #E10600 50%, #FF3B30 100%);
    --card-gradient: rgba(255, 255, 255, 0.06);
    
    /* Typography */
    --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Sizes */
    --container-max-width: 1280px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    /* Shadows & Transitions */
    --luxury-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --card-glow-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--premium-black);
    background-image: var(--bg-gradient);
    color: var(--light-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Particle Canvas Background Overlay */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B0B0C;
}
::-webkit-scrollbar-thumb {
    background: #333336;
    border-radius: 5px;
    border: 2px solid #0B0B0C;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* ==========================================================================
   TYPOGRAPHY HIERARCHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    font-weight: 400;
    color: rgba(245, 245, 245, 0.8);
}

strong {
    color: var(--white);
    font-weight: 600;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Glassmorphism Styles */
.glass-card {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Text Gradients */
.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold { color: var(--gold-accent); }
.text-red { color: var(--primary-red); }
.text-white { color: var(--white); }

/* Common Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS STYLING
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn-primary {
    background: var(--red-gradient);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(225, 6, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 6, 0, 0.55), 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

/* CTA Golden Shimmer Effect */
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.3) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    animation: goldShimmerLoop 4s infinite linear;
}

@keyframes goldShimmerLoop {
    0% { left: -60%; }
    15% { left: 140%; }
    100% { left: 140%; }
}

/* CTA Pulse Effect */
.btn-pulse {
    animation: ctaPulse 2s infinite alternate ease-in-out;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.04);
        box-shadow: 0 15px 35px rgba(225, 6, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.55);
    }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.sticky-nav.scrolled {
    background: rgba(15, 15, 16, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.sticky-nav.scrolled .nav-container {
    padding: 8px 24px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    margin-right: 10px;
    display: inline-block;
}

.logo-text-products {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-accent);
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pulse-icon {
    animation: iconPulse 1.5s infinite alternate ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 10px var(--gold-accent); }
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-badges-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Hero Right Side visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

/* Gentle image floating animation */
.img-float {
    animation: floatingAnimation 6s infinite ease-in-out;
}

@keyframes floatingAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Floating badges inside visual container */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 15, 16, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    z-index: 5;
}

.badge-top-right {
    top: 5%;
    right: -10%;
}

.badge-bottom-left {
    bottom: 10%;
    left: -10%;
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-black);
    font-size: 1.1rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.05rem;
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.animate-float-slow {
    animation: badgeFloatSlow 5s infinite alternate ease-in-out;
}

.animate-float-fast {
    animation: badgeFloatFast 4s infinite alternate ease-in-out;
}

@keyframes badgeFloatSlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, -12px); }
}

@keyframes badgeFloatFast {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-8px, -15px); }
}

/* ==========================================================================
   LIVE PROGRESS DASHBOARD
   ========================================================================== */
.progress-section {
    padding: 40px 0;
    position: relative;
}

.progress-dashboard-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.progress-dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.progress-title-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trophy-glow-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.section-title-sm {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.section-subtitle-sm {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.live-indicator {
    background: rgba(225, 6, 0, 0.15);
    border: 1px solid rgba(225, 6, 0, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: liveDotPulse 1.2s infinite ease-in-out;
}

@keyframes liveDotPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.progress-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 50px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px var(--gold-glow);
}

.progress-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progressShimmerMove 2s infinite linear;
}

@keyframes progressShimmerMove {
    0% { left: -40px; }
    100% { left: 100%; }
}

.progress-footer-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.progress-footer-text i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
    padding: 80px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    padding: 30px 24px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: var(--card-glow-shadow);
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--premium-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--premium-black);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold-accent);
    transition: var(--transition-fast);
}

.step-card:hover .step-icon-wrapper {
    background: var(--gold-gradient);
    color: var(--premium-black);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--gold-glow);
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   LIVE LUCKY DRAW SECTION
   ========================================================================== */
.live-draw-details {
    padding: 80px 0;
}

.live-stage-card {
    padding: 50px;
    overflow: hidden;
}

.live-stage-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* Glowing stage styling */
.glow-stage-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: radial-gradient(circle at bottom, rgba(225, 6, 0, 0.25) 0%, rgba(15, 15, 16, 0) 70%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.stage-spotlight-left {
    position: absolute;
    top: -50px;
    left: 20%;
    width: 120px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(214, 175, 55, 0.15) 0%, rgba(214, 175, 55, 0) 80%);
    transform: rotate(20deg);
    transform-origin: top center;
    pointer-events: none;
    filter: blur(5px);
}

.stage-spotlight-right {
    position: absolute;
    top: -50px;
    right: 20%;
    width: 120px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(214, 175, 55, 0.15) 0%, rgba(214, 175, 55, 0) 80%);
    transform: rotate(-20deg);
    transform-origin: top center;
    pointer-events: none;
    filter: blur(5px);
}

.stage-podium {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    z-index: 5;
}

.stage-stream-box {
    background: rgba(15, 15, 16, 0.85);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.4);
    padding: 16px 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: -5px;
}

.live-stream-camera {
    font-size: 2.2rem;
    color: var(--white);
    animation: cameraShudder 3s infinite ease-in-out;
}

@keyframes cameraShudder {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.live-badge-glow {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge-glow i {
    font-size: 0.5rem;
    animation: liveDotPulse 1s infinite alternate;
}

.stage-base {
    width: 160px;
    height: 12px;
    background: var(--gold-gradient);
    border-radius: 3px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6), 0 0 12px var(--gold-glow);
}

.badge-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.pill-1 { top: 20%; left: 10%; animation: floatPill1 6s infinite alternate ease-in-out; }
.pill-2 { top: 35%; right: 10%; animation: floatPill2 5s infinite alternate ease-in-out; }

@keyframes floatPill1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes floatPill2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Stage content checklist */
.section-tag-gold {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stage-intro-text {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.process-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-checklist li {
    display: flex;
    gap: 16px;
}

.checklist-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(225, 6, 0, 0.1);
    border: 1px solid rgba(225, 6, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.checklist-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.checklist-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

/* ==========================================================================
   GRAND PRIZES SECTION
   ========================================================================== */
.grand-prizes-section {
    padding: 80px 0;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* High-priority cards (1st and 2nd spans 3 columns each) */
.prize-featured {
    grid-column: span 3;
}

.prize-card {
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 280px;
}

.prize-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: var(--card-glow-shadow);
}

.prize-featured.prize-card {
    min-height: 400px;
    padding: 30px;
}

/* Ribbon labels */
.prize-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.ribbon-gold {
    background: var(--gold-gradient);
    color: var(--premium-black);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.ribbon-silver {
    background: linear-gradient(135deg, #e2e2e2 0%, #a1a1a1 100%);
    color: var(--premium-black);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.ribbon-bronze {
    background: linear-gradient(135deg, #d38d5f 0%, #b06037 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(176, 96, 55, 0.3);
}

.prize-star-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.prize-featured .prize-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-featured .prize-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.prize-card:hover .prize-img {
    transform: scale(1.08) rotate(2deg);
}

/* Secondary standard prizes (span 2 columns each) */
.prizes-grid > div:not(.prize-featured) {
    grid-column: span 2;
}

.prize-icon-svg {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 16px;
}

.prize-vector-icon {
    font-size: 3.5rem;
    color: var(--gold-accent);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: var(--transition-smooth);
}

.prize-card:hover .prize-vector-icon {
    transform: scale(1.15);
    color: var(--white);
}

.prize-details {
    margin-top: auto;
}

.prize-name {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.prize-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

.prize-badge-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 12px;
}

/* ==========================================================================
   BONUS WINNERS SECTION
   ========================================================================== */
.bonus-section {
    padding: 60px 0;
}

.bonus-banner-card {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.25) 0%, rgba(212, 175, 55, 0.18) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--luxury-shadow), 0 0 30px rgba(212, 175, 55, 0.05);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.bonus-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.bonus-content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.bonus-badge {
    background: var(--gold-gradient);
    color: var(--premium-black);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.bonus-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

.bonus-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.bonus-stats {
    display: flex;
    gap: 40px;
}

.bonus-stat-item {
    display: flex;
    flex-direction: column;
}

.bonus-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.bonus-lbl {
    font-size: 0.85rem;
    color: var(--gold-accent);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bonus Gift Visual animations */
.bonus-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-box-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
}

.bonus-gift-icon {
    font-size: 7rem;
    color: var(--gold-accent);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    position: absolute;
    top: 25%;
    left: 25%;
    z-index: 5;
}

.balloon {
    position: absolute;
    width: 30px;
    height: 36px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.balloon-1 {
    background: var(--primary-red);
    top: 10%;
    left: 15%;
    animation: balloonFloatLeft 4s infinite alternate ease-in-out;
}

.balloon-2 {
    background: #D4AF37;
    top: 5%;
    right: 15%;
    animation: balloonFloatRight 5.5s infinite alternate ease-in-out;
}

@keyframes balloonFloatLeft {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes balloonFloatRight {
    0% { transform: translateY(0) rotate(5deg); }
    100% { transform: translateY(-18px) rotate(-5deg); }
}

.sparkle-gold {
    position: absolute;
    color: var(--gold-accent);
    font-size: 1.5rem;
    animation: sparkleBlink 1.5s infinite alternate;
}

.s-1 { top: 25%; right: 10%; animation-delay: 0.2s; }
.s-2 { bottom: 25%; left: 10%; animation-delay: 0.7s; }

@keyframes sparkleBlink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 24px;
}

.bg-gradient-gold {
    background: var(--gold-gradient);
    color: var(--premium-black);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.bg-gradient-red {
    background: var(--red-gradient);
    box-shadow: 0 8px 16px rgba(225, 6, 0, 0.2);
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Interactive glow outline on card hover */
.why-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px transparent;
    transition: var(--transition-smooth);
}

.why-card:hover .why-glow-effect {
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
}

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

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    gap: 20px;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-gradient);
    color: var(--premium-black);
}

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

.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   TERMS & CONDITIONS SECTION
   ========================================================================== */
.terms-section {
    padding: 80px 0;
}

.terms-card {
    padding: 50px;
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.terms-header i {
    font-size: 1.8rem;
}

.terms-title {
    font-size: 1.6rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.terms-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.terms-list li i {
    color: var(--gold-accent);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-banner-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0F0F10 0%, #201313 50%, #151A15 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--luxury-shadow);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-gradient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.25) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-action-container {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.main-footer {
    background-color: #080809;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: inline-block;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--premium-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--gold-accent);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--gold-accent);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-list li a:hover {
    color: var(--white);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
    background-color: #050506;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.compliance-badges {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.compliance-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 15, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    right: 30px;
}

.scroll-to-top:hover {
    background: var(--gold-gradient);
    color: var(--premium-black);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--gold-glow);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grids */
.scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.6s; }
.scroll-reveal[data-delay="7"] { transition-delay: 0.7s; }
.scroll-reveal[data-delay="8"] { transition-delay: 0.8s; }
.scroll-reveal[data-delay="9"] { transition-delay: 0.9s; }
.scroll-reveal[data-delay="10"] { transition-delay: 1s; }


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

/* Tablet & Smaller Laptops (1024px and down) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .how-grid > div:nth-child(4) {
        grid-column: span 1;
    }
    
    .how-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    
    .prizes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-stage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Toggle menu via JS */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 16, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badges-grid {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1; /* Place image on top on mobile */
    }
    
    .floating-badge {
        padding: 8px 16px;
    }
    
    .badge-top-right {
        right: 0%;
    }
    
    .badge-bottom-left {
        left: 0%;
    }
    
    .progress-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-featured {
        grid-column: span 1 !important;
    }
    
    .prizes-grid > div:not(.prize-featured) {
        grid-column: span 1 !important;
    }
    
    .bonus-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .bonus-stats {
        justify-content: center;
    }
    
    .bonus-illustration {
        order: -1;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobiles (480px and down) */
@media (max-width: 480px) {
    .btn {
        width: 100%; /* Full width buttons on tiny screens */
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .progress-dashboard-card {
        padding: 24px;
    }
    
    .bonus-banner-card {
        padding: 30px 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-trigger {
        padding: 16px;
    }
    
    .faq-answer {
        padding: 0 16px 16px 16px;
    }
    
    .terms-card {
        padding: 24px;
    }
}
