* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #01030a;
    color: #ffffff;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    background: linear-gradient(180deg, rgba(1,3,10,0.98) 0%, rgba(1,3,10,0.85) 100%);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.logo { display: flex; align-items: center; }
.logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.25));
}
nav { display: flex; gap: 35px; align-items: center; }
nav a {
    color: #8899aa;
    text-decoration: none;
    font-size: 13px; font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 4px;
}
nav a:hover, nav a.active { color: #38bdf8; }
nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: #38bdf8;
    border-radius: 1px;
}
.auth-buttons { display: flex; gap: 10px; }
.btn {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    border: none;
    display: flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif;
}
.btn-login {
    background: transparent;
    border: 1px solid #334155;
    color: #e2e8f0;
}
.btn-login:hover { border-color: #38bdf8; color: #38bdf8; }
.btn-register {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(14,165,233,0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 90px;
    overflow: hidden;
    background: #01030a;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(14,165,233,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(14,165,233,0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(1,3,10,0.1) 0%, rgba(1,3,10,0.95) 70%, rgba(1,3,10,1) 100%);
}
/* Stars */
.stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(2px 2px at 80px 60px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 200px 120px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 350px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 500px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 650px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 800px 100px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 950px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 1100px 130px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 150px 250px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 300px 300px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1.5px 1.5px at 450px 220px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 600px 280px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 750px 200px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 900px 260px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 1050px 240px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 50px 400px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 250px 450px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 400px 380px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 550px 420px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 700px 360px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 850px 400px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 1000px 440px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 1200px 500px;
}
/* City Skyline - Left side tall buildings */
.city-left {
    position: absolute;
    bottom: 0; left: 0;
    width: 200px; height: 350px;
    background: linear-gradient(180deg, rgba(2,8,20,0.3) 0%, rgba(1,3,10,1) 100%);
}
.city-left::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(14,165,233,0.3) 0%, rgba(14,165,233,0.1) 100%) 20px 0 / 60px 300px no-repeat,
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(56,189,248,0.15) 4px, rgba(56,189,248,0.15) 5px) 25px 50px / 50px 200px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.8) 0%, rgba(1,3,10,1) 100%) 90px 80px / 40px 220px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.6) 0%, rgba(1,3,10,1) 100%) 140px 120px / 50px 180px no-repeat;
    clip-path: polygon(20px 0, 80px 0, 80px 300px, 90px 300px, 90px 80px, 130px 80px, 130px 300px, 140px 300px, 140px 120px, 190px 120px, 190px 350px, 0 350px, 0 300px, 20px 300px);
}
/* City Skyline - Right side */
.city-right {
    position: absolute;
    bottom: 0; right: 0;
    width: 300px; height: 300px;
    background: linear-gradient(180deg, rgba(2,8,20,0.2) 0%, rgba(1,3,10,1) 100%);
}
.city-right::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(2,8,20,0.7) 0%, rgba(1,3,10,1) 100%) 0 100px / 60px 200px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.5) 0%, rgba(1,3,10,1) 100%) 70px 150px / 50px 150px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.6) 0%, rgba(1,3,10,1) 100%) 130px 80px / 40px 220px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.4) 0%, rgba(1,3,10,1) 100%) 180px 180px / 55px 120px no-repeat,
        linear-gradient(180deg, rgba(2,8,20,0.7) 0%, rgba(1,3,10,1) 100%) 240px 60px / 60px 240px no-repeat;
}
/* Highway lights on left */
.highway-lights {
    position: absolute;
    bottom: 0; left: 0;
    width: 250px; height: 150px;
    background:
        repeating-linear-gradient(35deg, transparent, transparent 15px, rgba(255,200,100,0.3) 15px, rgba(255,200,100,0.3) 16px),
        repeating-linear-gradient(35deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px);
    opacity: 0.6;
}
/* Fireworks on right */
.fireworks {
    position: absolute;
    top: 80px; right: 80px;
    width: 150px; height: 150px;
}
.firework {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8;
}
.firework:nth-child(1) { top: 20px; left: 50px; }
.firework:nth-child(2) { top: 30px; left: 80px; background: #60a5fa; box-shadow: 0 0 10px #60a5fa, 0 0 20px #60a5fa; }
.firework:nth-child(3) { top: 50px; left: 30px; background: #22d3ee; box-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee; }
.firework:nth-child(4) { top: 40px; left: 100px; background: #818cf8; box-shadow: 0 0 10px #818cf8, 0 0 20px #818cf8; }
.firework:nth-child(5) { top: 70px; left: 60px; background: #38bdf8; box-shadow: 0 0 15px #38bdf8, 0 0 30px #38bdf8; }
.firework-ray {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, rgba(56,189,248,0.8), transparent);
    transform-origin: bottom center;
}
.firework-ray:nth-child(6) { top: 0; left: 52px; height: 80px; transform: rotate(-15deg); }
.firework-ray:nth-child(7) { top: 0; left: 52px; height: 80px; transform: rotate(15deg); }
.firework-ray:nth-child(8) { top: 10px; left: 82px; height: 60px; transform: rotate(-10deg); }
.firework-ray:nth-child(9) { top: 10px; left: 82px; height: 60px; transform: rotate(10deg); }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 20px;
}
.next-draw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(12,74,110,0.8), rgba(3,105,161,0.8));
    border: 1px solid rgba(14,165,233,0.5);
    padding: 8px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px; font-weight: 600;
    color: #38bdf8;
    margin-bottom: 18px;
    box-shadow: 0 0 25px rgba(14,165,233,0.2), inset 0 0 10px rgba(14,165,233,0.1);
    letter-spacing: 1px;
}
.draw-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(56,189,248,0.4), 0 0 80px rgba(56,189,248,0.2);
    letter-spacing: 2px;
}
.draw-date .highlight {
    color: #0ea5e9;
    text-shadow: 0 0 30px rgba(14,165,233,0.6);
}
.draw-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14,165,233,0.12);
    border: 1px solid rgba(14,165,233,0.25);
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 15px;
    color: #38bdf8;
    margin-bottom: 35px;
    font-weight: 500;
}
.draw-time i { font-size: 14px; }

/* ===== COUNTDOWN ===== */
.countdown-container {
    background: rgba(2,6,18,0.85);
    border: 2px solid rgba(14,165,233,0.35);
    border-radius: 20px;
    padding: 35px 45px;
    margin-bottom: 35px;
    position: relative;
    box-shadow:
        0 0 50px rgba(14,165,233,0.15),
        inset 0 0 60px rgba(14,165,233,0.03);
}
.countdown-container::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, rgba(14,165,233,0.6), transparent, rgba(14,165,233,0.6), transparent, rgba(14,165,233,0.6));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.4;
}
.countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.countdown-item { text-align: center; }
.countdown-box {
    width: 110px; height: 110px;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 50%, #0a1628 100%);
    border: 1px solid rgba(56,189,248,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(56,189,248,0.1),
        inset 0 1px 0 rgba(56,189,248,0.1);
}
.countdown-box::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(56,189,248,0.15);
    z-index: 2;
}
.countdown-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(56,189,248,0.06) 0%, transparent 40%, transparent 60%, rgba(56,189,248,0.06) 100%);
    z-index: 1;
}
.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #38bdf8;
    text-shadow: 0 0 25px rgba(56,189,248,0.5), 0 0 50px rgba(56,189,248,0.2);
    z-index: 3;
    position: relative;
    letter-spacing: 2px;
}
.countdown-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #38bdf8;
    margin-top: 20px;
    text-shadow: 0 0 15px rgba(56,189,248,0.5);
}
.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}
.countdown-dots {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 15px;
    padding: 0 30px;
}
.dot-line {
    display: flex;
    align-items: center;
    gap: 60px;
}
.dot {
    width: 6px; height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(56,189,248,0.6);
}
.countdown-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    letter-spacing: 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.countdown-title::before,
.countdown-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
}
.countdown-title::before {
    right: calc(100% + 25px);
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.6));
}
.countdown-title::after {
    left: calc(100% + 25px);
    background: linear-gradient(90deg, rgba(14,165,233,0.6), transparent);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(10,18,35,0.9);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 16px;
    padding: 25px 35px;
    margin: 0 auto 50px;
    max-width: 1050px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    border-right: 1px solid rgba(56,189,248,0.1);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 45px; height: 45px;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #38bdf8;
    flex-shrink: 0;
}
.feature-text h3 {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}
.feature-text p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}

/* ===== INFO SECTION ===== */
.info-section {
    display: flex;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.info-card {
    flex: 1;
    background: rgba(10,18,35,0.9);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(5px);
}
.info-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #38bdf8;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
}
.info-card h2::before,
.info-card h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
}
.info-card h2::before {
    right: calc(50% + 90px);
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5));
}
.info-card h2::after {
    left: calc(50% + 90px);
    background: linear-gradient(90deg, rgba(14,165,233,0.5), transparent);
}

/* Steps */
.steps { display: flex; gap: 12px; }
.step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -8px;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, rgba(14,165,233,0.6), transparent);
}
.step-number {
    width: 35px; height: 35px;
    background: linear-gradient(135deg, #c9a84c, #8b6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 10px;
    box-shadow: 0 0 12px rgba(201,168,76,0.3);
}
.step-icon {
    width: 55px; height: 55px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c9a84c;
    margin: 0 auto 8px;
}
.step h4 {
    font-size: 11px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 4px;
}
.step p {
    font-size: 9px;
    color: #64748b;
    line-height: 1.4;
    padding: 0 2px;
}
.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 18px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(14,165,233,0.3);
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(14,165,233,0.5);
}

/* Winners */
.winners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.winners-header a {
    color: #38bdf8;
    font-size: 11px;
    text-decoration: none;
    font-weight: 500;
}
.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(56,189,248,0.08);
}
.winner-item:last-child { border-bottom: none; }
.winner-avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 1px solid rgba(56,189,248,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #38bdf8;
    flex-shrink: 0;
}
.winner-info { flex: 1; }
.winner-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}
.winner-info p {
    font-size: 10px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.winner-amount { text-align: right; }
.winner-amount span {
    font-size: 9px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.winner-amount h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #38bdf8;
    margin-top: 2px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(10,18,35,0.9);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 16px;
    padding: 25px 35px;
    margin: 0 auto 50px;
    max-width: 1050px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    border-right: 1px solid rgba(56,189,248,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 42px; height: 42px;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #38bdf8;
    flex-shrink: 0;
}
.stat-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 2px;
}
.stat-text p {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(1,3,10,0.98);
    border-top: 1px solid rgba(56,189,248,0.08);
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-img {
    height: 95px;
    width: auto;
}
.footer-center {
    font-size: 11px;
    color: #475569;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-right span {
    font-size: 11px;
    color: #475569;
    margin-right: 5px;
    letter-spacing: 0.5px;
}
.social-icon {
    width: 30px; height: 30px;
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #38bdf8;
    cursor: pointer;
    transition: all 0.3s;
}
.social-icon:hover {
    background: rgba(14,165,233,0.15);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 22px;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(1,3,10,0.98);
    border-top: 1px solid rgba(56,189,248,0.15);
    padding: 18px 24px 24px;
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #8899aa; text-decoration: none; font-size: 15px; font-weight: 500; padding: 4px 0; }
.mobile-menu .mobile-auth { display: flex; gap: 10px; margin-top: 6px; }

/* ===== ANIMATIONS ===== */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(56,189,248,0.2); }
    50% { box-shadow: 0 0 30px rgba(56,189,248,0.4); }
}
.countdown-box { animation: glow 3s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .info-section { flex-direction: column; }
    .features-bar, .stats-bar { flex-wrap: wrap; gap: 15px; }
    .feature-item, .stat-item { border-right: none; flex: 1 1 40%; }
}
@media (max-width: 768px) {
    header { padding: 12px 20px; }
    .logo-img { height: 64px; }
    .footer-logo-img { height: 72px; }
    nav { display: none; }
    .mobile-menu-btn { display: block; }
    .draw-date { font-size: 28px; }
    .countdown { gap: 8px; }
    .countdown-box { width: 75px; height: 75px; }
    .countdown-number { font-size: 32px; }
    .countdown-separator { font-size: 28px; }
    .steps { flex-wrap: wrap; }
    .step { flex: 1 1 40%; }
    footer { flex-direction: column; gap: 15px; text-align: center; }
}
@media (max-width: 480px) {
    .countdown-box { width: 68px; height: 68px; }
    .countdown-number { font-size: 27px; }
    .countdown-separator { font-size: 24px; }
    .feature-item, .stat-item { flex: 1 1 100%; }
    .features-bar, .stats-bar { padding: 18px 20px; }
    .countdown-container { padding: 25px 20px; }
}
