:root {
    --bg-main: #08090d;
    --bg-card: #12141c;
    --accent: #f1c40f;
    --gold-grad: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0a5b1;
    --border: #222631;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding-bottom: 120px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* Sticky CTA */
.sticky-action { position: fixed; bottom: 30px; width: 100%; display: flex; justify-content: center; z-index: 1000; }
.btn-play {
    background: var(--gold-grad);
    color: #000;
    padding: 22px 65px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 15px 45px rgba(241, 196, 15, 0.4);
    transition: 0.3s;
}
.btn-play:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(241, 196, 15, 0.6); }

/* Navbar */
.navbar { background: rgba(8, 9, 13, 0.95); padding: 20px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; backdrop-filter: blur(10px); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 26px; font-weight: 900; }
.logo span { color: var(--accent); }
.anchor-links a { color: var(--text-secondary); text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 0.85rem; }
.anchor-links a:hover { color: var(--accent); }

/* Sections */
.content-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 30px; font-family: 'Montserrat', sans-serif; }
h2 { font-size: 2.2rem; margin-bottom: 25px; color: #fff; font-family: 'Montserrat', sans-serif; }
p { font-size: 1.1rem; margin-bottom: 25px; color: var(--text-secondary); }

/* Stats & Grid */
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: #777; }
.stat strong { font-size: 1.8rem; color: var(--accent); }

.expand-grid, .bonus-cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.expand-item, .bonus-promo-card, .faq-card { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; }
.bonus-promo-card.highlight { border: 2px solid var(--accent); background: rgba(241, 196, 15, 0.05); }

/* Boxes */
.pro-tip, .accent-box { border-left: 5px solid var(--accent); background: rgba(241, 196, 15, 0.05); padding: 30px; border-radius: 0 15px 15px 0; margin: 40px 0; }
.alert-box { border-left: 5px solid #e74c3c; background: rgba(231, 76, 60, 0.05); padding: 30px; border-radius: 0 15px 15px 0; color: #ff8e8e; }

.promo-code { margin-top: 20px; background: #000; padding: 15px; border-radius: 10px; border: 1px dashed var(--accent); color: var(--accent); font-weight: 800; text-align: center; }

/* Table */
table { width: 100%; border-collapse: collapse; margin-top: 40px; background: var(--bg-card); border-radius: 15px; overflow: hidden; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #1a1d26; color: var(--accent); text-transform: uppercase; font-size: 0.75rem; }

/* Animations */
.pulse { animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0px rgba(241, 196, 15, 0.6); }
    100% { box-shadow: 0 0 0 25px rgba(241, 196, 15, 0); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .anchor-links { display: none; }
}