:root {
    --bg-dark: #05070a;
    --bg-card: rgba(20, 25, 35, 0.6);
    --primary-gold: #FFD700;
    --primary-gold-dark: #B8860B;
    --accent-purple: #8A2BE2;
    --accent-cyan: #00FFFF;
    --text-main: #FFFFFF;
    --text-muted: #A0ABC0;
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

html { scroll-behavior: smooth; }

/* MAGIC PARTICLES */
#particles-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.3;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Urgency Banner */
.top-banner {
    background: linear-gradient(90deg, #ff1a1a, #cc0000);
    color: white; text-align: center; padding: 10px 0; font-size: 14px; position: relative; z-index: 1001;
}
.banner-content { display: flex; align-items: center; justify-content: center; gap: 10px; }
.pulse-dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulseDot 1s infinite; }
@keyframes pulseDot { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
.spots-left { background: rgba(0,0,0,0.3); padding: 3px 10px; border-radius: 4px; font-weight: bold; margin-left: 10px; }
#spots { color: var(--primary-gold); font-size: 16px; }

/* Background Image & Overlay */
.hero-bg {
    position: fixed; top: 0; left: 0; right: 0; height: 100vh;
    background: url('gates.jpg') no-repeat center center;
    background-size: cover; z-index: -2;
    animation: slowZoom 30s infinite alternate;
}
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(5,7,10,0.85) 0%, rgba(5,7,10,0.95) 50%, rgba(5,7,10,1) 100%); z-index: -1;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Header */
.glass-header {
    position: sticky; top: 0; padding: 15px 0; background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 800; letter-spacing: 1px; }
.gold-text { color: var(--primary-gold); }
.gold-gradient {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.desktop-nav a { color: var(--text-main); text-decoration: none; margin: 0 15px; font-weight: 500; font-size: 15px; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--primary-gold); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; cursor: pointer; }
.btn-glow-gold { background: linear-gradient(135deg, var(--primary-gold), #FF8C00); color: #000; box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); padding: 10px 24px; }
.btn-glow-gold:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 5px 30px rgba(255, 215, 0, 0.7); }
.btn-large { padding: 16px 36px; font-size: 18px; animation: bounceSlow 3s infinite; }
@keyframes bounceSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.btn-outline { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 15px 36px; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* Hero Section */
.hero { display: flex; align-items: center; min-height: 90vh; padding-top: 60px; gap: 60px; }
.hero-content { flex: 1.2; }
.badge-premium { display: inline-block; padding: 8px 16px; background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.4); color: var(--primary-gold); border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 25px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
.epic-title { font-family: 'Cinzel', serif; font-size: 60px; line-height: 1.1; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.hero-desc { font-size: 19px; color: var(--text-muted); margin-bottom: 35px; max-width: 550px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 50px; }
.guarantee-text { font-size: 14px; color: #27c93f; font-weight: 500; margin-left: 10px; }
.stats-row { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Cinzel', serif; }
.stat-label { color: var(--text-muted); font-size: 14px; }

/* Hero Visual */
.hero-visual-container { flex: 1; position: relative; perspective: 1200px; }
.main-display-card { background: rgba(10, 15, 25, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 215, 0, 0.4); border-radius: 20px; padding: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,215,0,0.1); transform: rotateY(-15deg) rotateX(10deg); transition: transform 0.4s ease; }
.main-display-card:hover { transform: rotateY(-5deg) rotateX(5deg) scale(1.02); }
.card-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%); z-index: -1; filter: blur(30px); }
.mockup-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #ff5f56; } .dot.y { background: #ffbd2e; } .dot.g { background: #27c93f; }
.url-bar { background: rgba(0,0,0,0.6); padding: 6px 12px; border-radius: 6px; font-size: 12px; color: #888; margin-left: 10px; flex: 1; }
.status-badge { display: inline-block; padding: 4px 12px; background: rgba(39, 201, 63, 0.15); color: #27c93f; border: 1px solid #27c93f; border-radius: 20px; font-size: 12px; margin-bottom: 15px; font-weight: bold; }
.game-detected { font-size: 22px; margin-bottom: 20px; }
.progress-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 20px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #ff4500, var(--primary-gold)); box-shadow: 0 0 15px var(--primary-gold); animation: fillBar 3s ease-out forwards infinite; }
@keyframes fillBar { 0% { width: 0%; } 40% { width: 94.2%; } 100% { width: 94.2%; } }
.analysis-stats { display: flex; justify-content: space-between; font-size: 15px; padding: 15px; background: rgba(0,0,0,0.6); border-radius: 12px; margin-bottom: 15px; }
.green-text { color: #27c93f; font-weight: bold; }
.buy-feature-alert { background: rgba(255, 69, 0, 0.2); border: 1px solid #ff4500; color: #ff4500; padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; font-size: 14px; animation: flashAlert 2s infinite; }
@keyframes flashAlert { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Floating coins animation */
.floating-coin { position: absolute; font-size: 32px; filter: drop-shadow(0 0 15px rgba(255,215,0,0.6)); animation: floatItem 3s ease-in-out infinite alternate; }
.coin-1 { top: -30px; right: -10px; animation-delay: 0s; font-size: 40px; }
.coin-2 { bottom: 60px; left: -40px; animation-delay: 1s; }
.coin-3 { bottom: -10px; right: 50px; animation-delay: 2s; }
@keyframes floatItem { to { transform: translateY(-25px); } }

/* Shared Section Styles */
.section-title { text-align: center; font-size: 46px; font-family: 'Cinzel', serif; margin-bottom: 15px; }
.section-title.left-align { text-align: left; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 18px; margin-bottom: 50px; }

/* Reviews Section */
.reviews-section { padding: 80px 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { padding: 30px; transition: transform 0.3s; }
.review-card:hover { transform: translateY(-5px); border-color: rgba(255,215,0,0.5); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #1e3c72, #2a5298); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; }
.bg-purple { background: linear-gradient(135deg, #8A2BE2, #4B0082); }
.bg-gold { background: linear-gradient(135deg, #B8860B, #FFD700); color: #000; }
.user-info h4 { font-size: 18px; margin-bottom: 2px; }
.stars { color: var(--primary-gold); font-size: 14px; }
.win-badge { margin-left: auto; background: rgba(39, 201, 63, 0.2); color: #27c93f; padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: bold; border: 1px solid #27c93f; }
.review-text { font-size: 15px; color: #ccc; font-style: italic; }

/* Games Section */
.games-section { padding: 80px 24px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.game-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; position: relative; }
.game-card:hover { transform: translateY(-10px); border-color: var(--primary-gold); box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.2); }
.game-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-img-wrapper img { transform: scale(1.1); }
.game-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
.win-rate { background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); padding: 6px 12px; border-radius: 20px; font-size: 13px; color: var(--primary-gold); border: 1px solid rgba(255,215,0,0.3); }
.game-info { padding: 24px; }
.game-info h3 { font-size: 24px; margin-bottom: 10px; }
.game-info p { color: var(--text-muted); font-size: 15px; margin-bottom: 15px; }

/* Full Width Game Card for "Other Games" */
.full-width-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.full-width-card .game-img-wrapper {
    flex: 1;
    height: 100%;
    min-height: 280px;
}
.full-width-card .game-info {
    flex: 1;
    padding: 40px;
}
.full-width-card .game-info h3 {
    font-size: 32px;
}
.full-width-card .game-info p {
    font-size: 18px;
}

.demo-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 16px;
}
.demo-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

/* Features */
.features-section { padding: 80px 24px; }
.feature-content-split { display: flex; align-items: center; gap: 60px; }
.feature-text { flex: 1; }
.feature-list { list-style: none; margin-top: 40px; }
.feature-list li { display: flex; gap: 20px; margin-bottom: 30px; }
.icon-box { width: 60px; height: 60px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.feature-list h4 { font-size: 20px; margin-bottom: 8px; }
.feature-list p { color: var(--text-muted); }
.feature-visual { flex: 1; }
.glass-panel { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px; }
.panel-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; }
.alert-box { margin-top: 30px; padding: 15px; background: rgba(255, 165, 0, 0.1); border-left: 4px solid orange; color: orange; font-size: 14px; }

/* FAQ Section */
.faq-section { padding: 80px 24px; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; background: rgba(20,25,35,0.4); }
.faq-question { width: 100%; text-align: left; padding: 20px; background: none; border: none; color: white; font-size: 18px; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 20px 20px 20px; max-height: 300px; }
.faq-item.active .arrow { transform: rotate(180deg); }
.arrow { transition: transform 0.3s; font-size: 14px; color: var(--primary-gold); }

/* CTA Section */
.cta-section { padding: 80px 24px; margin-bottom: 40px; }
.cta-box { position: relative; text-align: center; padding: 80px 40px; background: linear-gradient(to right, rgba(20, 25, 35, 0.9), rgba(40, 30, 10, 0.9)); border: 1px solid var(--primary-gold-dark); border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(255,215,0,0.1); }
.glow-sphere { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%); filter: blur(50px); z-index: 0; }
.cta-box h2, .cta-box p, .contact-buttons, .secure-checkout { position: relative; z-index: 1; }
.cta-box h2 { font-size: 44px; font-family: 'Cinzel', serif; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.cta-box p { font-size: 18px; color: #ddd; max-width: 600px; margin: 0 auto 40px; }
.contact-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.contact-btn { display: flex; align-items: center; gap: 12px; padding: 18px 40px; font-size: 18px; font-weight: 700; border-radius: 50px; text-decoration: none; color: white; transition: transform 0.3s, box-shadow 0.3s; }
.telegram-btn { background: linear-gradient(135deg, #0088cc, #00a2f2); box-shadow: 0 10px 20px rgba(0, 136, 204, 0.4); }
.telegram-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 136, 204, 0.6); }
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6); }
.secure-checkout { display: flex; justify-content: center; gap: 30px; font-size: 14px; color: #aaa; }

/* Footer */
footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); background: #020305; }
.footer-content { display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 14px;}

/* Live Toast Notification */
.live-toast { position: fixed; bottom: -100px; left: 20px; background: rgba(15, 20, 30, 0.95); border: 1px solid rgba(255,215,0,0.4); border-radius: 12px; padding: 15px 20px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255,215,0,0.1); backdrop-filter: blur(10px); z-index: 9999; transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.live-toast.show { bottom: 30px; }
.toast-icon { font-size: 28px; }
.toast-content { display: flex; flex-direction: column; }
.toast-title { font-size: 15px; font-weight: bold; color: white; margin-bottom: 2px; }
.toast-time { font-size: 12px; color: #888; }

/* SWEET BONANZA SCATTER ANIMATION */
.bonanza-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Let clicks pass through if user wants, but we'll manage via JS */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.bonanza-overlay.active {
    opacity: 1;
    visibility: visible;
}

.scatter-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.scatter {
    position: absolute;
    font-size: 120px;
    filter: drop-shadow(0 0 30px rgba(255, 105, 180, 0.8));
    opacity: 0;
    top: -150px;
}
.bonanza-overlay.active .scatter {
    animation: dropBounce 1.5s cubic-bezier(0.28, 0.84, 0.42, 1) forwards;
}

/* Stagger the drops */
.bonanza-overlay.active .s-1 { left: 15%; animation-delay: 0.1s; }
.bonanza-overlay.active .s-2 { left: 35%; animation-delay: 0.4s; }
.bonanza-overlay.active .s-3 { left: 60%; animation-delay: 0.7s; }
.bonanza-overlay.active .s-4 { left: 80%; animation-delay: 1.1s; }

@keyframes dropBounce {
    0% { top: -150px; opacity: 1; transform: scale(1) rotate(0deg); }
    60% { top: 60%; transform: scale(1.1) rotate(180deg); }
    75% { top: 40%; transform: scale(1) rotate(220deg); }
    90% { top: 55%; transform: scale(1.05) rotate(250deg); }
    100% { top: 50%; opacity: 1; transform: scale(1) rotate(360deg); }
}

.freespin-text-anim {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: scale(0.5);
    z-index: 10;
}
.bonanza-overlay.active .freespin-text-anim {
    animation: epicPop 2s forwards;
    animation-delay: 1.8s; /* After 4th scatter lands */
}

.fs-glow {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(to bottom, #FFD700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    line-height: 1;
}
.fs-won {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px #ff1493;
    margin-top: -10px;
}

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

/* Responsive */
@media (max-width: 1024px) { .epic-title { font-size: 46px; } .hero-content { flex: 1; } .feature-content-split { flex-direction: column; } }
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hero { flex-direction: column; padding-top: 40px; text-align: center; }
    .epic-title { font-size: 38px; } .hero-desc { margin: 0 auto 30px; }
    .hero-actions { align-items: center; margin: 0 auto 40px; }
    .stats-row { justify-content: center; } .main-display-card { transform: none; } .main-display-card:hover { transform: none; }
    .section-title { font-size: 32px; } .cta-box h2 { font-size: 28px; }
    .contact-buttons { flex-direction: column; } .secure-checkout { flex-direction: column; gap: 10px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .live-toast { left: 10px; right: 10px; }
    .fs-glow { font-size: 50px; }
    .scatter { font-size: 80px; }
    .full-width-card { flex-direction: column; }
    .full-width-card .game-info { padding: 24px; }
    .full-width-card .game-img-wrapper { min-height: 220px; }
}
@media (max-width: 480px) { .epic-title { font-size: 30px; } .stats-row { flex-direction: column; gap: 20px; } .btn-large { width: 100%; } .cta-box { padding: 40px 20px; } }
