/* ============================================
   УНИКАЛИЗАЦИЯ ПРОЕКТА: analogmythic.com
   
   CSS АРХИТЕКТУРА: BEM (Block Element Modifier)
   ПАЛИТРА: Mythic Noir (mythic-purple, forest-green, athena-gold)
   ЭФФЕКТ: Neon Glow
   ТИПОГРАФИКА: Cinzel + Quicksand
   КНОПКИ: Neon Border Style
   ============================================ */

/* ============================================
   CSS VARIABLES - MYTHIC NOIR THEME
   ============================================ */
:root {
    /* Mythic Noir Palette */
    --mythic-purple: #9d00ff;
    --forest-green: #00ff88;
    --athena-gold: #ffd700;
    --shadow-black: #0a0a0f;
    --night-blue: #1a1a2e;
    --glow-cyan: #00ffff;
    --mystic-violet: #7b2cbf;
    --ancient-bronze: #cd7f32;
    
    /* Neutral Colors */
    --text-light: #f0f0f5;
    --text-muted: #9090a0;
    --card-bg: rgba(26, 26, 46, 0.9);
    --border-glow: rgba(157, 0, 255, 0.3);
    
    /* Layout */
    --header-height: 70px;
    --container-width: 1200px;
    --border-radius: 12px;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--shadow-black);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   MODALS - Age Verification & Cookie
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal--hidden {
    display: none;
}

.modal__box {
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--shadow-black) 100%);
    border: 2px solid var(--mythic-purple);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(157, 0, 255, 0.3),
        0 0 60px rgba(157, 0, 255, 0.1);
    animation: modalGlow 2s ease-in-out infinite alternate;
}

@keyframes modalGlow {
    from { box-shadow: 0 0 30px rgba(157, 0, 255, 0.3), 0 0 60px rgba(157, 0, 255, 0.1); }
    to { box-shadow: 0 0 40px rgba(157, 0, 255, 0.5), 0 0 80px rgba(157, 0, 255, 0.2); }
}

.modal__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--mythic-purple));
}

.modal__title {
    font-size: 1.5rem;
    color: var(--athena-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.modal__text {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.modal__question {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal__note {
    font-size: 0.85rem;
    color: var(--forest-green);
    margin-top: 1rem;
}

/* ============================================
   BUTTONS - Neon Border Style (BEM)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: transparent;
    border-color: var(--mythic-purple);
    color: var(--mythic-purple);
    text-shadow: 0 0 10px var(--mythic-purple);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
}

.btn--primary:hover {
    background: var(--mythic-purple);
    color: var(--shadow-black);
    box-shadow: 0 0 30px var(--mythic-purple), 0 0 60px rgba(157, 0, 255, 0.5);
    text-shadow: none;
}

.btn--secondary {
    background: transparent;
    border-color: var(--forest-green);
    color: var(--forest-green);
    text-shadow: 0 0 10px var(--forest-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn--secondary:hover {
    background: var(--forest-green);
    color: var(--shadow-black);
    box-shadow: 0 0 30px var(--forest-green), 0 0 60px rgba(0, 255, 136, 0.5);
    text-shadow: none;
}

.btn--gold {
    background: transparent;
    border-color: var(--athena-gold);
    color: var(--athena-gold);
    text-shadow: 0 0 10px var(--athena-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn--gold:hover {
    background: var(--athena-gold);
    color: var(--shadow-black);
    box-shadow: 0 0 30px var(--athena-gold), 0 0 60px rgba(255, 215, 0, 0.5);
    text-shadow: none;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--shadow-black) 100%);
    border: 2px solid var(--glow-cyan);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cookie-banner--visible {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cookie-banner__text a {
    color: var(--glow-cyan);
    text-decoration: underline;
}

/* ============================================
   HEADER (BEM)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header__logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--mythic-purple));
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--athena-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.header__badge {
    background: var(--forest-green);
    color: var(--shadow-black);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mythic-purple);
    box-shadow: 0 0 10px var(--mythic-purple);
    transition: width var(--transition-normal);
}

.nav__link:hover,
.nav__link--active {
    color: var(--mythic-purple);
    text-shadow: 0 0 10px var(--mythic-purple);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background: var(--mythic-purple);
    border-radius: 3px;
    transition: var(--transition-normal);
    box-shadow: 0 0 5px var(--mythic-purple);
}

.header__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.header__burger--active span:nth-child(2) {
    opacity: 0;
}

.header__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border-glow);
    padding: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 999;
}

.nav-mobile--active {
    transform: translateY(0);
}

.nav-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile__link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-normal);
}

.nav-mobile__link:hover,
.nav-mobile__link--active {
    border-color: var(--mythic-purple);
    color: var(--mythic-purple);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
}

/* ============================================
   HERO SECTION (BEM)
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--shadow-black) 0%, var(--night-blue) 100%);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--mythic-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--mythic-purple);
    animation: float 8s infinite;
}

.hero__particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero__particle:nth-child(2) { left: 25%; animation-delay: 1s; }
.hero__particle:nth-child(3) { left: 40%; animation-delay: 2s; background: var(--forest-green); box-shadow: 0 0 10px var(--forest-green); }
.hero__particle:nth-child(4) { left: 55%; animation-delay: 3s; }
.hero__particle:nth-child(5) { left: 70%; animation-delay: 4s; background: var(--athena-gold); box-shadow: 0 0 10px var(--athena-gold); }
.hero__particle:nth-child(6) { left: 85%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero__title-glow {
    color: var(--athena-gold);
    text-shadow: 
        0 0 20px var(--athena-gold),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__badge {
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid var(--border-glow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   BENEFITS SECTION (BEM)
   ============================================ */
.benefits {
    padding: 5rem 0;
    background: var(--night-blue);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mythic-purple), transparent);
}

.benefits__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--athena-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.benefits__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefits__card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.benefits__card:hover {
    border-color: var(--mythic-purple);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.2);
    transform: translateY(-5px);
}

.benefits__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--mythic-purple));
}

.benefits__card-title {
    font-size: 1.25rem;
    color: var(--forest-green);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.benefits__card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   GAMES SECTION (BEM)
   ============================================ */
.games {
    padding: 5rem 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
        var(--shadow-black);
}

.games__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--athena-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.games__subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.games__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 0 auto;
}

.games__card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    min-width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.games__card:hover {
    border-color: var(--mythic-purple);
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.3);
    transform: translateY(-5px);
}

.games__image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.games__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.games__card:hover .games__image {
    transform: scale(1.05);
}

.games__free-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--forest-green);
    color: var(--shadow-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.games__info {
    padding: 1.5rem;
}

.games__card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.games__card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.games__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.games__stars {
    color: var(--athena-gold);
    font-size: 0.9rem;
}

.games__rating-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   FAQ SECTION (BEM)
   ============================================ */
.faq {
    padding: 5rem 0;
    background: var(--night-blue);
}

.faq__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--athena-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq__item:hover {
    border-color: var(--mythic-purple);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--card-bg);
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq__question:hover {
    color: var(--mythic-purple);
}

.faq__icon {
    font-size: 1.5rem;
    color: var(--mythic-purple);
    transition: transform var(--transition-normal);
}

.faq__item--active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq__item--active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION (BEM)
   ============================================ */
.testimonials {
    padding: 5rem 0;
    background: var(--shadow-black);
}

.testimonials__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--athena-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.testimonials__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonials__card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.testimonials__card:hover {
    border-color: var(--forest-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.testimonials__stars {
    color: var(--athena-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonials__text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
}

.testimonials__name {
    font-weight: 600;
    color: var(--text-light);
}

.testimonials__location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   LEADERBOARD SECTION (BEM)
   ============================================ */
.leaderboard {
    padding: 5rem 0;
    background: var(--night-blue);
}

.leaderboard__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--athena-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.leaderboard__subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.leaderboard__grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.leaderboard__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    min-width: 220px;
    transition: var(--transition-normal);
}

.leaderboard__card:hover {
    border-color: var(--athena-gold);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.leaderboard__card--gold {
    border-color: var(--athena-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.leaderboard__card--silver {
    border-color: #c0c0c0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.leaderboard__card--bronze {
    border-color: var(--ancient-bronze);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.leaderboard__rank {
    font-size: 2rem;
}

.leaderboard__info {
    display: flex;
    flex-direction: column;
}

.leaderboard__name {
    font-weight: 600;
    color: var(--text-light);
}

.leaderboard__score {
    font-size: 0.85rem;
    color: var(--forest-green);
}

.leaderboard__note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ============================================
   DISCLAIMER SECTION (BEM)
   ============================================ */
.disclaimer {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, var(--shadow-black) 50%, rgba(0, 255, 136, 0.1) 100%);
    border-top: 2px solid var(--mythic-purple);
    border-bottom: 2px solid var(--forest-green);
}

.disclaimer__box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer__title {
    font-size: 1.5rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.disclaimer__content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer__content strong {
    color: var(--text-light);
}

.disclaimer__badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.disclaimer__badge {
    background: rgba(157, 0, 255, 0.2);
    border: 1px solid var(--mythic-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   FOOTER (BEM)
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--shadow-black);
    border-top: 1px solid var(--border-glow);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__column-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--athena-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer__text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer__free-tag {
    background: var(--forest-green);
    color: var(--shadow-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: var(--mythic-purple);
    text-shadow: 0 0 10px var(--mythic-purple);
}

.footer__compliance {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer__compliance-logo {
    height: 35px;
    width: auto;
    max-width: 120px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.footer__compliance-logo:hover {
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.footer__age-badge {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--mythic-purple));
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glow);
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 900px) {
    .nav {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .games__grid,
    .benefits__grid,
    .testimonials__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .games__card,
    .benefits__card,
    .testimonials__card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 60px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .modal__box {
        padding: 1.5rem;
    }
    
    .modal__actions {
        flex-direction: column;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__compliance {
        justify-content: center;
    }
    
    .leaderboard__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .leaderboard__card {
        width: 100%;
        max-width: 300px;
    }
    
    .disclaimer__badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--mythic-purple); }
    50% { box-shadow: 0 0 40px var(--mythic-purple), 0 0 60px rgba(157, 0, 255, 0.5); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px var(--athena-gold); }
    50% { text-shadow: 0 0 40px var(--athena-gold), 0 0 60px rgba(255, 215, 0, 0.5); }
}

