/* ===================================
   CSS Variables - Bold Nigerian Theme
   =================================== */
:root {
    /* Nigerian Pride Colors */
    --color-nigerian-green: #008751;
    --color-nigerian-green-dark: #006339;
    --color-nigerian-green-light: #00a860;
    --color-white: #ffffff;

    /* Luxury Accent Colors */
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
    --color-gold-light: #FFF4B3;

    /* Supporting Palette */
    --color-deep-blue: #001f3f;
    --color-rich-purple: #6B2C91;
    --color-vibrant-orange: #FF6B35;
    --color-success: #00D97E;
    --color-warning: #FFB800;

    /* Neutrals */
    --color-black: #0A0E13;
    --color-gray-900: #1A1F2C;
    --color-gray-800: #2D3748;
    --color-gray-700: #3E4857;
    --color-gray-600: #64748B;
    --color-gray-400: #94A3B8;
    --color-gray-200: #E2E8F0;
    --color-gray-100: #F1F5F9;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-display: 'Righteous', cursive;
    --font-body: 'Spline Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    background: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===================================
   Animated Background
   =================================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg,
        var(--color-deep-blue) 0%,
        var(--color-black) 50%,
        var(--color-nigerian-green-dark) 100%);
    opacity: 0.95;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 215, 0, 0.03) 35px, rgba(255, 215, 0, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 135, 81, 0.03) 35px, rgba(0, 135, 81, 0.03) 70px);
    animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

/* ===================================
   Floating Lottery Balls
   =================================== */
.lottery-balls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.ball {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-deep-blue);
    box-shadow:
        0 8px 32px rgba(255, 215, 0, 0.4),
        inset 0 -8px 16px rgba(0, 0, 0, 0.2),
        inset 0 8px 16px rgba(255, 255, 255, 0.3);
    animation: float 8s ease-in-out infinite;
    opacity: 0.85;
}

.ball-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.ball-2 {
    top: 60%;
    left: 85%;
    animation-delay: -3s;
    animation-duration: 15s;
}

.ball-3 {
    top: 80%;
    left: 15%;
    animation-delay: -6s;
    animation-duration: 18s;
}

.ball-4 {
    top: 25%;
    left: 80%;
    animation-delay: -9s;
    animation-duration: 14s;
}

.ball-5 {
    top: 45%;
    left: 5%;
    animation-delay: -12s;
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 30px) rotate(270deg); }
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 10;
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 10;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    background: rgba(10, 14, 19, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-deep-blue);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--color-gray-200);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-nigerian-green));
    transition: var(--transition-base);
}

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

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: var(--space-3xl);
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.2), rgba(0, 135, 81, 0.1));
    border: 1px solid var(--color-nigerian-green);
    border-radius: 50px;
    color: var(--color-nigerian-green-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 135, 81, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 135, 81, 0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-nigerian-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.btn {
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-deep-blue);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Countdown */
.countdown {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    width: fit-content;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.5;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.1; }
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ticket-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ticket {
    background: var(--color-white);
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    border: 3px solid;
    animation: ticketFloat 3s ease-in-out infinite;
}

.ticket-6-49 {
    border-color: var(--color-nigerian-green);
    animation-delay: 0s;
}

.ticket-joker {
    border-color: var(--color-rich-purple);
    animation-delay: -1.5s;
    transform: rotate(-2deg);
}

@keyframes ticketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px dashed var(--color-gray-200);
}

.ticket-game {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-nigerian-green);
}

.ticket-joker .ticket-game {
    color: var(--color-rich-purple);
}

.ticket-id {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-family: monospace;
}

.ticket-numbers {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-nigerian-green), var(--color-nigerian-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 135, 81, 0.3);
}

.joker-numbers-section {
    margin-bottom: var(--space-lg);
}

.joker-main-numbers {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.joker-number-small {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-rich-purple), #5A1F7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(107, 44, 145, 0.3);
}

.joker-bonus-number {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    border: 2px solid var(--color-gold);
}

.joker-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}

.joker-ball {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-deep-blue);
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.ticket-prize {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--color-gold-dark);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-white));
    padding: var(--space-md);
    border-radius: 12px;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
}

/* ===================================
   Games Section
   =================================== */
.games-section {
    background: rgba(0, 135, 81, 0.05);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.game-card {
    background: rgba(0, 31, 63, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.2);
}

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

.game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.icon-balls {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-deep-blue);
    display: flex;
    gap: 4px;
}

.icon-joker {
    font-size: 2.5rem;
}

.game-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.game-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.game-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.game-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.65);
}

.game-features svg {
    flex-shrink: 0;
    stroke: var(--color-nigerian-green-light);
}

.game-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-gold);
    color: var(--color-deep-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Prizes Section
   =================================== */
.prizes-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.prize-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid;
    border-radius: 24px;
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize-mega {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    animation: prizeGlow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

@keyframes prizeGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.6); }
}

.mega-prize-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.prize-amount-huge {
    font-family: var(--font-display);
    font-size: 5.5rem;
    color: var(--color-white);
    margin: var(--space-lg) 0;
    text-shadow: 0 4px 24px rgba(255, 215, 0, 0.6);
    line-height: 1;
}

.prize-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.prize-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
    color: var(--color-white);
    font-size: 1.125rem;
}

.feature-icon-small {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.odds-display {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.odds-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.odds-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.prize-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.prize-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-md);
}

.prize-secondary:last-child {
    margin-bottom: 0;
}

.prize-rank {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.prize-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.prize-secondary .prize-amount {
    font-size: 2rem;
}

.prize-game {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.prizes-stack {
    display: flex;
    flex-direction: column;
}

.prize-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.prize-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: rgba(0, 135, 81, 0.1);
    border: 1px solid var(--color-nigerian-green);
    border-radius: 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

/* Winning Chances Section */
.winning-chances {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: var(--space-2xl);
}

.chances-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.chances-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.chance-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(0, 135, 81, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(0, 135, 81, 0.3);
    transition: var(--transition-base);
}

.chance-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-nigerian-green);
    box-shadow: 0 8px 24px rgba(0, 135, 81, 0.2);
}

.chance-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.chance-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    line-height: 1.4;
}

.chances-note {
    text-align: center;
    color: var(--color-gray-400);
    font-size: 0.875rem;
    padding: var(--space-md);
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

/* ===================================
   About Section
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text {
    color: var(--color-gray-400);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-features li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.about-features h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.about-features p {
    color: var(--color-gray-400);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-nigerian-green);
    border-radius: 24px;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.trust-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-nigerian-green), var(--color-nigerian-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-white);
    box-shadow: 0 8px 32px rgba(0, 135, 81, 0.4);
}

.trust-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.trust-subtitle {
    color: var(--color-gray-400);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.2), rgba(255, 215, 0, 0.1));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.newsletter-subtitle {
    color: var(--color-gray-400);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-input::placeholder {
    color: var(--color-gray-500);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.newsletter-privacy {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--color-gray-400);
}

.footer-links h4 {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-responsible {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-title {
        font-size: 3rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .prizes-showcase {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .countdown {
        width: 100%;
        justify-content: space-between;
    }

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

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

    .prize-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .chances-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .ball {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}