/* ===== CSS ПЕРЕМЕННЫЕ (ТЁМНО-СИНЯЯ ЦВЕТОВАЯ СХЕМА) ===== */
:root {
    /* Основные цвета */
    --bg-primary: #0f172a;           /* Основной фон */
    --bg-secondary: #1e293b;         /* Фон карточек */
    --bg-tertiary: #334155;          /* Активный/ховер состояние */
    --bg-accent: rgba(30, 64, 175, 0.1); /* Акцентный фон */
    
    /* Текст */
    --text-primary: #f1f5f9;         /* Основной текст */
    --text-secondary: #cbd5e1;       /* Вторичный текст */
    --text-muted: #94a3b8;           /* Нейтральный текст */
    --text-accent: #60a5fa;          /* Акцентный текст */
    
    /* Акцентные цвета */
    --accent-primary: #3b82f6;       /* Основной синий */
    --accent-secondary: #10b981;     /* Зелёный для успеха/бонусов */
    --accent-warning: #f59e0b;       /* Жёлтый для предупреждений */
    --accent-danger: #ef4444;        /* Красный для опасности */
    
    /* Границы и тени */
    --border-color: #475569;
    --border-light: #64748b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Скругления */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    background-image: 
        radial-gradient(at 100% 0%, rgba(30, 64, 175, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(6, 182, 212, 0.1) 0px, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ШАПКА ===== */
.header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-primary);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--text-accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    background-image: linear-gradient(to bottom, var(--accent-primary), #2563eb);
}

.btn-accent {
    background-color: var(--accent-secondary);
    color: white;
    background-image: linear-gradient(to bottom, var(--accent-secondary), #0da271);
}

.btn-secondary {
    background: transparent;
    color: var(--text-accent);
    border: 1px solid var(--accent-primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background-color: rgba(59, 130, 246, 0.05);
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-accent:hover {
    background-color: #0da271;
}

.btn-secondary:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* ===== БУРГЕР-МЕНЮ ===== */
.burger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--bg-secondary);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
    font-size: 16px;
}

.mobile-link.active {
    color: var(--text-accent);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

/* ===== ГЛАВНЫЙ БАННЕР ===== */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1e3a8a 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-primary), var(--text-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== СЕКЦИИ ===== */
.section {
    padding: 80px 0;
}

.section.dark {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== РЕЙТИНГ КАЗИНО ===== */
.rating {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.rating-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.rating-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rating-badge {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    background-color: var(--bg-tertiary);
    color: var(--accent-primary);
}

.rating-content {
    flex: 1;
    padding: 25px;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.casino-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), #60a5fa);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--radius-sm);
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.casino-rating {
    color: #fbbf24;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: var(--accent-secondary);
}

.rating-actions {
    display: flex;
    gap: 15px;
}

/* ===== СЛОТЫ ===== */
.slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.slot-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.slot-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.slot-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.slot-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-trigger {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(59, 130, 246, 0.9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-trigger:hover {
    background-color: var(--accent-primary);
}

.slot-info {
    padding: 25px;
}

.slot-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.slot-provider {
    color: var(--text-accent);
    font-weight: 500;
}

.slot-rtp {
    color: var(--accent-secondary);
    font-weight: 500;
}

.slot-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.slot-actions {
    display: flex;
    gap: 15px;
}

/* ===== ДЕМО-ИГРА ===== */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.demo-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.demo-close:hover {
    color: var(--text-primary);
}

.demo-body {
    padding: 30px;
}

.slot-machine {
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 20px;
}

.reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reel {
    width: 70px;
    height: 70px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slot-controls {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.bet-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bet-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.bet-btn:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.current-bet {
    font-size: 18px;
    color: var(--text-primary);
}

.spin-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-primary), #2563eb);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.game-result {
    padding: 15px;
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 16px;
    color: var(--text-primary);
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-note {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.demo-note p {
    color: var(--text-accent);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== СТРАНИЦЫ КОНТЕНТА ===== */
.page-content {
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-bottom: 30px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-block ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.content-block li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ===== СПЕЦИАЛЬНЫЕ ЭЛЕМЕНТЫ ДЛЯ ABOUT.HTML ===== */
.workflow {
    margin-top: 30px;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.workflow-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.principle-card {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.principle-icon {
    font-size: 36px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.principle-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.criteria {
    margin-top: 30px;
}

.criterion {
    margin-bottom: 20px;
}

.criterion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.criterion-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.criterion-score {
    color: var(--text-muted);
    font-size: 14px;
}

.criterion-bar {
    height: 8px;
    background-color: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.criterion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.checklist i {
    color: var(--accent-secondary);
    margin-top: 3px;
}

.warning-note {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--accent-warning);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.warning-note i {
    color: var(--accent-warning);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info {
    background-color: var(--bg-tertiary);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-primary);
    width: 20px;
}

.note {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

.note p {
    color: var(--text-accent);
    font-size: 14px;
    margin-bottom: 0;
}

/* ===== СПЕЦИАЛЬНЫЕ ЭЛЕМЕНТЫ ДЛЯ RULES.HTML ===== */
.rules-notice {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.rules-notice p {
    color: var(--text-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.acceptance-box {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.acceptance-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.effective-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* ===== ФУТЕР ===== */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 15px;
}

.disclaimer {
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #fca5a5;
}

.disclaimer i {
    color: #ef4444;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a {
    color: var(--text-accent);
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav, .header-actions {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rating-card {
        flex-direction: column;
    }
    
    .rating-badge {
        width: 100%;
        height: 60px;
        font-size: 28px;
    }
    
    .rating-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .casino-logo {
        margin: 0 auto;
    }
    
    .rating-features {
        justify-content: center;
    }
    
    .rating-actions {
        flex-direction: column;
    }
    
    .slots {
        grid-template-columns: 1fr;
    }
    
    .slot-actions {
        flex-direction: column;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .principles {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .reels {
        gap: 10px;
    }
    
    .reel {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 20px;
    }
}