/* =========================================================================
   Базові стилі та змінні кольорів
   ========================================================================= */
   :root {
    /* Базові кольори фону */
    --bg-main: #0B0A10;             /* Основний дуже темний фон сторінки */
    --bg-header: #121016;           /* Фоновий колір хедера */
    --bg-footer: #0B0A10;           /* Фоновий колір футера */
    --bg-content: #0B0A10;          /* Фоновий колір секцій контенту (напр. FAQ) */

    /* Семантичні кольори по зонах */
    --header-bg: var(--bg-header);
    --header-text: var(--text-primary);
    --header-link: var(--text-secondary);
    --header-link-hover: var(--text-primary);
    --header-border: rgba(255, 255, 255, 0.08);

    --content-bg: var(--bg-content);
    --content-surface: rgba(255, 255, 255, 0.02);
    --content-surface-strong: rgba(255, 255, 255, 0.05);
    --content-text: var(--text-primary);
    --content-text-muted: var(--text-secondary);
    --content-border: rgba(255, 255, 255, 0.08);

    --footer-bg: var(--bg-footer);
    --footer-text: var(--text-primary);
    --footer-link: var(--text-secondary);
    --footer-link-hover: var(--text-primary);
    --footer-border: rgba(255, 255, 255, 0.08);

    /* Текст */
    --text-primary: #ffffff;        /* Основний білий текст */
    --text-secondary: #9a9a9a;      /* Сірий текст для неактивних пунктів */
    
    /* Акцентні кольори */
    --color-accent: #ffb800;        /* Фірмовий жовто-помаранчевий колір */
    --color-accent-hover: #e0a200;  /* Колір при наведенні */

    /* Посилання */
    --link-color: var(--content-text-muted);        /* Стандартний колір посилань */
    --link-hover-color: var(--content-text);        /* Колір посилань при наведенні */
    --link-accent-color: var(--color-accent);
    --link-accent-hover: var(--color-accent-hover);
    
    /* Кнопки */
    --btn-login-bg: var(--header-bg);
    --btn-login-text: var(--header-text);
    --btn-login-border: var(--color-accent);
    --btn-login-hover-bg: rgba(255, 184, 0, 0.1);
    --btn-login-hover-text: var(--color-accent);
    --btn-login-hover-shadow: rgba(255, 184, 0, 0.15);

    --btn-signup-bg: var(--color-accent);
    --btn-signup-text: var(--bg-main);
    --btn-signup-border: var(--color-accent);
    --btn-signup-hover-bg: transparent;
    --btn-signup-hover-text: var(--color-accent);
    --btn-signup-hover-shadow: rgba(255, 184, 0, 0.3);

    --btn-cta-bg: linear-gradient(135deg, #1a1520 0%, #0b0a10 100%);
    --btn-cta-text: #ffffff;
    --btn-cta-border: var(--color-accent);
    --btn-cta-hover-bg: var(--color-accent);
    --btn-cta-hover-text: #0b0a10;
    --btn-cta-hover-border: #ffffff;

    /* Асети */
    --asset-version: "20260315-1";
    --hero-bg-image: url("../images/hero_bg.png?v=20260315-1");
    --logo-height-desktop: 90px;
    --logo-height-mobile: 45px;
    
    /* Рамки */
    --border-color: var(--content-border); /* Ледве помітні рамки */
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    /* Щоб було видно хедер на всю висоту для тесту, додамо мінімальну висоту */
    min-height: 100vh; 
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================================================
   ДОПОМІЖНІ КЛАСИ (Layout Utilities)
   ========================================================================= */
.ee52_abx {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.ee52_aby {
    max-width: 1100px;
}

.ee52_abz {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.ee52_aek {
    text-align: center;
}

/* =========================================================================
   HOME HERO SECTION
   ========================================================================= */
.ee52_ac0 {
    padding: 20px 0;
    background-color: var(--bg-main);
}

.ee52_act {
    width: 100%;
    min-height: 500px;
    border-radius: 24px;
    background-image: 
        linear-gradient(135deg, rgba(11, 10, 16, 0.8) 0%, rgba(11, 10, 16, 0.4) 50%, rgba(11, 10, 16, 0.8) 100%), 
        var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.ee52_act::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(11, 10, 16, 0.15) 0%, rgba(11, 10, 16, 0.75) 100%),
        linear-gradient(180deg, rgba(11, 10, 16, 0.18) 0%, rgba(11, 10, 16, 0.55) 100%);
    pointer-events: none;
}

.ee52_acu {
    max-width: 760px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 28px 36px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 10, 16, 0.68) 0%, rgba(11, 10, 16, 0.52) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ee52_acv {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.05;
    background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.9));
}

p.ee52_acv {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
    background: none;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
    margin-bottom: 32px;
    line-height: 1.2;
}

.ee52_abs {
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9d00 100%);
    color: #0b0a10;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.ee52_abs:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
    color: #000;
}


/* --- Стилі реєстрації перенесено нижче для пріоритетності --- */

@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        padding: 40px 30px;
        justify-content: center;
        text-align: center;
    }

    .hero-banner-content {
        padding: 22px 20px;
        border-radius: 18px;
    }
    
    .hero-banner-title {
        font-size: 22px;
    }
    
    .hero-banner-promo {
        font-size: 34px;
    }

    p.hero-banner-promo {
        font-size: 22px;
    }
    
    .btn-hero-take {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Блок з кнопкою */
.ee52_ab1 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.ee52_abr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all var(--transition-normal);
    letter-spacing: 0.5px;
}

.ee52_abr:hover {
    background-color: var(--color-accent);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
    transform: translateY(-2px);
}

.ee52_abr .ee52_abt {
    font-size: 24px;
}

/* =========================================================================
   BREADCRUMBS (Хлібні крихти)
   ========================================================================= */
.ee52_abn {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

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

.ee52_abn a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ee52_abn a:hover {
    color: var(--text-primary);
}

.ee52_abn .ee52_aej {
    color: var(--text-secondary);
    opacity: 0.5;
}

.ee52_abn .ee52_ab4 {
    color: var(--text-primary);
    font-weight: 500;
}

/* =========================================================================
   HERO INTRO SECTION
   ========================================================================= */
.ee52_acy {
    padding: 60px 0;
    background-color: var(--bg-main);
}

.ee52_acz {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.ee52_acx {
    margin-bottom: 40px;
}

.ee52_acx p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.ee52_abe {
    color: var(--color-accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .ee52_acz {
        font-size: 28px;
    }
}

/* =========================================================================
   ABOUT PAGE SPECIFIC
   ========================================================================= */
.ee52_aeg {
    padding: 60px 0 80px;
}

/* =========================================================================
   ДОДАТКОВИЙ КОНТЕНТ (Support, Responsible Gaming)
   ========================================================================= */
.ee52_ac6 {
    padding: 0;
}

.ee52_ac3 {
    margin-bottom: 40px;
}

.ee52_ac3:last-child {
    margin-bottom: 0;
}

/* Модифікатори для відступів */
.ee52_ac5 {
    margin-top: 60px;
}

.ee52_ac4 {
    margin-bottom: 60px;
}

.ee52_adf,
.ee52_adc {
    margin-top: 40px;
}

.ee52_abw {
    margin-top: 20px;
    font-size: 14px;
}

.ee52_ab6 {
    font-size: 24px;
}

.ee52_ab0 {
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.ee52_ac8,
.ee52_ac6 ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 20px;
}

/* --- Покращені глобальні стилі для таблиць --- */
.ee52_add {
    display: block;
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.ee52_ado table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0 35px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ee52_ado table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.ee52_ado table td {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.ee52_ado table tr:last-child td {
    border-bottom: none;
}

.ee52_ado table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.ee52_ado table tr:hover td {
    background-color: rgba(255, 184, 0, 0.03);
    color: #ffffff;
}

.ee52_ado table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.01);
}

.ee52_ado table td a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ee52_ado table td a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Custom scrollbar for tables */
.ee52_add::-webkit-scrollbar,
.ee52_ado table::-webkit-scrollbar {
    height: 6px;
}

.ee52_add::-webkit-scrollbar-thumb,
.ee52_ado table::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.ee52_add::-webkit-scrollbar-track,
.ee52_ado table::-webkit-scrollbar-track {
    background: transparent;
}

.ee52_ac8 li,
.ee52_ac6 ul li,
.ee52_ac6 ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.ee52_ac6 ol li {
    counter-increment: item;
}

.ee52_ac8 li::before,
.ee52_ac9 li::before,
.ee52_ac6 ul li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}

.ee52_ac6 ol li::before {
    content: counter(item) ".";
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}

.ee52_ac9 li {
    margin-bottom: 8px;
}

.ee52_ac7 {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

.ee52_abd {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ee52_abd:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* =========================================================================
   Хедер (Головний блок)
   ========================================================================= */
.ee52_adq {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.ee52_acs {
    max-width: 1400px; /* Ширина контенту як на скріні */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* --- 1. ЛОГОТИП --- */
.ee52_adj {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 40px; /* Відступ від меню */
}

.ee52_adj a {
    display: flex;
    align-items: center;
    min-width: 0;
}

/* Стиль для зображення логотипу */
.ee52_adl {
    height: var(--logo-height-desktop);
    max-height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Тимчасова текстова імітація логотипа з картинки */
.ee52_adm {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.ee52_adk {
    color: var(--color-accent);
    margin-right: 4px;
    font-size: 24px;
    font-style: italic;
    transform: skewX(-10deg);
}

.ee52_adn {
    color: var(--text-primary);
}


/* --- 2. МЕНЮ НАВІГАЦІЇ --- */
.ee52_adr {
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1; /* Дозволяє меню зайняти вільний простір */
    justify-content: center; /* Центруємо меню як на скріні */
}

.ee52_ad8 {
    display: flex;
    align-items: center;
    gap: 24px; /* Відстань між пунктами меню */
    height: 100%;
}

.ee52_ad6 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ee52_ad7 {
    color: var(--header-link);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px; /* Відступ між текстом і іконкою/стрілкою */
    transition: color var(--transition-fast);
}

.ee52_ad7:hover,
.ee52_ad6.ee52_abf .ee52_ad7 {
    color: var(--header-link-hover);
}

/* Стрілочка для випадаючого меню */
.ee52_abg {
    display: inline-block;
    width: 0;
    height: 0;
    margin-top: 2px;
    border-top: 4px solid var(--header-link);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform var(--transition-fast), border-top-color var(--transition-fast);
}

.ee52_ad7:hover .ee52_abg {
    border-top-color: var(--header-link-hover);
}

/* --- ВИПАДАЮЧЕ МЕНЮ (Dropdown) --- */
.ee52_ab5 {
    position: absolute;
    top: 70px; /* Відразу під хедером */
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Зміщення для анімації */
    background-color: var(--header-bg);
    border: 1px solid var(--header-border);
    border-radius: 8px;
    min-width: 160px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1010;
}

/* Анімація появи меню при наведенні */
.ee52_ad6.ee52_acq:hover .ee52_ab5 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ee52_ad6.ee52_acq:hover .ee52_abg {
    transform: rotate(180deg); /* Стрілка повертається вверх */
}

.ee52_ab5 li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--header-link);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.ee52_ab5 li a:hover {
    color: var(--header-link-hover);
    background-color: rgba(255, 255, 255, 0.05); /* Легке підсвічування фону пункту */
    padding-left: 24px; /* Легке зміщення вправо при наведенні (мікро-анімація) */
}


/* --- Перемикач мов --- */
.ee52_adi {
    margin-left: 10px;
}

.ee52_adg {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Вирівнювання випадалки мов по правому краю, щоб не вилазила за екран */
.ee52_adi .ee52_adh {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(15px);
}

.ee52_adi:hover .ee52_adh {
    transform: translateX(0) translateY(0);
}


/* --- 3. КНОПКИ ДІЙ (Buttons) --- */
.ee52_acr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 40px;
}

.ee52_abp {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

/* Кнопка LOG IN - Контурна (чорна з жовтою рамкою) */
.ee52_abu {
    background-color: var(--btn-login-bg);
    color: var(--btn-login-text);
    border: 1px solid var(--btn-login-border);
}

.ee52_abu:hover {
    background-color: var(--btn-login-hover-bg);
    box-shadow: 0 0 15px var(--btn-login-hover-shadow);
    color: var(--btn-login-hover-text); /* Текст стає жовтим */
}

/* Кнопка SIGN UP - Залита (жовта) */
.ee52_abv {
    background-color: var(--btn-signup-bg);
    color: var(--btn-signup-text); /* Темний текст для контрасту, як на скрінах */
    border: 1px solid var(--btn-signup-border);
}

.ee52_abv:hover {
    background-color: var(--btn-signup-hover-bg);
    color: var(--btn-signup-hover-text);
    box-shadow: 0 0 15px var(--btn-signup-hover-shadow);
}


/* =========================================================================
   АДАПТИВНІСТЬ (Мобільна версія)
   ========================================================================= */
.ee52_adx {
    display: none; /* Приховано на десктопі */
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1020;
    margin-left: 15px;
}

.ee52_adx span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all var(--transition-normal);
}

.ee52_adx span:nth-child(1) { top: 0; }
.ee52_adx span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.ee52_adx span:nth-child(3) { bottom: 0; }

@media (max-width: 1024px) {
    .ee52_ad8 {
        gap: 15px; /* Зменшуємо відступи між меню на планшетах */
    }
    .ee52_acr {
        margin-left: 15px;
    }
}

@media (max-width: 850px) {
    .ee52_adr {
        display: none; /* Ховаємо основне меню на мобільних */
    }

    .ee52_acr {
        display: none;
    }
    
    .ee52_adx {
        display: block; /* Показуємо іконку гамбургера */
    }
    
    .ee52_acs {
        justify-content: space-between;
    }
    
    .ee52_adj {
        margin-right: auto; /* Логотип зліва */
    }
}

@media (max-width: 480px) {
    .ee52_abp {
        padding: 8px 12px;
        font-size: 12px;
    }
    .ee52_acr {
        gap: 8px;
    }
    .ee52_adm {
        font-size: 18px;
    }
    .ee52_adk {
        font-size: 20px;
    }

    .ee52_adl {
        height: var(--logo-height-mobile);
    }
}

/* =========================================================================
   FAQ SECTION (Акордеон)
   ========================================================================= */
.ee52_ace {
    padding: 30px 20px 60px; /* Зменшуємо верхній відступ (був 60px) */
    background-color: var(--content-bg);
}

.ee52_aca {
    max-width: 1100px;
    margin: 40px auto 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 21, 32, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ee52_acf {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.ee52_acf::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.ee52_acc {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.ee52_acc:last-child {
    border-bottom: none;
}

.ee52_acd {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: background-color var(--transition-fast);
}

.ee52_acd h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
}

.ee52_acd:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.ee52_acb {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    transition: transform var(--transition-normal);
    line-height: 1;
    flex-shrink: 0;
}

.ee52_ab7 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background-color: transparent;
}

.ee52_ab9,
.ee52_ab8 {
    padding: 0 30px 24px 30px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.ee52_ab8 p {
    margin-bottom: 12px;
}

.ee52_ab8 ul,
.ee52_ab8 ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.ee52_ab8 li {
    margin-bottom: 10px;
}

.ee52_ab8 strong {
    color: var(--text-primary);
}

.ee52_ab9 p {
    margin-bottom: 15px;
}

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

.ee52_ab9 ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.ee52_ab9 ul li {
    margin-bottom: 8px;
}

/* Активний стан FAQ */
.ee52_acc.ee52_abf .ee52_acb {
    transform: rotate(0deg);
}

.ee52_ab8 {
    padding: 0 30px 30px;
}

.ee52_ab8 p {
    margin-bottom: 15px;
}

.ee52_ab8 ul, .ee52_ab8 ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.ee52_ab8 li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.ee52_ab8 strong {
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .ee52_acd {
        padding: 18px 20px;
        font-size: 16px;
    }
    .ee52_ab9 {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
}


/* =========================================================================
   ФУТЕР (Footer)
   ========================================================================= */
.ee52_adp {
    background-color: var(--footer-bg);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--footer-border);
    position: relative;
    /* Змушує футер притискатися до низу, якщо контенту мало */
    margin-top: auto; 
}

.ee52_ach {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Навігація в футері */
.ee52_acm {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ee52_acm a {
    color: var(--footer-link);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.ee52_acm a:hover {
    color: var(--footer-link-hover);
}

/* Перемикач мов у футері */
.ee52_ack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ee52_acj {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-link);
    font-size: 14px;
    font-weight: 500;
}

.ee52_acj.ee52_abf {
    color: var(--color-accent);
}

.ee52_ack .ee52_aej {
    color: var(--text-secondary);
}

/* Копірайт та посилання */
.ee52_aci {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.ee52_aci p {
    color: var(--footer-text);
    font-size: 14px;
}

.ee52_abd {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

.ee52_abd:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.ee52_aci .ee52_aej {
    color: var(--footer-text);
    margin: 0 5px;
}

/* Бейджі */
.ee52_acg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

/* Кнопка Scroll to Top */
.ee52_abh {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--text-primary);
    color: var(--bg-main);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-normal);
}

.ee52_abh:hover {
    background-color: var(--text-secondary);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .ee52_abh {
        bottom: 100px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

.ee52_adm {
    display: none;
}
/* =========================================================================
   МОБІЛЬНЕ МЕНЮ (Sidebar)
   ========================================================================= */
.ee52_adw {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.ee52_adw.ee52_abf {
    opacity: 1;
    visibility: visible;
}

.ee52_ad3 {
    position: fixed;
    top: 0;
    left: -320px; /* Ховаємо за екраном */
    width: 320px;
    height: 100%;
    background-color: var(--header-bg);
    z-index: 1100;
    transition: left var(--transition-normal);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}

.ee52_ad3.ee52_abf {
    left: 0;
}

.ee52_ad5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ee52_adv {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.ee52_adv:hover {
    color: var(--text-primary);
}

.ee52_ad4 {
    padding: 20px 20px 80px; /* Нижній відступ для уникнення перекриття банером */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.ee52_adz {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ee52_adz:last-child {
    border-bottom: none;
}

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

.ee52_ad0 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.ee52_adz.ee52_abf > .ee52_ad1 .ee52_ad0 {
    color: var(--color-accent);
}

.ee52_adu {
    background: none;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ee52_adt {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 0 15px;
}

.ee52_adt li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.ee52_adt li:last-child a {
    padding-bottom: 15px;
}

.ee52_adt li a:hover {
    color: var(--text-primary);
}

.ee52_ads {
    margin-top: 20px; /* Прибираємо auto, щоб кнопки були під меню */
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ee52_ael {
    width: 100%;
}

@media (max-width: 480px) {
    .ee52_ad3 {
        width: 100%;
        left: -100%;
    }
}

/* =========================================================================
   FIXED BOTTOM BANNER (Bonus)
   ========================================================================= */
.ee52_abm {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050;
    
    display: flex;
    align-items: center;
    gap: 15px;
    
    background-color: #1a1520; /* Темний фон банера */
    border: 1px solid rgba(255, 184, 0, 0.3); /* Жовта обводка */
    border-radius: 8px;
    padding: 12px 15px;
    
    /* Неонове світіння (Glow effect) */
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.4), inset 0 0 10px rgba(255, 184, 0, 0.1);
    
    color: var(--text-primary);
    font-size: 14px;
    
    animation: slideInBanner 0.5s ease-out forwards;
}

@keyframes slideInBanner {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ee52_abm .ee52_abk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.ee52_abm .ee52_abl {
    font-weight: 500;
    white-space: nowrap;
}

.ee52_abm .ee52_abl strong {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ee52_abm .ee52_abj {
    background-color: var(--color-accent);
    color: var(--bg-main);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ee52_abm .ee52_abj:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
    transform: scale(1.02);
}

@media (max-width: 850px) {
    .ee52_abm {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 600px;
        bottom: 10px;
        justify-content: space-between;
        padding: 0 15px; /* Прибираємо вертикальний педінг, щоб min-height керував висотою */
        height: 75px;
        min-height: 75px;
        
        animation: slideInBannerMobile 0.5s ease-out forwards;
    }

    @keyframes slideInBannerMobile {
        from {
            transform: translate(-50%, 150px);
            opacity: 0;
        }
    to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }
}

@media (max-width: 580px) {
    .ee52_abm {
        gap: 12px;
        padding: 0 12px;
    }
    
    .ee52_abm .ee52_abk {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .ee52_abm .ee52_abk img {
        width: 32px;
        height: 32px;
    }
    
    .ee52_abm .ee52_abl {
        white-space: normal;
        font-size: 13px;
        line-height: 1.3;
        flex-grow: 1;
        text-align: left;
    }
    
    .ee52_abm .ee52_abj {
        padding: 10px 15px;
        font-size: 11px;
        flex-shrink: 0;
    }
}

@media (max-width: 380px) {
    .ee52_abm {
        gap: 8px;
        padding: 0 10px;
    }
    .ee52_abm .ee52_abl {
        font-size: 11px;
    }
    .ee52_abm .ee52_abj {
        padding: 8px 12px;
        font-size: 10px;
    }
}

/* =========================================================================
   POPULAR GAMES SECTION
   ========================================================================= */
.ee52_aea {
    padding: 40px 0;
    background-color: var(--bg-main);
}

.ee52_aea .ee52_aei {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.ee52_aea p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.ee52_acp {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.ee52_acn {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Змінюємо на квадрат, як зазвичай у слотах */
    background-color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ee52_acn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.ee52_aco {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .ee52_acp {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ee52_acp {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .ee52_acp {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Допоміжні класи для зображень */
.ee52_ac2 {
    max-width: 100%;
    height: auto;
    display: block;
}

.ee52_aef {
    border-radius: 12px;
}

/* --- Мала кнопка з золотою рамкою --- */
.ee52_ab2 {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.ee52_ab3 {
    justify-content: center;
}

/* --- Уніфікована золота кнопка (Компактна) --- */
.ee52_abq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--btn-cta-bg);
    border: 2px solid var(--btn-cta-border);
    border-radius: 12px;
    color: var(--btn-cta-text);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24), inset 0 0 12px rgba(255, 184, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.ee52_abq::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.2), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.ee52_abq:hover::before {
    left: 100%;
}

.ee52_abq:hover {
    background: var(--btn-cta-hover-bg);
    color: var(--btn-cta-hover-text);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.6);
    transform: translateY(-3px);
    border-color: var(--btn-cta-hover-border);
}

.ee52_abq .ee52_ac1,
.ee52_abq .ee52_abt {
    font-size: 18px;
}

.ee52_ab1 {
    margin: 28px 0 12px;
}

/* Registration Guide */
.ee52_aec {
    padding: 40px 0 0;
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.ee52_aec::before {
    content: none;
}

.ee52_aeb {
    display: flex;
    gap: 56px;
    align-items: center;
    margin-top: 24px;
}

.ee52_aed {
    flex: 0 0 40%;
}

.ee52_aee {
    flex: 1;
}

.ee52_ac8.ee52_ada {
    counter-reset: reg-counter;
    padding-left: 0;
    margin-top: 15px;
}

.ee52_ac8.ee52_ada li {
    position: relative;
    display: block;
    padding-left: 37px;
    margin-bottom: 16px;
    list-style: none;
    min-height: 40px;
}

.ee52_ac8.ee52_ada li::before {
    content: counter(reg-counter);
    counter-increment: reg-counter;
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

@media (max-width: 992px) {
    .ee52_aeb {
        flex-direction: column;
        gap: 40px;
    }

    .ee52_aed {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .ee52_aee {
        width: 100%;
    }
}


.ee52_abi {
    height: 24px !important;
    width: auto !important;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.ee52_abi:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .ee52_abq {
        padding: 10px 22px;
        font-size: 14px;
    }

    .ee52_abq .ee52_ac1,
    .ee52_abq .ee52_abt {
        font-size: 16px;
    }

    .ee52_ac8.ee52_ada {
        padding-left: 0;
    }

    .ee52_ac8.ee52_ada li {
        display: block;
        padding-left: 27px;
        font-size: 14px;
        margin-bottom: 14px;
        min-height: 30px;
    }
    
    .ee52_ac8.ee52_ada li::before {
        left: 0;
        top: 0.1em;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* =========================================================================
   GLOBAL CONTENT SYSTEM
   ========================================================================= */
.ee52_ado > section {
    scroll-margin-top: 90px;
}

.ee52_ado > section:not(.ee52_ac0):not(.ee52_ace) {
    padding-left: 20px;
    padding-right: 20px;
}

.ee52_ado :where(h2, h3, p, ul, ol, table):first-child {
    margin-top: 0;
}

.ee52_ado :where(p, ul, ol):not(.ee52_acv) {
    max-width: 100%;
}

.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) h2,
.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) .ee52_ade {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 40px 0 18px;
}

.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) h3,
.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) .ee52_adb {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 28px 0 14px;
}

.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) p:not(.ee52_acv) {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) ul,
.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) ol {
    margin: 0 0 22px;
    padding-left: 20px;
}

.ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.ee52_ado .ee52_ab1 + h2,
.ee52_ado .ee52_ab1 + h3,
.ee52_ado .ee52_ab1 + .ee52_ade,
.ee52_ado .ee52_ab1 + .ee52_adb {
    margin-top: 36px;
}

.ee52_ado .ee52_ac8.ee52_ada {
    padding-left: 0;
    margin-left: 0;
}

.ee52_ado table td:first-child,
.ee52_ado table th:first-child {
    min-width: 180px;
}

.ee52_ado .ee52_add > table {
    margin: 0;
    border: 0;
    border-radius: 0;
}

@media (max-width: 768px) {
    .ee52_ado > section:not(.ee52_ac0):not(.ee52_ace) {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ee52_ado table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0 28px;
    }

    .ee52_ado table th,
    .ee52_ado table td {
        min-width: 160px;
        padding: 14px 16px;
    }

    .ee52_ado table td:first-child,
    .ee52_ado table th:first-child {
        min-width: 200px;
    }

    .ee52_acy,
    .ee52_aeh,
    .ee52_aeg,
    .ee52_aea {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .ee52_aec {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .ee52_ac6 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .ee52_acx {
        margin-bottom: 28px;
    }

    .ee52_aca {
        margin-top: 24px;
    }

    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) h2,
    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) .ee52_ade {
        margin: 32px 0 16px;
    }

    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) h3,
    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) .ee52_adb {
        font-size: 20px;
        margin: 24px 0 12px;
    }
}

@media (max-width: 480px) {
    .ee52_acz,
    .ee52_acf {
        font-size: 24px;
    }

    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) p:not(.ee52_acv),
    .ee52_ado :where(.ee52_acy, .ee52_aeh, .ee52_aeg, .ee52_ac6, .ee52_aec, .ee52_aea) li {
        font-size: 15px;
    }

    .ee52_ado table td:first-child,
    .ee52_ado table th:first-child {
        min-width: 180px;
    }
}
