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

:root {
    --bg-deep: #040d0a;
    --bg-primary: #061210;
    --bg-secondary: #081a15;
    --bg-card: #0c2420;
    --bg-card-hover: #0f2e28;
    --neon: #00ff88;
    --neon-dim: #00cc6a;
    --neon-glow: rgba(0, 255, 136, 0.3);
    --neon-glow-strong: rgba(0, 255, 136, 0.55);
    --neon-glow-subtle: rgba(0, 255, 136, 0.12);
    --gold: #ffd679;
    --gold-bright: #ffe8a3;
    --teal: #14b8a6;
    --teal-glow: rgba(20, 184, 166, 0.25);
    --text-primary: #f0f8f5;
    --text-secondary: #8fb5a8;
    --text-muted: #5a8a7a;
    --border-color: rgba(0, 255, 136, 0.12);
    --border-color-strong: rgba(0, 255, 136, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
    overflow: hidden;
}

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

a:hover {
    color: var(--gold);
}

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

ul {
    list-style: none;
}

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

.text-accent {
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-glow);
}

/* ============================
   HEADER
   ============================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all var(--transition);
    background: rgba(4, 13, 10, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header--scrolled {
    background: rgba(4, 13, 10, 0.95);
    box-shadow: 0 1px 30px rgba(0, 255, 136, 0.08), 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.header__logo img {
    width: 49px;
    height: 34px;
}

.header__logo-text {
    font-style: italic;
    letter-spacing: 0.5px;
}

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

.header__link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header__link:hover {
    color: var(--neon);
    background: var(--neon-glow-subtle);
}

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

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ============================
   MOBILE MENU
   ============================ */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(4, 13, 10, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu__link {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.mobile-menu__link:hover {
    color: var(--neon);
}

.mobile-menu__btn {
    width: 240px;
    text-align: center;
}

/* ============================
   BUTTONS
   ============================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.4;
    position: relative;
}

.btn--neon {
    background: linear-gradient(135deg, #00e67a, #00ff88, #00e67a);
    background-size: 200% 200%;
    color: #041a0e;
    font-weight: 700;
    box-shadow: 0 0 20px var(--neon-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--neon:hover {
    background-position: 100% 100%;
    color: #041a0e;
    box-shadow: 0 0 35px var(--neon-glow-strong), 0 0 70px rgba(0, 255, 136, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn--neon:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(0, 255, 136, 0.5);
}

.btn--outline:hover {
    background: rgba(0, 255, 136, 0.08);
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
}

.btn--lg {
    padding: 15px 38px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* ============================
   HERO
   ============================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 255, 136, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, rgba(4, 13, 10, 0.2) 0%, rgba(4, 13, 10, 0.5) 40%, rgba(4, 13, 10, 0.85) 70%, var(--bg-deep) 100%),
        linear-gradient(90deg, rgba(4, 13, 10, 0.8) 0%, transparent 40%, transparent 60%, rgba(4, 13, 10, 0.8) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 255, 136, 0.15), transparent),
        radial-gradient(2px 2px at 70% 60%, rgba(0, 255, 136, 0.25), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(0, 255, 136, 0.15), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(0, 255, 136, 0.3), transparent);
    animation: particleFloat 15s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { opacity: 1; }
    100% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.hero__badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--neon);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--neon) 0%, #00cc6a 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon);
    text-shadow: 0 0 15px var(--neon-glow);
    line-height: 1.2;
}

.hero__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   SECTION TITLES
   ============================ */

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 52px;
}

/* ============================
   ADVANTAGES
   ============================ */

.advantages {
    padding: 90px 0;
    position: relative;
    background: var(--bg-primary);
}

.advantages::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
}

.advantage-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-glow-subtle) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.advantage-card:hover .advantage-card__glow {
    opacity: 1;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-strong);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.08);
    color: var(--text-primary);
}

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

.advantage-card__icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: all var(--transition);
}

.advantage-card:hover .advantage-card__icon {
    box-shadow: 0 0 25px var(--neon-glow);
    border-color: rgba(0, 255, 136, 0.4);
}

.advantage-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage-card__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.55;
    flex-grow: 1;
}

/* ============================
   GAMES
   ============================ */

.games {
    padding: 90px 0;
    background: var(--bg-secondary);
    position: relative;
}

.games::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color-strong), transparent);
}

.games__categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.category-pill:hover {
    border-color: var(--neon-dim);
    color: var(--text-primary);
}

.category-pill--active {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon);
    color: var(--neon);
    box-shadow: 0 0 15px var(--neon-glow);
}

.category-pill__icon {
    font-size: 1rem;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 44px;
}

.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 287 / 193;
    cursor: pointer;
    transition: all var(--transition);
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.game-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card__img {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card:hover .game-card__img img {
    transform: scale(1.08);
}

.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, var(--neon-dim), var(--neon));
    color: #041a0e;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-card__badge--hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
}

.game-card__badge--new {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 13, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 3;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.1);
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(transparent, rgba(4, 13, 10, 0.95));
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    z-index: 2;
}

.games__cta {
    text-align: center;
}

/* ============================
   BONUSES
   ============================ */

.bonuses {
    padding: 90px 0;
    background: var(--bg-primary);
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.bonus-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.06);
    border-color: var(--border-color-strong);
}

.bonus-card__header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 255, 136, 0.04));
    padding: 30px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.bonus-card__header--cyan {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.04));
}

.bonus-card__header--purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.04));
}

.bonus-card__percent {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: none;
}

.bonus-card__header--cyan .bonus-card__percent {
    background: linear-gradient(135deg, var(--teal), #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card__header--purple .bonus-card__percent {
    -webkit-text-fill-color: unset;
    background: none;
}

.bonus-card__label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.bonus-card__body {
    padding: 24px;
}

.bonus-card__body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-card__body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-card__body ul {
    margin-bottom: 20px;
}

.bonus-card__body li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.9;
}

.bonus-card__body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon);
    font-weight: 700;
}

/* ============================
   HOW TO START
   ============================ */

.howto {
    padding: 90px 0;
    background: var(--bg-secondary);
    position: relative;
}

.howto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color-strong), transparent);
}

.howto__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
}

.howto__step {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
}

.howto__step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.howto__number {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-dim), var(--neon));
    color: #041a0e;
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 0 30px var(--neon-glow), 0 0 60px rgba(0, 255, 136, 0.1);
}

.howto__step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.howto__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon), var(--gold));
    margin-top: 34px;
    flex-shrink: 0;
    opacity: 0.4;
}

.howto__cta {
    text-align: center;
}

/* ============================
   PROVIDERS
   ============================ */

.providers {
    padding: 90px 0;
    background: var(--bg-primary);
}

.providers__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.provider-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.provider-card.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.provider-card:hover {
    border-color: var(--neon);
    color: var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-3px);
}

/* ============================
   ABOUT
   ============================ */

.about {
    padding: 90px 0;
    background: var(--bg-secondary);
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
}

.about__text {
    margin-bottom: 48px;
}

.about__text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 22px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.about__feature.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__feature:hover {
    border-color: var(--border-color-strong);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 255, 136, 0.05);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 136, 0.12);
}

.about__feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

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

.about__content > .btn {
    display: block;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================
   FAQ
   ============================ */

.faq {
    padding: 90px 0;
    background: var(--bg-primary);
}

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

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(15px);
}

.faq__item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq__item[open] {
    border-color: var(--neon-dim);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.faq__question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--neon);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__item[open] .faq__question {
    color: var(--neon);
}

.faq__answer {
    padding: 0 24px 20px;
}

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

.faq__answer a {
    color: var(--neon);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 136, 0.3);
    text-underline-offset: 3px;
}

.faq__answer a:hover {
    text-decoration-color: var(--neon);
}

/* ============================
   CTA BANNER
   ============================ */

.cta-banner {
    padding: 90px 0;
    background: var(--bg-secondary);
    position: relative;
}

.cta-banner__inner {
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 136, 0.06));
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-xl);
    padding: 64px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.cta-banner__buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================
   FOOTER
   ============================ */

.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer__top {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer__brand {
    flex: 1;
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-style: italic;
}

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

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 48px;
    flex: 1;
}

.footer__col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

.footer__col a:hover {
    color: var(--neon);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================
   RESPONSIVE
   ============================ */

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

    .games__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonuses__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses__grid > :last-child {
        grid-column: span 2;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 44px 32px;
    }

    .header__link {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__nav .header__link {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__nav .btn {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__content {
        padding: 30px 16px 50px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-value {
        font-size: 1.3rem;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantage-card {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px;
        align-items: center;
    }

    .advantage-card__icon {
        margin-bottom: 0;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .advantage-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .advantage-card__text {
        margin-bottom: 10px;
    }

    .advantage-card .btn {
        align-self: flex-start;
    }

    .games__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

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

    .bonuses__grid > :last-child {
        grid-column: span 1;
    }

    .howto__steps {
        flex-direction: column;
        align-items: center;
    }

    .howto__connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .howto__step {
        max-width: 100%;
    }

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

    .footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .cta-banner__buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__buttons .btn {
        width: 100%;
    }

    .section-subtitle {
        margin-bottom: 36px;
    }

    .providers__grid {
        gap: 8px;
    }

    .provider-card {
        padding: 10px 16px;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        display: none;
    }

    .btn--lg {
        padding: 13px 30px;
        font-size: 0.9rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero__stats {
        gap: 16px;
    }

    .games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .games__categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .games__categories::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        flex-shrink: 0;
    }

    .cta-banner__inner {
        padding: 32px 20px;
    }

    .cta-banner__content h2 {
        font-size: 1.4rem;
    }

    .advantage-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .advantage-card__icon {
        margin-bottom: 12px;
    }

    .advantage-card .btn {
        align-self: center;
    }
}

/* ============================
   ANIMATIONS
   ============================ */

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 20px var(--neon-glow); }
    50% { box-shadow: 0 0 40px var(--neon-glow-strong), 0 0 80px rgba(0, 255, 136, 0.1); }
}

.hero__buttons .btn--neon {
    animation: neonPulse 3s ease-in-out infinite;
}

.hero__buttons .btn--neon:hover {
    animation: none;
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(0, 255, 136, 0.12); }
    50% { border-color: rgba(0, 255, 136, 0.3); }
}

/* ============================
   SCROLLBAR
   ============================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-dim);
}

/* ============================
   SELECTION
   ============================ */

::selection {
    background: rgba(0, 255, 136, 0.25);
    color: var(--text-primary);
}

/* ============================
   STAGGER DELAYS
   ============================ */

.advantage-card:nth-child(2) { transition-delay: 0.1s; }
.advantage-card:nth-child(3) { transition-delay: 0.2s; }
.advantage-card:nth-child(4) { transition-delay: 0.3s; }

.bonus-card:nth-child(2) { transition-delay: 0.15s; }
.bonus-card:nth-child(3) { transition-delay: 0.3s; }

.howto__step:nth-child(1) { transition-delay: 0s; }
.howto__step:nth-child(3) { transition-delay: 0.15s; }
.howto__step:nth-child(5) { transition-delay: 0.3s; }

.game-card:nth-child(2) { transition-delay: 0.04s; }
.game-card:nth-child(3) { transition-delay: 0.08s; }
.game-card:nth-child(4) { transition-delay: 0.12s; }
.game-card:nth-child(5) { transition-delay: 0.16s; }
.game-card:nth-child(6) { transition-delay: 0.2s; }
.game-card:nth-child(7) { transition-delay: 0.24s; }
.game-card:nth-child(8) { transition-delay: 0.28s; }
.game-card:nth-child(9) { transition-delay: 0.32s; }
.game-card:nth-child(10) { transition-delay: 0.36s; }
.game-card:nth-child(11) { transition-delay: 0.4s; }
.game-card:nth-child(12) { transition-delay: 0.44s; }
.game-card:nth-child(13) { transition-delay: 0.48s; }
.game-card:nth-child(14) { transition-delay: 0.52s; }
.game-card:nth-child(15) { transition-delay: 0.56s; }

.provider-card:nth-child(2) { transition-delay: 0.03s; }
.provider-card:nth-child(3) { transition-delay: 0.06s; }
.provider-card:nth-child(4) { transition-delay: 0.09s; }
.provider-card:nth-child(5) { transition-delay: 0.12s; }
.provider-card:nth-child(6) { transition-delay: 0.15s; }
.provider-card:nth-child(7) { transition-delay: 0.18s; }
.provider-card:nth-child(8) { transition-delay: 0.21s; }
.provider-card:nth-child(9) { transition-delay: 0.24s; }
.provider-card:nth-child(10) { transition-delay: 0.27s; }
.provider-card:nth-child(11) { transition-delay: 0.3s; }
.provider-card:nth-child(12) { transition-delay: 0.33s; }

.faq__item:nth-child(2) { transition-delay: 0.05s; }
.faq__item:nth-child(3) { transition-delay: 0.1s; }
.faq__item:nth-child(4) { transition-delay: 0.15s; }
.faq__item:nth-child(5) { transition-delay: 0.2s; }
.faq__item:nth-child(6) { transition-delay: 0.25s; }
.faq__item:nth-child(7) { transition-delay: 0.3s; }
.faq__item:nth-child(8) { transition-delay: 0.35s; }

.about__feature:nth-child(2) { transition-delay: 0.1s; }
.about__feature:nth-child(3) { transition-delay: 0.2s; }
.about__feature:nth-child(4) { transition-delay: 0.3s; }
