/* style.css - ТЕМНАЯ ТЕМА для Starburst India с вендорными префиксами */
:root {
    --primary-dark: #0a0e2a;
    --secondary-dark: #1a1f3a;
    --accent-blue: #00e5ff;
    --accent-purple: #9d4edd;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd166;
    --text-light: #ffffff;
    --text-gray: #b0b7d6;
    --success-green: #4ade80;
    --warning-yellow: #fbbf24;
    --error-red: #f87171;
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.3);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #00e5ff, #9d4edd);
    --gradient-secondary: linear-gradient(135deg, #ff6b35, #ffd166);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--primary-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Nirmala UI', 'Mangal', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ТЕМНАЯ ШАПКА */
.site-header {
    background: rgba(10, 14, 42, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    -webkit-box-shadow: var(--shadow-dark);
    -moz-box-shadow: var(--shadow-dark);
    box-shadow: var(--shadow-dark);
}

.header-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    font-size: 2.2rem;
}

/* Навигация */
.main-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    background: rgba(26, 31, 58, 0.8);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.lang-btn {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--gradient-primary);
    color: white;
    -webkit-box-shadow: var(--shadow-glow);
    -moz-box-shadow: var(--shadow-glow);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 229, 255, 0.1);
}

/* ГЛАВНЫЙ БАННЕР */
.hero {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(10, 14, 42, 0.9)), to(rgba(26, 31, 58, 0.9))), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=1000');
    background: -webkit-linear-gradient(135deg, rgba(10, 14, 42, 0.9), rgba(26, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=1000');
    background: -moz-linear-gradient(135deg, rgba(10, 14, 42, 0.9), rgba(26, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=1000');
    background: -o-linear-gradient(135deg, rgba(10, 14, 42, 0.9), rgba(26, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=1000');
    background: linear-gradient(135deg, rgba(10, 14, 42, 0.9), rgba(26, 31, 58, 0.9)), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.3), transparent 50%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    background: -webkit-gradient(linear, left top, right bottom, from(#fff), to(var(--accent-blue)));
    background: -webkit-linear-gradient(45deg, #fff, var(--accent-blue));
    background: -moz-linear-gradient(45deg, #fff, var(--accent-blue));
    background: -o-linear-gradient(45deg, #fff, var(--accent-blue));
    background: linear-gradient(45deg, #fff, var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    -webkit-text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    -moz-text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ЯРКИЕ КНОПКИ */
.cta-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: -moz-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    -webkit-box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    -moz-box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    -webkit-transform: translateY(-5px) scale(1.05);
    -moz-transform: translateY(-5px) scale(1.05);
    -ms-transform: translateY(-5px) scale(1.05);
    -o-transform: translateY(-5px) scale(1.05);
    transform: translateY(-5px) scale(1.05);
    -webkit-box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
    -moz-box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    -webkit-box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    -moz-box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    -webkit-transform: translateY(-5px) scale(1.05);
    -moz-transform: translateY(-5px) scale(1.05);
    -ms-transform: translateY(-5px) scale(1.05);
    -o-transform: translateY(-5px) scale(1.05);
    transform: translateY(-5px) scale(1.05);
    -webkit-box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    -moz-box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-casino {
    background: -webkit-gradient(linear, left top, right bottom, from(#ff0080), to(#ff8c00));
    background: -webkit-linear-gradient(135deg, #ff0080, #ff8c00);
    background: -moz-linear-gradient(135deg, #ff0080, #ff8c00);
    background: -o-linear-gradient(135deg, #ff0080, #ff8c00);
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    color: white;
    font-size: 1.2rem;
    padding: 20px 40px;
    -webkit-box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    -moz-box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); }
    70% { -webkit-box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); }
}

@-moz-keyframes pulse {
    0% { -moz-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); }
    70% { -moz-box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); }
    100% { -moz-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); }
}

@keyframes pulse {
    0% { 
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); 
        -moz-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); 
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); 
    }
    70% { 
        -webkit-box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); 
        -moz-box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); 
        box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); 
    }
    100% { 
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); 
        -moz-box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); 
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); 
    }
}

.btn-casino:hover {
    -webkit-transform: translateY(-5px) scale(1.08);
    -moz-transform: translateY(-5px) scale(1.08);
    -ms-transform: translateY(-5px) scale(1.08);
    -o-transform: translateY(-5px) scale(1.08);
    transform: translateY(-5px) scale(1.08);
    -webkit-box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
    -moz-box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
}

/* ОСНОВНОЙ КОНТЕНТ */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    background: -webkit-gradient(linear, left top, right bottom, from(var(--accent-blue)), to(var(--accent-purple)));
    background: -webkit-linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    background: -moz-linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    background: -o-linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    position: relative;
    padding-bottom: 20px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--accent-gold);
}

.content-section h4 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--accent-blue);
}

.content-section p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.content-section ul, .content-section ol {
    margin-bottom: 30px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 12px;
    color: var(--text-gray);
    padding-left: 10px;
}

.feature-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(350px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(26, 31, 58, 0.8)), to(rgba(10, 14, 42, 0.8)));
    background: -webkit-linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 42, 0.8));
    background: -moz-linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 42, 0.8));
    background: -o-linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 42, 0.8));
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 42, 0.8));
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.feature-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    -webkit-box-shadow: var(--shadow-dark);
    -moz-box-shadow: var(--shadow-dark);
    box-shadow: var(--shadow-dark);
}

.feature-card h3 {
    color: var(--accent-blue);
    margin-top: 0;
    font-size: 1.8rem;
}

.info-box {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 229, 255, 0.1)), to(rgba(157, 78, 221, 0.1)));
    background: -webkit-linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(157, 78, 221, 0.1));
    background: -moz-linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(157, 78, 221, 0.1));
    background: -o-linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(157, 78, 221, 0.1));
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-left: 4px solid var(--accent-blue);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.warning-box {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 107, 53, 0.1)), to(rgba(255, 209, 102, 0.1)));
    background: -webkit-linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 209, 102, 0.1));
    background: -moz-linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 209, 102, 0.1));
    background: -o-linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 209, 102, 0.1));
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 209, 102, 0.1));
    border-left: 4px solid var(--accent-orange);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stats-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(26, 31, 58, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* БЛОК С КАЗИНО КНОПКОЙ */
.casino-promo {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 0, 128, 0.1)), to(rgba(255, 140, 0, 0.1)));
    background: -webkit-linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 140, 0, 0.1));
    background: -moz-linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 140, 0, 0.1));
    background: -o-linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 140, 0, 0.1));
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: var(--border-radius);
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.casino-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    -webkit-animation: rotate 20s linear infinite;
    -moz-animation: rotate 20s linear infinite;
    -o-animation: rotate 20s linear infinite;
    animation: rotate 20s linear infinite;
}

@-webkit-keyframes rotate {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes rotate {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}

@keyframes rotate {
    0% { 
        -webkit-transform: rotate(0deg); 
        -moz-transform: rotate(0deg); 
        -ms-transform: rotate(0deg); 
        -o-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }
    100% { 
        -webkit-transform: rotate(360deg); 
        -moz-transform: rotate(360deg); 
        -ms-transform: rotate(360deg); 
        -o-transform: rotate(360deg); 
        transform: rotate(360deg); 
    }
}

.casino-promo h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.casino-promo p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ТЕМНЫЙ ПОДВАЛ */
.site-footer {
    background: rgba(10, 14, 42, 0.95);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-logo span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
}

.footer-nav h4 {
    color: var(--accent-blue);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.footer-nav a::before {
    content: '→';
    color: var(--accent-blue);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a:hover::before {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* МНОГОЯЗЫЧНОСТЬ */
[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Nirmala UI', 'Mangal', sans-serif;
    line-height: 1.9;
}

.hi-text {
    display: none;
}

.en-text {
    display: block;
}

.lang-hi .hi-text {
    display: block;
}

.lang-hi .en-text {
    display: none;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .content-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 42, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 20px;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        border-top: 1px solid rgba(0, 229, 255, 0.2);
        -webkit-box-shadow: var(--shadow-dark);
        -moz-box-shadow: var(--shadow-dark);
        box-shadow: var(--shadow-dark);
    }
    
    .main-nav.active {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .cta-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .feature-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .casino-promo {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.7rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .lang-btn {
        min-width: 60px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* АНИМАЦИИ */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in {
    -webkit-animation: fadeInUp 0.6s ease-out;
    -moz-animation: fadeInUp 0.6s ease-out;
    -o-animation: fadeInUp 0.6s ease-out;
    animation: fadeInUp 0.6s ease-out;
}

/* Дополнительные исправления */
img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

th {
    background-color: var(--primary-dark);
    color: white;
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Улучшения для accessibility */
:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Скрытие элементов при печати */
@media print {
    .site-header, .site-footer, .casino-promo, .btn {
        display: none !important;
    }
}