/* ===== CSS VARIABLES ===== */
:root {
    --bg: #0d0d0d;
    --bg-card: #161616;
    --bg-sidebar: #111111;
    --bg-hover: #1a1a1a;
    --green: #00E676;
    --green-dark: #00c853;
    --green-glow: rgba(0, 230, 118, 0.15);
    --text: #ffffff;
    --text-muted: #8a8a8a;
    --text-dim: #555;
    --border: #222;
    --radius: 12px;
    --radius-sm: 8px;
    --sidebar-w: 220px;
    --header-h: 64px;
    --font: 'Outfit', system-ui, -apple-system, sans-serif;
    --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--green);
    color: #0d0d0d;
    border-color: var(--green);
}
.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--green-glow);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: #333;
}
.btn--ghost:hover { border-color: #555; background: var(--bg-hover); }
.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn--outline:hover { background: var(--green-glow); }
.btn--lg { padding: 14px 36px; font-size: 1rem; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    overflow: hidden;
}
.header__inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 24px;
    min-width: 0;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}
.header__logo .logo-svg { flex-shrink: 0; }
.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--green);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    flex-shrink: 0;
}
.header__burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.header__nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.header__nav a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.header__nav a:hover { color: var(--text); background: var(--bg-hover); }
.header__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}
.header__actions .btn { white-space: nowrap; }

/* ===== LAYOUT ===== */
.layout {
    display: flex;
    padding-top: var(--header-h);
    min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 50;
    padding: 16px 12px;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}
.sidebar nav { flex: 1; }
.sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.sidebar__link:hover { color: var(--text); background: var(--bg-hover); }
.sidebar__link--active { color: var(--green); background: var(--green-glow); }
.sidebar__link svg { flex-shrink: 0; }
.sidebar__divider {
    padding: 20px 14px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}
.sidebar__bottom { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }

/* ===== MAIN ===== */
.main {
    flex: 1;
    margin-left: var(--sidebar-w);
    min-width: 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 48px 48px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a0f 0%, #0d0d0d 50%, #061a10 100%);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(0,230,118,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0,230,118,0.04) 0%, transparent 50%),
        url("main-baner.webp") center / cover no-repeat;
    pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 560px; }
.hero__subtitle {
    color: var(--green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}
.hero__cta { margin-bottom: 16px; }
.hero__terms { font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; }

/* ===== PAYMENTS ===== */
.payments {
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}
.payments__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.pay-badge {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.pay-badge--iban {
    color: var(--green);
    background: rgba(0, 230, 118, 0.18);
    padding: 6px 12px;
    border-radius: 50px;
}
.mc {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.mc--r { background: #eb001b; margin-right: -6px; }
.mc--o { background: #f79e1b; }

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

/* ===== GAME SECTIONS ===== */
.games-section {
    padding: 32px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform var(--transition);
}
.game-card:hover { transform: translateY(-4px); }
.game-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
}
.game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__name {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-card__provider {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

/* ===== BONUSES ===== */
.bonuses {
    padding: 32px;
}
.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition);
}
.bonus-card:hover { border-color: #333; }
.bonus-card--featured {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(0,230,118,0.06) 0%, var(--bg-card) 100%);
}
.bonus-card--featured::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    pointer-events: none;
}
.bonus-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.08);
    color: var(--green);
    margin-bottom: 16px;
}
.bonus-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.bonus-card__sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.bonus-card__desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.bonus-card__terms {
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ===== SPORTS ===== */
.sports-section { padding: 32px; }
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.sport-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}
.sport-card:hover { border-color: var(--green); transform: translateY(-2px); }
.sport-card__icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.sport-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.sport-card p { font-size: 0.82rem; color: var(--text-muted); }
.sports-cta { margin-top: 24px; }

/* ===== APP SECTION ===== */
.app-section {
    padding: 48px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, #0a1a0f 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.app-section__text { flex: 1; }
.app-section__text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.app-section__btns { display: flex; gap: 12px; }
.app-section__phone { flex-shrink: 0; }
.phone-mock {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 32px;
    border: 3px solid #333;
    padding: 12px;
    position: relative;
}
.phone-mock::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 10px;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a1a0f 0%, #111 50%, #0d0d0d 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.phone-screen__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    padding: 48px 32px;
    max-width: 900px;
}
.seo-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}
.seo-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--green);
}
.seo-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.seo-content strong { color: var(--text); }

/* SEO: table (wrapper = div that contains table) */
.seo-content div:has(> table) {
    margin: 24px 0 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.seo-content table th,
.seo-content table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.seo-content table th {
    background: rgba(0, 230, 118, 0.08);
    color: var(--green);
    font-weight: 700;
}
.seo-content table tbody tr:last-child td { border-bottom: none; }
.seo-content table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* SEO: unordered list (checks style) */
.seo-content ul {
    margin: 20px 0 32px;
    padding-left: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}
.seo-content ul li {
    position: relative;
    padding: 10px 0 10px 36px;
    margin-bottom: 4px;
}
.seo-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: rgba(0, 230, 118, 0.2);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
}

/* SEO: ordered list (steps style) */
.seo-content ol {
    margin: 20px 0 32px;
    padding-left: 0;
    list-style: none;
    counter-reset: seo-step;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}
.seo-content ol li {
    position: relative;
    padding: 10px 0 10px 52px;
    margin-bottom: 4px;
}
.seo-content ol li::before {
    counter-increment: seo-step;
    content: counter(seo-step);
    position: absolute;
    left: 0;
    top: 8px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: var(--green);
    color: #0a0a0a;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
}

/* ===== FAQ ===== */
.faq {
    padding: 32px;
    border-top: 1px solid var(--border);
}
.faq__list { margin-top: 16px; }
.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--green); }
.faq__q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}
.faq__q:hover { background: var(--bg-hover); }
.faq__q::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--green);
    font-weight: 300;
    transition: transform var(--transition);
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__q::-webkit-details-marker { display: none; }
.faq__a {
    padding: 0 20px 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 32px 32px;
    border-top: 1px solid var(--border);
    background: var(--bg-sidebar);
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer__disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
}
.footer__col h4,
.footer__col-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer__col a {
    display: block;
    font-size: 0.84rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--green); }
.footer__badges {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.f-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}
.f-badge--age {
    background: rgba(255,50,50,0.15);
    color: #ff5252;
}

/* ===== MOBILE BOTTOM NAV ===== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: #1a1a1a;
    border-top: 1px solid var(--border);
    z-index: 90;
    align-items: center;
    justify-content: space-around;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    min-width: 56px;
    padding: 4px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    text-decoration: none;
    transition: color var(--transition);
}
.bottom-nav__item:hover { color: var(--text); }
.bottom-nav__item--active,
.bottom-nav__item[aria-current="page"] {
    color: var(--green);
}
.bottom-nav__item svg { flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sidebar { display: none; }
    .sidebar.sidebar--open { display: flex; z-index: 90; }
    .main { margin-left: 0; }
    .header__burger { display: flex; }
    .header__inner { padding: 0 12px; gap: 12px; }
    .header__actions .btn { padding: 8px 14px; font-size: 0.85rem; }
    .logo-text { font-size: 1.05rem; }
    .hero__bg {
        background:
            radial-gradient(ellipse at 80% 50%, rgba(0,230,118,0.08) 0%, transparent 60%),
            radial-gradient(ellipse at 20% 80%, rgba(0,230,118,0.04) 0%, transparent 50%),
            url("baner-mobile.webp") center / cover no-repeat;
    }
    .hero { min-height: 360px; padding: 32px; }
    .footer__top { grid-template-columns: 1fr; }
    .app-section { flex-direction: column; text-align: center; }
    .app-section__btns { justify-content: center; }
    .bottom-nav { display: flex; }
    .main { padding-bottom: 72px; }
}
@media (max-width: 768px) {
    .header__nav { display: none; }
    .header__nav.nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
    }
    .header__inner { padding: 0 12px; gap: 8px; }
    .header__actions .btn { padding: 8px 10px; font-size: 0.78rem; }
    .header__actions .btn--ghost {
        background: #2a2a2a;
        border-color: #2a2a2a;
        color: #fff;
    }
    .header__actions .btn--ghost:hover {
        background: #333;
        border-color: #333;
    }
    .logo-text { font-size: 0.95rem; }
    .header__logo .logo-svg { width: 26px; height: 26px; }
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        min-height: 50vh;
        min-height: 50dvh;
        padding: 0;
    }
    .hero__bg {
        position: static;
        flex: 1;
        min-height: 27vh;
        min-height: 34dvh;
        background-position: top center;
    }
    .hero__content {
        flex-shrink: 0;
        max-width: 100%;
        width: 100%;
        background: #000;
        padding: 28px 20px 24px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
    }
    .hero__subtitle {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }
    .hero__title { font-size: 1.5rem; margin-bottom: 16px; line-height: 1.25; }
    .hero__terms { display: none; }
    .hero__cta {
        box-shadow: 0 0 24px var(--green-glow);
        padding: 14px 32px;
        font-size: 1rem;
    }
    .payments { padding: 16px 20px; }
    .payments__track {
        gap: 16px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .payments__track::-webkit-scrollbar { display: none; }
    .games-section { padding: 20px 16px; }
    .games-grid {
        display: flex;
        gap: 12px;
        margin-top: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .games-grid::-webkit-scrollbar { display: none; }
    .game-card {
        flex-shrink: 0;
        width: 130px;
        scroll-snap-align: start;
    }
    .game-card__overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); }
    .game-card__name { font-size: 0.72rem; white-space: normal; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .section-title { font-size: 1.2rem; }
    .bonuses__grid { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: 1fr 1fr; }
    .seo-content { padding: 32px 20px; }
    .seo-content div:has(> table) { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .seo-content table { min-width: 320px; font-size: 0.85rem; }
    .seo-content table th, .seo-content table td { padding: 10px 12px; }
    .faq { padding: 24px 20px; }
    .footer { padding: 32px 20px 80px; }
}
@media (max-width: 480px) {
    .games-grid { gap: 10px; }
    .game-card { width: 120px; }
    .sports-grid { grid-template-columns: 1fr; }
    .header__inner { padding: 0 10px; gap: 6px; }
    .header__actions .btn { padding: 8px 10px; font-size: 0.75rem; }
    .logo-text { font-size: 0.9rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero__content { animation: fadeInUp 0.6s ease-out; }
.games-section, .bonuses, .sports-section, .app-section, .seo-content, .faq {
    animation: fadeInUp 0.5s ease-out;
}
