@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
    --bg-dark: #07070a;
    --bg-panel: #0d0d14;
    --bg-panel-hover: #151520;
    --accent-primary: #3b82f6; /* Синий */
    --accent-secondary: #8b5cf6; /* Фиолетовый */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body { margin: 0; font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); margin: 0; font-weight: 700; }
a { color: inherit; text-decoration: none; }

/* ================= NAVBAR ================= */
.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; background: rgba(7, 7, 10, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 1000; border-bottom: 1px solid var(--border-color); box-sizing: border-box; }
.nav-brand { font-size: 1.8rem; font-weight: 800; background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--text-main); }
.nav-btn { background: var(--accent-primary); color: #fff; padding: 10px 25px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 15px var(--accent-glow); transition: all 0.3s; border: none; cursor: pointer; display: inline-block; }
.nav-btn:hover { background: var(--accent-secondary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6); }

/* ================= FOOTER ================= */
.premium-footer { background: var(--bg-panel); padding: 80px 50px 30px; margin-top: auto; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-desc { color: var(--text-muted); margin-top: 15px; font-size: 0.95rem; line-height: 1.5; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.03); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; border: 1px solid var(--border-color); font-weight: 600; font-size: 0.8rem; }
.social-icon:hover { background: var(--accent-primary); border-color: var(--accent-primary); transform: translateY(-3px); box-shadow: 0 5px 15px var(--accent-glow); }
.footer-col h3 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-primary); }
.footer-bottom { border-top: 1px solid var(--border-color); margin-top: 50px; padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.85rem; max-width: 1200px; margin-inline: auto; }
.heart { color: #ef4444; }

/* ================= LAYOUT ================= */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; padding-top: 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; width: 100%; box-sizing: border-box; }
.page-header { text-align: center; padding: 60px 20px 40px; }
.page-title { font-size: 3.5rem; margin-bottom: 15px; letter-spacing: -1px; }
.page-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ================= HOME HERO ================= */
.hero { text-align: center; padding: 120px 20px 80px; position: relative; }
.hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); z-index: -1; pointer-events: none; opacity: 0.5; }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 50px; color: var(--accent-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 25px; }
.hero-title { font-size: 5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px; }
.hero-title span { background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; }
.hero-actions { display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap; }

.ip-box { display: flex; align-items: center; background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); border-radius: 12px; padding: 12px 20px; cursor: pointer; transition: all 0.3s; position: relative; }
.ip-box:hover { border-color: var(--accent-primary); background: rgba(59, 130, 246, 0.05); transform: translateY(-2px); }
.ip-text { margin-left: 15px; text-align: left; }
.ip-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.ip-val { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; }
.status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* ================= FEATURES GRID ================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { background: var(--bg-panel); border: 1px solid var(--border-color); padding: 40px; border-radius: 16px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--accent-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: var(--bg-panel-hover); }
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; padding: 15px; background: rgba(255,255,255,0.03); border-radius: 12px; }
.feature-title { font-size: 1.3rem; margin-bottom: 15px; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; }

/* ================= CONTENT CARDS & STORE ================= */
.content-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; margin-bottom: 30px; }
.store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.store-item { background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px; text-align: center; position: relative; overflow: hidden; transition: all 0.3s; }
.store-item:hover { transform: translateY(-10px); border-color: var(--accent-primary); }
.store-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent-primary); }
.store-item.premium::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.store-item.premium { border-color: rgba(245, 158, 11, 0.3); }
.store-price { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); margin: 20px 0; color: #fff; }
.store-features { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; color: var(--text-muted); font-size: 0.95rem; text-align: left; }
.store-features li::before { content: '✓'; color: #10b981; margin-right: 10px; font-weight: bold; }
.btn-block { display: block; width: 100%; text-align: center; box-sizing: border-box; }

/* ================= SUPPORT / FAQ ================= */
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--accent-primary); }
.faq-answer { padding-bottom: 20px; color: var(--text-muted); display: none; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.3s ease; }
.faq-item.active .faq-question { color: var(--accent-primary); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* ================= FORMS ================= */
.form-group { margin-bottom: 20px; text-align: left; }
.form-label { display: block; margin-bottom: 8px; color: var(--text-muted); font-size: 0.9rem; }
.form-input, .form-textarea { width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); border-radius: 8px; color: #fff; font-family: var(--font-body); box-sizing: border-box; transition: all 0.3s; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent-primary); background: rgba(255,255,255,0.04); }

/* ================= TEXT PAGES (POLICY/RULES) ================= */
.text-page { max-width: 800px; margin: 0 auto; color: var(--text-muted); text-align: left; }
.text-page h2 { color: #fff; margin: 40px 0 20px; font-size: 1.5rem; }
.text-page p { margin-bottom: 20px; line-height: 1.7; }
.text-page ul { margin-bottom: 20px; padding-left: 20px; }
.text-page li { margin-bottom: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; /* In a real app, we'd add a hamburger menu */ }
    .hero-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}
