/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0d0d15;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s ease; }
ul, ol { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --gold: #d4a017;
    --gold-light: #f4c430;
    --red: #e63946;
    --dark-bg: #0d0d15;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.08);
    --text: #e0e0e0;
    --text-muted: #8a8a9a;
    --container: 1200px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold-light); }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px; font-weight: 600;
    font-size: .95rem; cursor: pointer; border: none;
    transition: all .3s ease; white-space: nowrap;
}
.btn-primary {
    background: var(--red); color: #fff;
    box-shadow: 0 4px 20px rgba(230,57,70,.3);
}
.btn-primary:hover { background: #c5303c; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(230,57,70,.45); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0d0d15; font-weight: 700;
    box-shadow: 0 4px 20px rgba(212,160,23,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,160,23,.5); }
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(13,13,21,.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 45px; width: auto; }
.header-nav { display: flex; gap: 30px; }
.header-nav a { font-weight: 500; font-size: .9rem; color: var(--text-muted); }
.header-nav a:hover { color: var(--gold-light); }
.header-cta { display: flex; gap: 12px; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; width: 100%;
    background: rgba(13,13,21,.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 16px; z-index: 999;
    border-bottom: 1px solid var(--card-border);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1rem; padding: 10px 0; border-bottom: 1px solid var(--card-border); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a14 0%, #12121f 40%, #1a1428 70%, #0d0d15 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,160,23,.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-particles {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(212,160,23,.3), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(212,160,23,.2), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,.3), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(212,160,23,.2), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(244,196,48,.2), transparent);
    animation: float-particles 20s linear infinite;
}
@keyframes float-particles { from { transform: translateY(0); } to { transform: translateY(-30px); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3);
    padding: 8px 20px; border-radius: 50px; font-size: .85rem;
    color: var(--gold-light); margin-bottom: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }
.hero-content h1 {
    font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 900;
    line-height: 1.15; margin-bottom: 20px; color: #fff;
}
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.stat-suffix { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold-light); }
.stat-label { display: block; font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-glow {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,160,23,.15) 0%, transparent 70%);
    border-radius: 50%; filter: blur(60px);
}
.hero-img {
    position: relative; z-index: 1; max-height: 500px; width: auto;
    border-radius: 20px; object-fit: cover;
    animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ===== SECTIONS COMMON ===== */
.section-title {
    font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800;
    text-align: center; margin-bottom: 12px; color: #fff;
}
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 50px; font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 36px 28px; text-align: center;
    transition: all .4s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity .4s ease;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(212,160,23,.2); background: rgba(255,255,255,.06); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(212,160,23,.15), rgba(244,196,48,.08));
    border-radius: 18px; font-size: 1.6rem; color: var(--gold-light);
}
.feature-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; margin-bottom: 12px; color: #fff; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CATEGORIES ===== */
.categories { padding: 80px 0 100px; background: rgba(255,255,255,.01); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 36px 28px; text-align: center;
    transition: all .4s ease;
}
.category-card:hover { transform: translateY(-8px); border-color: rgba(212,160,23,.2); }
.category-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(230,57,70,.12), rgba(230,57,70,.05));
    border-radius: 50%; font-size: 2rem; color: var(--red);
    transition: all .4s ease;
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0d0d15;
}
.category-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; margin-bottom: 12px; color: #fff; }
.category-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

/* ===== BONUS SLIDER ===== */
.bonuses { padding: 100px 0; }
.bonus-slider-wrapper { position: relative; overflow: hidden; margin-bottom: 40px; }
.bonus-slider {
    display: flex; gap: 24px; transition: transform .5s ease;
    cursor: grab;
}
.bonus-slider:active { cursor: grabbing; }
.bonus-slide {
    min-width: calc(25% - 18px); border-radius: 16px; overflow: hidden;
    transition: transform .3s ease;
}
.bonus-slide img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.bonus-slide:hover { transform: scale(1.03); }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(0,0,0,.7); border: 1px solid var(--card-border);
    color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s ease;
}
.slider-btn:hover { background: var(--gold); color: #0d0d15; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.bonus-cta { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; }
.cta-inner {
    background: linear-gradient(135deg, #1a1028 0%, #0f1a2e 50%, #1a1028 100%);
    border: 1px solid rgba(212,160,23,.15);
    border-radius: 24px; padding: 60px; display: flex;
    align-items: center; justify-content: space-between; gap: 40px;
    position: relative; overflow: hidden;
}
.cta-inner::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,160,23,.08), transparent 70%);
    border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 12px; color: #fff; }
.cta-content p { color: var(--text-muted); max-width: 500px; }
.cta-buttons { display: flex; gap: 16px; position: relative; z-index: 1; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: rgba(255,255,255,.01); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--card-border); border-radius: 14px;
    margin-bottom: 14px; overflow: hidden;
    background: var(--card-bg); transition: border-color .3s ease;
}
.faq-item:hover { border-color: rgba(212,160,23,.2); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none;
    color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer;
    font-family: 'Inter', sans-serif; text-align: left;
}
.faq-question i { transition: transform .3s ease; color: var(--gold); font-size: .85rem; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 0; max-height: 0; overflow: hidden; transition: all .4s ease; }
.faq-answer.active { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 80px 0; }
.seo-content article { max-width: 900px; margin: 0 auto; }
.seo-content h2 { font-family:'Outfit',sans-serif; font-size:1.8rem; color:#fff; margin-bottom:20px; }
.seo-content h3 { font-family:'Outfit',sans-serif; font-size:1.25rem; color:var(--gold-light); margin: 28px 0 12px; }
.seo-content p { color:var(--text-muted); margin-bottom:16px; font-size:.95rem; }
.seo-content strong { color:#fff; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--card-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--card-bg); border: 1px solid var(--card-border);
    color: var(--text-muted); font-size: 1rem;
    transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); color: #0d0d15; border-color: var(--gold); }
.footer-links h4 { font-family:'Outfit',sans-serif; font-size:1rem; color:#fff; margin-bottom:16px; }
.footer-links a { display:block; font-size:.85rem; color:var(--text-muted); padding:5px 0; }
.footer-links a:hover { color:var(--gold-light); }
.footer-bottom {
    border-top: 1px solid var(--card-border); padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-warning { margin-top: 10px; color: var(--red); font-size: .78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; padding: 40px 30px; }
    .cta-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .header-nav, .header-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .features-grid, .categories-grid { grid-template-columns: 1fr; }
    .bonus-slide { min-width: calc(50% - 12px); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .bonus-slide { min-width: calc(80% - 12px); }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
