/* ==========================================================================
   INDEX.CSS — COMPLETE REWRITE (Gaming High Contrast)
   ========================================================================== */

:root {
    --bg: #0d1117;           /* Глубокий темный */
    --bg-alt: #161b22;       /* Угольный серый */
    --accent: #f0b429;       /* Золотой акцент */
    --text-main: #e6edf3;    /* Бело-серебристый текст */
    --text-muted: #8b949e;
    --border: #30363d;
    --radius: 12px;
}

body { background: var(--bg); color: var(--text-main); font-family: 'Inter', sans-serif; }

/* Хедер/Hero */
.hero-section { padding: 120px 0 100px; text-align: center; background: radial-gradient(circle at 50% 50%, #1e293b 0%, var(--bg) 100%); }
.hero-logo { font-size: 64px; margin-bottom: 20px; }
.hero-title { font-size: 48px; color: #fff !important; margin-bottom: 20px; }
.hero-subtitle { color: var(--text-muted); font-size: 20px; max-width: 700px; margin: 0 auto 40px; }

/* Заголовки разделов */
.section-title { font-size: 32px; color: var(--accent) !important; text-align: center; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px; }

/* Кнопки */
.btn { padding: 14px 30px; border-radius: 8px; font-weight: 800; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: 0.2s; }
.btn-primary { background: var(--accent); color: #0d1117 !important; border: none; }
.btn-primary:hover { background: #ffcc4d; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: #fff !important; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent) !important; }

/* Исправление ФОРМ ( labels теперь белые ) */
.dark-form { background: var(--bg-alt); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.dark-form label { color: #ffffff !important; font-weight: 700; display: block; margin-bottom: 10px; font-size: 15px; }
.dark-form input, .dark-form select { background: #0d1117 !important; color: #fff !important; border: 1px solid var(--border) !important; padding: 14px; width: 100%; border-radius: 8px; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Таблицы */
.schedule-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.schedule-table th { background: var(--bg-alt); padding: 20px; text-align: left; color: var(--text-muted); font-size: 14px; }
.schedule-table td { padding: 20px; border-bottom: 1px solid var(--border); color: #fff; }
.accent-text { color: var(--accent); font-weight: 700; }

/* Секция подписки */
.subscribe-banner { background: linear-gradient(90deg, #1e293b, #0d1117); border: 2px solid var(--accent); padding: 40px; border-radius: 16px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.subscribe-info h2 { color: var(--accent) !important; margin: 0; }
.input-group { display: flex; gap: 10px; flex: 1; max-width: 450px; }

/* Футер */
.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--border); background: #0a0d14; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-nav a { margin-right: 20px; color: var(--text-muted); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid #1c2128; padding-top: 30px; font-size: 13px; color: var(--text-muted); }

/* ==========================================================================
   POLICY PAGE STYLES
   ========================================================================== */

/* Контейнер для текста политики */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card); /* Используем темный фон карточки */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Заголовки внутри политики */
.policy-content h3 {
    color: var(--accent) !important;
    font-size: 20px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(240, 180, 41, 0.2); /* Тонкая золотая линия */
    text-transform: none; /* Убираем капс для удобства чтения */
    letter-spacing: 0.5px;
}

/* Первый заголовок без верхнего отступа */
.policy-content h3:first-child {
    margin-top: 0;
}

/* Текст параграфов */
.policy-content p {
    color: var(--text) !important;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Списки (пункты данных) */
.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    color: var(--text);
    margin-bottom: 8px;
    position: relative;
    list-style-type: none; /* Убираем стандартные точки */
}

/* Кастомные золотые точки для списка */
.policy-content li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

/* Выделение жирным (например, названия организации) */
.policy-content strong {
    color: var(--accent);
    font-weight: 600;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .policy-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .policy-content h3 {
        font-size: 18px;
    }
}
