/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-gold: #DAA520;
    --emerald-dark: #0a1f14;
    --emerald-medium: #1a472a;
    --emerald-light: #2d7a4a;
    --text-light: #FFFACD;
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Noto Sans Bengali', sans-serif;
    background: linear-gradient(135deg, #0a1f14 0%, #1a472a 50%, #0f2818 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   PARTICLES BACKGROUND
   =================================== */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatParticle 15s infinite;
    opacity: 0.15;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 2s; animation-duration: 16s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 15%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(11) { width: 3px; height: 3px; left: 25%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(12) { width: 5px; height: 5px; left: 35%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(13) { width: 4px; height: 4px; left: 45%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(14) { width: 6px; height: 6px; left: 55%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(15) { width: 3px; height: 3px; left: 65%; animation-delay: 3s; animation-duration: 10s; }
.particle:nth-child(16) { width: 5px; height: 5px; left: 75%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(17) { width: 4px; height: 4px; left: 85%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(18) { width: 7px; height: 7px; left: 95%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(19) { width: 3px; height: 3px; left: 5%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(20) { width: 5px; height: 5px; left: 50%; animation-delay: 1s; animation-duration: 16s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* ===================================
   CONFETTI
   =================================== */

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    top: -10px;
    animation: fallConfetti 8s infinite;
    opacity: 0.7;
}

.confetti:nth-child(1) { left: 5%; animation-delay: 0s; background: #FFD700; }
.confetti:nth-child(2) { left: 15%; animation-delay: 1s; background: #FF6B6B; }
.confetti:nth-child(3) { left: 25%; animation-delay: 2s; background: #4ECDC4; }
.confetti:nth-child(4) { left: 35%; animation-delay: 0.5s; background: #95E1D3; }
.confetti:nth-child(5) { left: 45%; animation-delay: 1.5s; background: #FFD700; }
.confetti:nth-child(6) { left: 55%; animation-delay: 2.5s; background: #FF6B6B; }
.confetti:nth-child(7) { left: 65%; animation-delay: 0.8s; background: #4ECDC4; }
.confetti:nth-child(8) { left: 75%; animation-delay: 1.8s; background: #95E1D3; }
.confetti:nth-child(9) { left: 85%; animation-delay: 2.8s; background: #FFD700; }
.confetti:nth-child(10) { left: 95%; animation-delay: 0.3s; background: #FF6B6B; }
.confetti:nth-child(11) { left: 10%; animation-delay: 1.3s; background: #4ECDC4; }
.confetti:nth-child(12) { left: 20%; animation-delay: 2.3s; background: #95E1D3; }
.confetti:nth-child(13) { left: 30%; animation-delay: 0.6s; background: #FFD700; }
.confetti:nth-child(14) { left: 40%; animation-delay: 1.6s; background: #FF6B6B; }
.confetti:nth-child(15) { left: 50%; animation-delay: 2.6s; background: #4ECDC4; }

@keyframes fallConfetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===================================
   HEADER SECTION
   =================================== */

.hero-header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
}

.decorative-border-top,
.decorative-border-bottom {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 20px auto;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 20px var(--shadow-gold);
}

.decorative-border-top::before,
.decorative-border-top::after,
.decorative-border-bottom::before,
.decorative-border-bottom::after {
    content: '◆';
    position: absolute;
    color: var(--primary-gold);
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-border-top::before,
.decorative-border-bottom::before {
    left: -30px;
}

.decorative-border-top::after,
.decorative-border-bottom::after {
    right: -30px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 30px 0;
    position: relative;
}

.title-glow {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--shadow-gold));
    animation: glowPulse 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--shadow-gold));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--shadow-gold));
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.9;
}

/* ===================================
   LIVE STATS SECTION
   =================================== */

.live-stats {
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(26, 71, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-pulse {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.countdown-timer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 5px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    opacity: 0.6;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.2;
    }
}

/* ===================================
   WHEEL SECTION
   =================================== */

.wheel-section {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.wheel-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.wheel-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--shadow-gold) 0%, transparent 70%);
    opacity: 0.3;
    animation: glowRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.wheel-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px;
}

.prize-wheel {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: all 0.1s ease-out;
}

.wheel-wrapper.spinning .prize-wheel {
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.5));
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    animation: pointerBounce 2s ease-in-out infinite;
}

@keyframes pointerBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   SPIN BUTTON
   =================================== */

.spin-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--primary-gold) 100%);
    background-size: 200% 200%;
    border: none;
    padding: 20px 60px;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Noto Sans Bengali', sans-serif;
    color: var(--emerald-dark);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-gold),
                0 0 20px var(--shadow-gold);
    transition: all 0.3s ease;
    animation: buttonPulse 3s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.spin-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-gold),
                0 0 30px var(--shadow-gold);
}

.spin-button:active {
    transform: scale(0.98);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: none;
}

@keyframes buttonPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.button-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 200%;
    }
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin-info {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ===================================
   RECENT WINNERS
   =================================== */

.recent-winners {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-ticker-wrapper {
    overflow: hidden;
    background: rgba(26, 71, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.winners-ticker {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-item {
    background: rgba(10, 31, 20, 0.5);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    min-width: 300px;
    transition: all 0.3s ease;
}

.winner-item:hover {
    transform: scale(1.05);
    background: rgba(26, 71, 42, 0.5);
    border-color: var(--primary-gold);
}

.winner-avatar {
    font-size: 2rem;
}

.winner-details {
    flex: 1;
}

.winner-name {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.winner-prize {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ===================================
   HOW TO PLAY
   =================================== */

.how-to-play {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.2;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.step-card:nth-child(2) .step-icon {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) .step-icon {
    animation-delay: 0.4s;
}

.step-card:nth-child(4) .step-icon {
    animation-delay: 0.6s;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===================================
   FEATURES
   =================================== */

.features {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.footer-content {
    text-align: center;
    padding: 20px 0;
}

.footer-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* ===================================
   POPUP
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-medium) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px var(--shadow-gold);
    transform: scale(0.5);
    transition: all 0.3s ease;
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.popup-confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -20px;
    animation: popupConfettiFall 3s ease-out infinite;
}

.popup-confetti-piece:nth-child(1) { left: 10%; background: #FFD700; animation-delay: 0s; }
.popup-confetti-piece:nth-child(2) { left: 20%; background: #FF6B6B; animation-delay: 0.2s; }
.popup-confetti-piece:nth-child(3) { left: 30%; background: #4ECDC4; animation-delay: 0.4s; }
.popup-confetti-piece:nth-child(4) { left: 40%; background: #95E1D3; animation-delay: 0.6s; }
.popup-confetti-piece:nth-child(5) { left: 50%; background: #FFD700; animation-delay: 0.8s; }
.popup-confetti-piece:nth-child(6) { left: 60%; background: #FF6B6B; animation-delay: 1s; }
.popup-confetti-piece:nth-child(7) { left: 70%; background: #4ECDC4; animation-delay: 1.2s; }
.popup-confetti-piece:nth-child(8) { left: 80%; background: #95E1D3; animation-delay: 1.4s; }
.popup-confetti-piece:nth-child(9) { left: 90%; background: #FFD700; animation-delay: 1.6s; }
.popup-confetti-piece:nth-child(10) { left: 15%; background: #FF6B6B; animation-delay: 0.3s; }
.popup-confetti-piece:nth-child(11) { left: 25%; background: #4ECDC4; animation-delay: 0.5s; }
.popup-confetti-piece:nth-child(12) { left: 35%; background: #95E1D3; animation-delay: 0.7s; }
.popup-confetti-piece:nth-child(13) { left: 45%; background: #FFD700; animation-delay: 0.9s; }
.popup-confetti-piece:nth-child(14) { left: 55%; background: #FF6B6B; animation-delay: 1.1s; }
.popup-confetti-piece:nth-child(15) { left: 65%; background: #4ECDC4; animation-delay: 1.3s; }
.popup-confetti-piece:nth-child(16) { left: 75%; background: #95E1D3; animation-delay: 1.5s; }
.popup-confetti-piece:nth-child(17) { left: 85%; background: #FFD700; animation-delay: 1.7s; }
.popup-confetti-piece:nth-child(18) { left: 95%; background: #FF6B6B; animation-delay: 1.9s; }
.popup-confetti-piece:nth-child(19) { left: 5%; background: #4ECDC4; animation-delay: 0.1s; }
.popup-confetti-piece:nth-child(20) { left: 50%; background: #95E1D3; animation-delay: 1.8s; }

@keyframes popupConfettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 2s ease-in-out infinite;
}

.popup-body {
    text-align: center;
    margin-bottom: 30px;
}

.popup-prize-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.popup-prize-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.popup-prize-description {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.popup-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.claim-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 50%, var(--primary-gold) 100%);
    background-size: 200% 200%;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Noto Sans Bengali', sans-serif;
    color: var(--emerald-dark);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-gold);
    transition: all 0.3s ease;
    animation: buttonPulse 3s ease-in-out infinite;
}

.claim-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.claim-button:active {
    transform: scale(0.98);
}

.close-button {
    background: transparent;
    border: 2px solid var(--primary-gold);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Noto Sans Bengali', sans-serif;
    color: var(--primary-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.close-button:active {
    transform: scale(0.98);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .wheel-wrapper {
        max-width: 350px;
    }

    .spin-button {
        padding: 15px 40px;
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .popup-content {
        padding: 40px 30px;
    }

    .popup-title {
        font-size: 2rem;
    }

    .popup-prize-icon {
        font-size: 4rem;
    }

    .popup-prize-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .wheel-wrapper {
        max-width: 300px;
    }

    .spin-button {
        padding: 12px 30px;
        font-size: 1.2rem;
        gap: 10px;
    }

    .button-icon {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .step-icon,
    .feature-icon {
        font-size: 3rem;
    }

    .step-title,
    .feature-title {
        font-size: 1.1rem;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .popup-title {
        font-size: 1.6rem;
    }

    .popup-prize-icon {
        font-size: 3.5rem;
    }

    .popup-prize-text {
        font-size: 1.3rem;
    }

    .popup-prize-description {
        font-size: 0.95rem;
    }

    .claim-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .close-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===================================
   UTILITIES
   =================================== */

.spinning {
    pointer-events: none;
}