/* CSS Variables for Conversion Landing Theme */
:root {
    --primary-green: #22C55E;
    --primary-green-dark: #16A34A;
    --primary-green-light: #4ADE80;
    --accent-orange: #FB923C;
    --accent-red: #EF4444;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #1F2937;
    
    --border-light: #E5E7EB;
    --border-primary: #D1D5DB;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 800;
}
h2 { 
    font-size: 2rem; 
    font-weight: 700;
}
h3 { 
    font-size: 1.5rem; 
    font-weight: 600;
}
h4 { 
    font-size: 1.25rem; 
    font-weight: 600;
}

/* Age Verification System */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    padding-top: 20px;
}

.verification-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-10px, -10px) scale(1.02);
    }
    66% {
        transform: translate(10px, 10px) scale(0.98);
    }
}

.verification-panel {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, #059669 100%);
    padding: 20px 18px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    margin: 10px;
    border: 2px solid var(--primary-green-light);
    box-shadow: 
        0 15px 40px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(74, 222, 128, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: panelAppear 0.6s ease-out;
    transform-style: preserve-3d;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.verification-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80 0%, #ffffff 50%, #4ade80 100%);
    border-radius: 20px 20px 0 0;
}

.verification-panel::after {
    content: '🎲';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.age-verification-logo {
    margin-bottom: 30px;
    position: relative;
}

.age-verification-logo i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.age-verification-logo h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.age-verification-logo h2::after {
    content: '🔞';
    position: absolute;
    top: -5px;
    right: -30px;
    font-size: 1.2rem;
    animation: float 2.5s ease-in-out infinite reverse;
}

/* Улучшенная читабельность заголовка и текста верификации возраста */
.verification-panel h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 12px 0 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.verification-panel > p {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 8px 0 12px 0;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
    line-height: 1.3;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(5px);
}

.age-verification-logo::after {
    content: 'Premium Casino Gateway';
    display: block;
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.age-icon {
    margin: 25px 0;
    position: relative;
}

.age-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: 
        0 0 0 2px rgba(34, 197, 94, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 4px rgba(34, 197, 94, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 8px rgba(34, 197, 94, 0.1),
            0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(5deg);
    }
    66% {
        transform: translateY(-4px) rotate(-3deg);
    }
}

.verification-panel ul {
    text-align: left;
    margin: 15px 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verification-panel li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.verification-panel li i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.verification-panel li:last-child {
    margin-bottom: 0;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.age-confirm-btn, .age-exit-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    min-width: 100px;
    justify-content: center;
}

.age-confirm-btn {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-green);
    border: 2px solid #ffffff;
    font-weight: 700;
}

.age-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.age-exit-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.age-exit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 8px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo:hover {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: rgba(34, 197, 94, 0.1);
}

.burger-menu {
    display: none;
}

/* Hero Section Compact */
.hero-compact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}



.hero-compact h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-compact p {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.badge i {
    font-size: 1.2rem;
}

.age-icon-small {
    width: 24px;
    height: 24px;
}

/* Mobile Compatibility Updates for 768px */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    /* Скрываем бургер меню на планшетах */
    .burger-menu {
        display: none !important;
    }

    .hero-compact {
        padding: 60px 0 40px;
    }

    .hero-compact h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-compact p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .age-modal-content {
        padding: 35px 25px;
        margin: 15px;
    }

    .age-verification-logo h2 {
        font-size: 1.6rem;
    }

    .age-modal-content h3 {
        font-size: 1.5rem;
    }

    .age-modal-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-confirm-btn, .age-exit-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Mobile Compatibility Updates for 480px */
@media (max-width: 480px) {
    /* Скрываем бургер меню на мобильных */
    .mobile-toggle {
        display: none !important;
    }
    
    /* Делаем блок ультра-компактным - как красная линия */
    .hero-compact {
        padding: 12px 0 8px;
    }

    .hero-compact h1 {
        font-size: 1.3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .hero-badges {
        gap: 6px;
    }

    .badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .verification-panel {
        padding: 15px 12px;
        margin: 5px;
        max-width: 300px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        z-index: 9999;
    }

    .verification-overlay {
        z-index: 9998;
        align-items: flex-start;
        padding-top: 15px;
    }

    .age-verification-logo {
        margin-bottom: 15px;
    }

    .age-verification-logo i {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .age-verification-logo h2 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .age-verification-logo h2::after {
        font-size: 0.9rem;
        right: -20px;
    }

    .verification-panel h3 {
        font-size: 0.95rem;
        margin: 8px 0 6px 0;
    }

    .verification-panel > p {
        font-size: 0.8rem;
        padding: 6px 8px;
        margin: 6px 0 8px 0;
    }

    .verification-panel ul {
        margin: 8px 0;
        padding: 10px;
    }

    .verification-panel li {
        font-size: 0.8rem;
        margin: 6px 0;
        gap: 8px;
    }

    .verification-panel li i {
        font-size: 1rem;
        width: 16px;
    }

    .age-modal-buttons {
        margin-top: 12px;
        gap: 8px;
    }

    .age-confirm-btn, .age-exit-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-width: 80px;
    }

    .age-icon {
        margin: 10px auto;
    }

    .age-icon img {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* === FOOTER STYLES FOR INDEX.HTML === */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-identity {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.brand-motto {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

.elite-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.credential-item i {
    color: var(--primary-green);
    width: 20px;
    font-size: 1rem;
}

.elite-contact .contact-elite {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.elite-contact .contact-elite:hover {
    color: var(--primary-green-light);
    transform: translateX(5px);
}

.footer-advantages h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-advantages h4 i {
    color: var(--primary-green);
}

.advantages-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.advantage-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
}

.advantage-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.advantage-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.advantage-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-navigation h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-navigation h4 i {
    color: var(--primary-green);
}

.navigation-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.nav-section h5 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.nav-elite-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-elite-link:hover {
    color: var(--primary-green);
    padding-left: 8px;
}

.elite-safety {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.safety-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.safety-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.safety-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.safety-access {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.safety-access:hover {
    color: var(--primary-green-light);
}

.footer-conclusion {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-expertise {
    margin-bottom: 30px;
}

.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.expertise-highlight {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-content h5 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-closing {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-elite {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright-elite > span {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.copyright-features {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.elite-notice {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-badge img {
    width: 35px;
    height: 35px;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notice-content span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.notice-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.notice-content a:hover {
    color: var(--primary-green-light);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navigation-sections {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .expertise-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .closing-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .advantages-layout {
        gap: 12px;
    }

    .advantage-item {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-brand .brand-icon {
        width: 40px;
        height: 40px;
    }

    .expertise-highlight {
        padding: 15px;
        gap: 12px;
    }

    .highlight-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .elite-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}



/* Casino Offers */
.top-offers {
    padding: 30px 0 45px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--gray-50) 100%);
    position: relative;
}

/* Кристалик удален для всех версий */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.offer-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.offer-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--gray-50) 100%);
}

.offer-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
}

.rank-number {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.rank-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 5px;
    text-transform: uppercase;
}

.casino-info {
    margin-bottom: 20px;
}

.casino-logo {
    margin-bottom: 15px;
}

.casino-logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.casino-name {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-details {
    margin-bottom: 25px;
}

.bonus-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.bonus-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #F59E0B;
    font-size: 1rem;
}

.score {
    font-weight: 700;
    color: var(--text-primary);
}

.offer-actions {
    text-align: center;
}

.play-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.people-picked {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.offers-note {
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-green-light));
    border-radius: 0;
    border: none;
    color: white;
    position: relative;
    margin: 30px 0;
}

.offers-note::before,
.offers-note::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.offers-note::before {
    left: -15px;
    border-width: 0 15px 66px 0;
    border-color: transparent var(--primary-green) transparent transparent;
}

.offers-note::after {
    right: -15px;
    border-width: 66px 15px 0 0;
    border-color: var(--primary-green) transparent transparent transparent;
}

.offers-note p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* FAQ Blog Section */
.faq-blog {
    padding: 70px 0;
    background: radial-gradient(ellipse at center, var(--gray-50) 0%, var(--bg-primary) 70%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 50px;
    border: 3px solid var(--primary-green);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
    flex: 0 1 300px;
    text-align: center;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: none;
    border-left: 3px solid var(--primary-green);
}

.responsible-grid {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-text {
    flex: 2;
}

.responsible-text h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.responsible-text p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.responsible-text a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.responsible-text a:hover {
    text-decoration: underline;
}

.help-contacts {
    background: rgba(34, 197, 94, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
    margin-top: 15px;
}

.help-contacts p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #2d3748;
}

.help-contacts p:last-child {
    margin-bottom: 0;
}

.responsible-logos {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.responsible-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.responsible-logos a:hover {
    border-color: var(--primary-green);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.responsible-logos img {
    max-width: 80px;
    height: auto;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.responsible-logos a:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px 0 20px;
    border-top: 2px solid var(--primary-green);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

/* Footer Brand Modern */
.footer-brand-modern {
    max-width: 280px;
}

.brand-header {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, #10b981 100%);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

.brand-tagline {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--primary-green);
}

.trust-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
    width: 16px;
}

.trust-item span {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-modern {
    margin-top: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-green);
}

.contact-link i {
    font-size: 0.8rem;
}

/* Footer Services Modern */
.footer-services-modern h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services-modern h4 i {
    color: var(--primary-green);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-point:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.service-point i {
    color: var(--primary-green);
    font-size: 1rem;
    margin-top: 2px;
    width: 18px;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-desc {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Footer Resources */
.footer-resources h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-resources h4 i {
    color: var(--primary-green);
}

.resources-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.resource-column h5 {
    color: var(--primary-green);
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.safety-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.safety-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, #10b981 100%);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-icon i {
    color: white;
    font-size: 0.9rem;
}

.safety-icon img {
    height: 24px;
    width: auto;
}

.safety-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.safety-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.safety-link {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.safety-link:hover {
    color: #10b981;
}

.safety-link i {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-age-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: var(--text-white);
    margin-bottom: 0;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* Cookie Banner Styles - Unified Design */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-top: 2px solid var(--primary-green-light);
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 
        0 -8px 25px rgba(34, 197, 94, 0.3),
        0 0 0 1px rgba(34, 197, 94, 0.4);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none; /* Hidden by default */
    backdrop-filter: blur(8px);
}

.cookie-banner.show {
    transform: translateY(0);
    display: block;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.95) 100%);
    z-index: -1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-text i {
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text div {
    flex: 1;
}

.cookie-text h4 {
    color: #ffffff;
    margin: 0 0 3px 0;
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cookie-text p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cookie-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 8px 15px;
    border: none;
    border-radius: 6px; /* Using specific value instead of var(--border-radius-sm) */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.cookie-accept {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-green);
    font-weight: 700;
}

.cookie-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-accept:hover,
.cookie-decline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .burger-menu {
        display: none;
    }

    .hero-compact {
        padding: 25px 0;
    }

    .hero-compact h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-compact p {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero-badges {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        padding: 20px;
    }

    .bonus-features {
        flex-direction: column;
        gap: 8px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .responsible-gaming {
        padding: 20px 0;
    }

    .responsible-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .responsible-text h3 {
        font-size: 1.2rem;
    }

    .responsible-logos {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .responsible-logos img {
        max-width: 60px;
    }

    .cookie-banner {
        padding: 10px 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-text {
        gap: 8px;
        text-align: center;
    }

    .cookie-text i {
        font-size: 1.2rem;
    }

    .cookie-text h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .cookie-text p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin: 0;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .cookie-accept,
    .cookie-decline {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .hero-compact {
        padding: 15px 0;
    }

    .hero-compact h1 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .hero-compact p {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    /* Cookie баннер - компактный для мобильных */
    .cookie-banner {
        padding: 8px 0;
    }

    .cookie-content {
        gap: 6px;
        padding: 0 10px;
    }

    .cookie-text {
        gap: 6px;
    }

    .cookie-text i {
        font-size: 1rem;
    }

    .cookie-text h4 {
        font-size: 0.85rem;
        margin-bottom: 1px;
    }

    .cookie-text p {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .cookie-actions {
        gap: 6px;
    }

    .cookie-accept,
    .cookie-decline {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 70px;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 15px;
    }

    .casino-logo img {
        height: 40px;
    }

    .bonus-amount {
        font-size: 1.1rem;
    }

    .play-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: radial-gradient(ellipse at center, var(--gray-50) 0%, var(--bg-primary) 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.8rem;
}

.contact-details h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-details p a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-details p a:hover {
    text-decoration: underline;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-container {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.submit-btn i {
    font-size: 1rem;
}

.help-section {
    margin-top: 50px;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.help-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.help-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.help-card.urgent {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fee2e2 0%, var(--bg-primary) 100%);
}

.help-card.urgent:hover {
    border-color: #dc2626;
}

.help-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card .help-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.help-card.urgent .help-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.help-icon i {
    color: white;
    font-size: 1.5rem;
}

.help-content h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.help-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.help-link:hover {
    background: var(--primary-green);
    color: white;
}

.help-card.urgent .help-link {
    color: #dc2626;
    border-color: #dc2626;
}

.help-card.urgent .help-link:hover {
    background: #dc2626;
    color: white;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.faq-list li:before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-list li:hover {
    color: var(--primary-green);
}

.faq-list li:last-child {
    border-bottom: none;
}

/* Footer Updates */
.footer-content {
    padding: 60px 0 40px;
}

/* Responsible Gaming Footer */
.responsible-gaming-footer {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.responsible-gaming-footer h4 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.responsible-gaming-footer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.responsible-gaming-footer a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.responsible-gaming-footer a:hover {
    color: var(--accent-red);
}

.help-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--border-radius-sm);
}

.help-info p {
    margin: 0;
    color: var(--text-white);
    font-size: 0.95rem;
}

.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.responsible-logos a {
    transition: transform 0.3s ease;
    display: block;
}

.responsible-logos a:hover {
    transform: translateY(-3px);
}

.age-badge {
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius-sm);
    padding: 5px;
    background: rgba(220, 38, 38, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 20px;
}

.footer-legal-modern {
    margin-bottom: 20px;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10b981 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-card:hover::before {
    opacity: 1;
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.legal-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, #10b981 100%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon i {
    color: white;
    font-size: 1.1rem;
}

.legal-text h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.legal-text p {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer Final Section */
.footer-final {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright-modern > span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-links span {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Gaming Notice - Unified Design */
.gaming-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.gaming-notice:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon img {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.notice-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.notice-text span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.notice-text a {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.notice-text a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.notice-text a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.notice-text a:hover i {
    transform: translateX(2px);
}

/* Mobile Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .footer-brand-modern {
        max-width: 100%;
        text-align: center;
    }
    
    .trust-indicators {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .trust-item {
    justify-content: center;
        text-align: center;
        padding: 6px 8px;
    }
    
    .services-grid {
        gap: 10px;
    }
    
    .service-point {
        padding: 10px;
    }
    
    .resources-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .safety-compact {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }
    
    .legal-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .legal-card {
        padding: 12px;
    }
    
    .legal-icon {
        width: 35px;
        height: 35px;
    }
    
    .final-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .gaming-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 12px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .service-point {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 8px;
    }
    
    .legal-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px;
    }
    
    .legal-text h5 {
        font-size: 0.9rem;
    }
    
    .legal-text p {
        font-size: 0.75rem;
    }
    
    .footer-final {
        padding: 12px;
    }
    
    .copyright-modern > span {
        font-size: 0.85rem;
    }
    
    .copyright-links span {
        font-size: 0.75rem;
    }
    
    .notice-text span {
        font-size: 0.75rem;
    }
    
    .notice-text a {
        font-size: 0.7rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
    background: radial-gradient(ellipse at center, var(--gray-50) 0%, var(--bg-primary) 70%);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-intro {
    margin-bottom: 40px;
    text-align: center;
}

.about-intro h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-intro .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mission-section,
.expertise-section,
.standards-section,
.team-section,
.commitment-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-green);
}

.mission-section h3,
.expertise-section h3,
.standards-section h3,
.team-section h3,
.commitment-section h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.pillar {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pillar-icon i {
    color: white;
    font-size: 1.5rem;
}

.pillar h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.expertise-card {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-header i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.card-header h4 {
    color: var(--text-primary);
    margin: 0;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
}

.expertise-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 20px;
}

.expertise-card li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.expertise-card li:last-child {
    border-bottom: none;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.standard-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.standard-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.standard-check {
    background: var(--primary-green);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard-check i {
    color: white;
    font-size: 0.9rem;
}

.standard-text h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.standard-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.team-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.role-card {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.role-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.role-icon i {
    color: white;
    font-size: 1.2rem;
}

.role-card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.role-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.commitment-box {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--primary-green);
    margin-top: 20px;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 25px;
}

.commitment-list li:before {
    content: '★';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.commitment-list li:last-child {
    border-bottom: none;
}

/* Content Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.sidebar-widget h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-green);
    margin-top: 2px;
    width: 16px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-green);
}

.sidebar-widget.responsible {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--bg-primary) 100%);
}

.safety-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--bg-primary);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

.safety-item i {
    color: var(--primary-green);
    font-size: 0.8rem;
    width: 12px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-links a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease;
}

.help-links a:hover {
    background: var(--gray-50);
}

.help-links a i {
    font-size: 0.8rem;
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background: radial-gradient(ellipse at center, var(--gray-50) 0%, var(--bg-primary) 70%);
}

.legal-content .container {
    max-width: 900px;
}

.last-updated {
    background: var(--primary-green);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    margin-bottom: 40px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    font-weight: 600;
}

.legal-section {
    background: var(--bg-primary);
    padding: 35px;
    margin-bottom: 25px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-green);
    box-shadow: var(--shadow-md);
}

.legal-section h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.legal-section h3 {
    color: var(--text-primary);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section li strong {
    color: var(--text-primary);
}

.disclaimer-box {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    color: white;
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
    text-align: center;
}

.disclaimer-box h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclaimer-box p {
    color: white;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Mobile Styles for About and Legal Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-main {
        padding: 25px;
    }
    
    .mission-pillars,
    .expertise-grid,
    .team-roles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mission-section,
    .expertise-section,
    .standards-section,
    .team-section,
    .commitment-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .legal-content .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .last-updated {
        padding: 12px 20px;
        margin-bottom: 25px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .about-content,
    .legal-content {
        padding: 40px 0;
    }
    
    .content-main {
        padding: 20px;
    }
    
    .pillar,
    .expertise-card,
    .role-card {
        padding: 20px;
    }
    
    .pillar-icon,
    .role-icon {
        width: 45px;
        height: 45px;
    }
    
    .pillar-icon i,
    .role-icon i {
        font-size: 1.2rem;
    }
    
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .disclaimer-box {
        padding: 20px;
        margin-top: 30px;
    }
    
    .disclaimer-box h4 {
        font-size: 1.1rem;
    }
}

/* Safer Gambling Page Styles */
.gambling-warning-detail {
    padding: 50px 0;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 5px solid #dc2626;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.warning-icon-large {
    background: #dc2626;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon-large i {
    color: white;
    font-size: 2rem;
}

.warning-text h2 {
    color: #dc2626;
    margin-bottom: 15px;
}

.warning-text p {
    color: #7f1d1d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.help-resources,
.guidelines-section,
.warning-signs,
.commission-section,
.additional-resources {
    padding: 60px 0;
    background: radial-gradient(ellipse at center, var(--gray-50) 0%, var(--bg-primary) 70%);
}

.help-resources:nth-child(even),
.guidelines-section:nth-child(even),
.warning-signs:nth-child(even),
.commission-section:nth-child(even) {
    background: var(--bg-primary);
}

.resources-grid,
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card,
.guideline-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.resource-card:hover,
.guideline-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.resource-icon,
.guideline-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon img {
    max-width: 40px;
    max-height: 40px;
}

.guideline-icon i {
    color: white;
    font-size: 1.8rem;
}

.resource-card h3,
.guideline-card h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.resource-card p,
.guideline-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-green);
    color: white;
}

.signs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.signs-column h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.signs-list {
    list-style: none;
    padding: 0;
}

.signs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.signs-list li:last-child {
    border-bottom: none;
}

.signs-list i {
    color: #dc2626;
    margin-top: 2px;
    flex-shrink: 0;
}

.action-box {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 40px;
}

.action-box h3 {
    color: white;
    margin-bottom: 15px;
}

.action-box p {
    color: white;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
}

.action-btn.primary:hover {
    background: transparent;
    color: white;
}

.action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.action-btn.secondary:hover {
    background: white;
    color: var(--primary-green);
}

.commission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.commission-info h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.commission-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.commission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.commission-list li:last-child {
    border-bottom: none;
}

.commission-list i {
    color: var(--primary-green);
    flex-shrink: 0;
}

.commission-logo {
    text-align: center;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-light);
}

.commission-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.commission-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.resource-item {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.resource-item h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.resource-item p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.resource-item a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.resource-item a:hover {
    text-decoration: underline;
}

/* Mobile Styles for Safer Gambling Page */
@media (max-width: 768px) {
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .warning-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .warning-icon-large i {
        font-size: 1.5rem;
    }
    
    .resources-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .resource-card,
    .guideline-card {
        padding: 25px;
    }
    
    .resource-icon,
    .guideline-icon {
        width: 60px;
        height: 60px;
    }
    
    .guideline-icon i {
        font-size: 1.5rem;
    }
    
    .signs-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .commission-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .commission-logo {
        padding: 20px;
    }
    
    .commission-logo img {
        max-width: 120px;
    }
    
    .resources-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gambling-warning-detail {
        padding: 30px 0;
    }
    
    .help-resources,
    .guidelines-section,
    .warning-signs,
    .commission-section,
    .additional-resources {
        padding: 40px 0;
    }
    
    .resource-card,
    .guideline-card {
        padding: 20px;
    }
    
    .resource-icon,
    .guideline-icon {
        width: 50px;
        height: 50px;
    }
    
    .guideline-icon i {
        font-size: 1.3rem;
    }
    
    .action-box {
        padding: 25px 20px;
    }
    
    .action-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Contact page mobile styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-quick {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-card {
        padding: 25px 20px;
    }
    
    .help-links {
        gap: 8px;
    }
    
    .help-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .faq-list li {
        padding: 10px 0 10px 20px;
        font-size: 0.9rem;
    }
}

/* Updated Navigation Styles */
.primary-navigation {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu-items {
    display: flex;
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item.current,
.menu-item:hover {
    color: var(--primary-green);
    background: rgba(34, 197, 94, 0.1);
}

/* Скрываем мобильную кнопку переключения везде */
.mobile-toggle {
    display: none !important;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Premium Banner */
.premium-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 40px 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.premium-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.premium-banner p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.age-symbol {
    width: 24px;
    height: 24px;
}

/* Elite Partnerships */
.elite-partnerships {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.partnership-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.partnership-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-rank {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.badge-status {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.operator-details {
    text-align: center;
    margin-bottom: 25px;
}

.operator-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.operator-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.partnership-benefits {
    margin-bottom: 25px;
}

.special-notice {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reward-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.countdown-timer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 15px;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.timer-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ef4444;
    font-family: monospace;
}

.partnership-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.spec {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-number {
    font-weight: 700;
    color: var(--text-primary);
}

.partnership-cta {
    text-align: center;
}

.elite-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.elite-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.activity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.counter-icon {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.count {
    font-weight: 600;
    color: var(--primary-green);
}

/* Partnerships Disclaimer */
.partnerships-disclaimer {
    text-align: center;
    padding: 25px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    margin-top: 20px;
}

.partnerships-disclaimer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.partnerships-disclaimer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Elite Credentials Flow */
.elite-credentials-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.credential-flow-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 25px;
    border: 1px solid #cbd5e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.credential-flow-item:hover::before {
    left: 100%;
}

.credential-flow-item:hover {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.credential-flow-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.credential-flow-item span {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.9rem;
}

.credential-flow-item a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.credential-flow-item a:hover {
    text-decoration: underline;
}

.age-badge-inline {
    height: 18px;
    width: auto;
}

.age-restriction {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #fca5a5;
}

.age-restriction:hover {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Elite Gaming Intelligence */
.gaming-intelligence {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.gaming-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.intelligence-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.intelligence-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intelligence-header p {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

.insights-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.insight-stream {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.insight-bubble::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-bubble:hover::before {
    opacity: 1;
}

.insight-bubble:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.bubble-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bubble-icon i {
    color: white;
    font-size: 1.3rem;
}

.insight-bubble h3 {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.insight-bubble p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Elite Gaming Responsibility */
.gaming-responsibility {
    padding: 45px 0;
    background: #fafbfc;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.gaming-responsibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.responsibility-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.responsibility-text {
    padding: 20px 0;
}

.responsibility-text h3 {
    color: #1a202c;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.responsibility-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #10b981, #059669);
    border-radius: 2px;
}

.responsibility-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.support-contacts {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 16px;
}

.support-contacts p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.support-contacts p:last-child {
    margin-bottom: 0;
}

.protection-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.protection-partners a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8fafb;
}

.protection-partners a:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.protection-partners img {
    max-height: 36px;
    max-width: 100%;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: grayscale(20%);
}

.protection-partners a:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }

    .menu-items.active {
        display: flex;
    }

    /* Скрываем мобильную кнопку переключения на планшетах */
    .mobile-toggle {
        display: none !important;
    }

    .premium-banner {
        padding: 30px 0;
    }

    .premium-banner h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .premium-banner p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .indicator {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partnership-card {
        padding: 25px 20px;
    }

    .operator-brand img {
        height: 50px;
    }

    .operator-title {
        font-size: 1.2rem;
    }

    .reward-headline {
        font-size: 1.1rem;
    }

    .partnership-specs {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .elite-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .elite-credentials-flow {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
        padding: 0 15px;
    }

    .credential-flow-item {
        padding: 10px 15px;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }

    .credential-flow-item span {
        font-size: 0.85rem;
    }

    .insights-flow {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .insight-bubble {
        padding: 20px;
    }

    .insight-bubble h3 {
        font-size: 1.15rem;
    }

    .insight-bubble p {
        font-size: 0.9rem;
    }

    .bubble-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .bubble-icon i {
        font-size: 1.2rem;
    }

    .responsibility-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .responsibility-text h3 {
        font-size: 1.4rem;
        padding-left: 20px;
    }

    .responsibility-text h3::before {
        width: 3px;
        height: 20px;
    }

    .protection-partners {
        padding: 16px;
        gap: 12px;
    }

    .protection-partners a {
        padding: 10px;
    }

    .protection-partners img {
        max-height: 32px;
    }

    .hub-header h2 {
        font-size: 1.7rem;
    }

    .hub-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .premium-banner {
        padding: 25px 0;
    }

    .premium-banner h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .premium-banner p {
        font-size: 1rem;
    }

    .indicator {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .partnership-card {
        padding: 20px 15px;
    }

    .operator-title {
        font-size: 1.1rem;
    }

    .reward-headline {
        font-size: 1rem;
        line-height: 1.3;
    }

    .elite-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .elite-credentials-flow {
        gap: 12px;
        margin: 15px 0;
        padding: 0 10px;
    }

    .credential-flow-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .credential-flow-item span {
        font-size: 0.8rem;
    }

    .age-badge-inline {
        height: 16px;
    }

    .insights-flow {
        gap: 20px;
        padding: 0 10px;
    }

    .insight-bubble {
        padding: 18px 15px;
    }

    .insight-bubble h3 {
        font-size: 1.05rem;
    }

    .insight-bubble p {
        font-size: 0.85rem;
    }

    .bubble-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .bubble-icon i {
        font-size: 1.1rem;
    }

    .intelligence-header {
        padding: 0 10px;
    }

    .intelligence-header h2 {
        font-size: 1.5rem;
    }

    .intelligence-header p {
        font-size: 0.95rem;
    }

    .responsibility-text {
        padding: 15px 0;
    }

    .responsibility-text h3 {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    .responsibility-text h3::before {
        width: 3px;
        height: 18px;
    }

    .responsibility-text p {
        font-size: 0.9rem;
    }

    .support-contacts {
        padding: 14px 16px;
    }

    .support-contacts p {
        font-size: 0.85rem;
    }

    .protection-partners {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .protection-partners a {
        padding: 12px;
    }

    .protection-partners img {
        max-height: 30px;
    }
}

/* === COMPATIBILITY ALIASES FOR OTHER PAGES === */
/* Age Modal Compatibility */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.age-modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 55px 45px;
    border-radius: 24px;
    text-align: center;
    max-width: 650px;
    margin: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 35px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    animation: panelAppear 0.6s ease-out;
}

@keyframes panelAppear {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-verification-logo {
    margin-bottom: 20px;
}

.age-verification-logo i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.age-verification-logo h2 {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-modal-content h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 25px 0 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.age-modal-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.age-icon {
    margin: 20px 0;
}

.age-icon img {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.age-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.age-modal-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.age-modal-content li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-confirm-btn, .age-exit-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    justify-content: center;
}

.age-confirm-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.age-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.age-exit-btn {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}

.age-exit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

/* Navigation Compatibility */
.main-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-green);
    background: rgba(34, 197, 94, 0.1);
}

/* Скрываем бургер меню везде */
.burger-menu {
    display: none !important;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section Compatibility */
.hero-compact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 40px 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-compact h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-compact p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.age-icon-small {
    width: 24px;
    height: 24px;
}

/* Footer Intelligence - в стиле блока Elite Gaming Intelligence */
.footer-intelligence {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    animation: footerShift 12s ease-in-out infinite;
}

@keyframes footerShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-5px, -5px) scale(1.01);
    }
    66% {
        transform: translate(5px, 5px) scale(0.99);
    }
}

.footer-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-header .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-header .brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.footer-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.footer-bubbles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-stream {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bubble {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-bubble:hover::before {
    opacity: 1;
}

.footer-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.footer-bubble .bubble-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.footer-bubble .bubble-icon i {
    color: white;
    font-size: 1.2rem;
}

.footer-bubble h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-bubble p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-bubble a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bubble a:hover {
    color: var(--primary-green-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.age-notice .age-badge {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer-intelligence {
        padding: 40px 0 20px;
    }
    
    .footer-header .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-header .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-bubbles {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-stream {
        gap: 20px;
    }
    
    .footer-bubble {
        padding: 20px;
        border-radius: 15px;
    }
    
    .footer-bubble .bubble-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-bubble .bubble-icon i {
        font-size: 1rem;
    }
    
    .footer-bubble h4 {
        font-size: 1rem;
    }
    
    .footer-bubble p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-intelligence {
        padding: 30px 0 15px;
    }
    
    .footer-header {
        margin-bottom: 30px;
    }
    
    .footer-header .footer-brand {
        font-size: 1.3rem;
        gap: 10px;
    }
    
    .footer-header .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-header p {
        font-size: 1rem;
    }
    
    .footer-bubbles {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-stream {
        gap: 15px;
    }
    
    .footer-bubble {
        padding: 18px;
        border-radius: 12px;
    }
    
    .footer-bubble .bubble-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 12px;
    }
    
    .footer-bubble .bubble-icon i {
        font-size: 0.9rem;
    }
    
    .footer-bubble h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .footer-bubble p {
        font-size: 0.85rem;
    }
    
    .age-notice .age-badge {
        width: 25px;
        height: 25px;
    }
    
    .age-notice {
        font-size: 0.85rem;
        gap: 8px;
    }
}

/* Classic Footer - максимально классический стиль */
.footer-classic {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 25px 0 15px;
    color: #6c757d;
}

.footer-classic .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 20px;
    align-items: start;
}

.footer-classic .footer-brand {
    max-width: 280px;
}

.footer-classic .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #343a40;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-classic .brand-logo i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.footer-classic .footer-brand p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.footer-classic .footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-classic .link-group h4 {
    color: #343a40;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-classic .link-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-classic .link-group a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-classic .link-group a:hover {
    color: var(--primary-green);
}

.footer-classic .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.footer-classic .copyright {
    color: #6c757d;
    font-size: 0.85rem;
}

.footer-classic .age-restriction {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.85rem;
}

.footer-classic .disclaimer {
    margin-top: 12px;
    padding: 12px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 6px;
}

.footer-classic .disclaimer p {
    color: #721c24;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.footer-classic .disclaimer strong {
    color: #dc3545;
}

.footer-classic .license-info {
    color: #6c757d;
    font-size: 0.8rem;
    margin: 0 0 8px 0;
    font-style: italic;
}

.footer-classic .age-restriction-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.footer-classic .age-restriction-inline img {
    width: 20px;
    height: 20px;
}

.footer-classic .age-restriction-inline span {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Адаптивность классического футера */
@media (max-width: 768px) {
    .footer-classic {
        padding: 20px 0 12px;
    }
    
    .footer-classic .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 15px;
    }
    
    .footer-classic .footer-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-classic .footer-bottom {
        text-align: center;
        padding-top: 12px;
    }
    
    .footer-classic .disclaimer {
        padding: 10px;
    }
    
    .footer-classic .disclaimer p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-classic {
        padding: 18px 0 8px;
    }
    
    .footer-classic .footer-content {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .footer-classic .footer-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-classic .brand-logo {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .footer-classic .brand-logo i {
        font-size: 1rem;
    }
    
    .footer-classic .link-group h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-classic .link-group a {
        font-size: 0.8rem;
    }
    
    .footer-classic .age-restriction-inline img {
        width: 18px;
        height: 18px;
    }
    
    .footer-classic .footer-bottom {
        padding-top: 10px;
    }
    
    .footer-classic .disclaimer {
        padding: 8px;
        margin-top: 10px;
    }
    
    .footer-classic .disclaimer p {
        font-size: 0.7rem;
    }
    
    .footer-classic .license-info {
        font-size: 0.75rem;
    }
    
    .footer-classic .age-restriction-inline span {
        font-size: 0.75rem;
    }
}