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

:root {
    --bg-primary: #060e0a;
    --bg-secondary: #091a12;
    --bg-card: #0c2418;
    --bg-card-hover: #10301f;
    --green: #10b981;
    --green-dark: #059669;
    --green-deep: #047857;
    --green-glow: rgba(16, 185, 129, 0.25);
    --green-glow-strong: rgba(16, 185, 129, 0.45);
    --gold: #f5a623;
    --gold-light: #ffd679;
    --gold-glow: rgba(245, 166, 35, 0.4);
    --gold-glow-strong: rgba(245, 166, 35, 0.65);
    --text-primary: #ffffff;
    --text-secondary: #a8c8b8;
    --text-muted: #6b8e7e;
    --border-color: rgba(16, 185, 129, 0.15);
    --border-color-strong: rgba(16, 185, 129, 0.35);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

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

.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.header--scrolled {
    background: rgba(6, 14, 10, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 0 var(--border-color);
    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: 24px;
}

.header__link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

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

.header__burger span {
    display: block;
    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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 14, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a1a0f;
    box-shadow:
        0 0 20px var(--gold-glow),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0a1a0f;
    box-shadow:
        0 0 35px var(--gold-glow-strong),
        0 0 70px rgba(245, 166, 35, 0.2),
        0 6px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn--gold:active {
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--green);
}

.btn--outline:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-primary);
    border-color: var(--green);
    box-shadow: 0 0 25px var(--green-glow);
    transform: translateY(-2px);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--xl {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.btn--lg {
    padding: 14px 36px;
    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;
}

.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:
        linear-gradient(180deg,
            rgba(6, 14, 10, 0.4) 0%,
            rgba(6, 14, 10, 0.5) 30%,
            rgba(6, 14, 10, 0.75) 60%,
            var(--bg-primary) 100%),
        linear-gradient(90deg,
            rgba(6, 14, 10, 0.85) 0%,
            transparent 40%,
            transparent 60%,
            rgba(6, 14, 10, 0.85) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(245, 166, 35, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(16, 185, 129, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(245, 166, 35, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 10% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 90%, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
    animation: float-particles 8s ease-in-out infinite;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-15px); opacity: 0.7; }
}

.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: 8px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-pill);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 45%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 40px;
    background: rgba(12, 36, 24, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    max-width: 480px;
    margin: 0 auto;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-light);
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color-strong);
}

/* ============================
   TICKER
   ============================ */

.ticker {
    background: rgba(12, 36, 24, 0.8);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 14px 0;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker__content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

.ticker__item {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    color: var(--text-secondary);
}

.ticker__item--gold {
    color: var(--gold);
}

.ticker__sep {
    color: var(--green);
    font-size: 0.6rem;
    opacity: 0.5;
}

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

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

.advantages {
    padding: 100px 0 80px;
    position: relative;
}

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

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

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 24px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: var(--text-primary);
    text-decoration: none;
}

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

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

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-strong);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--green-glow);
    color: var(--text-primary);
}

.advantage-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
    transition: all var(--transition);
}

.advantage-card:hover .advantage-card__icon {
    box-shadow: 0 0 25px var(--green-glow);
    transform: scale(1.05);
}

.advantage-card__icon--emerald {
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.2), rgba(4, 120, 87, 0.05));
    border-color: rgba(4, 120, 87, 0.4);
    color: #34d399;
}

.advantage-card__icon--gold {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
    border-color: rgba(245, 166, 35, 0.3);
    color: var(--gold);
}

.advantage-card__icon--purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.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.6;
}

.advantage-card__link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: auto;
}

.advantage-card:hover .advantage-card__link {
    color: var(--gold-light);
    letter-spacing: 1px;
}

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

.games {
    padding: 100px 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(--green-glow), transparent);
}

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

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    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: 600;
    cursor: pointer;
    transition: all var(--transition);
}

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

.category-pill--active {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--green);
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--green-glow);
}

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

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

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all var(--transition);
    display: block;
    text-decoration: none;
}

.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(--gold), var(--gold-light));
    color: #0a1a0f;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

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

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

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

.game-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.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(6, 14, 10, 0.95));
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    z-index: 1;
}

.games__cta {
    text-align: center;
}

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

.bonuses {
    padding: 100px 0;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.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-xl);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--border-color-strong);
}

.bonus-card__ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a1a0f;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 36px;
    transform: rotate(45deg);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bonus-card__header {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(255, 214, 121, 0.05));
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.bonus-card__header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.bonus-card__header--emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.03));
}

.bonus-card__header--emerald::after {
    background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
}

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

.bonus-card__header--purple::after {
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

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

.bonus-card__header--emerald .bonus-card__percent {
    background: linear-gradient(135deg, var(--green), #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: 28px 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.7;
    margin-bottom: 16px;
}

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

.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(--green);
    font-weight: 700;
}

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

.providers {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.provider-card:hover {
    border-color: var(--border-color-strong);
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--green-glow);
    transform: translateY(-2px);
}

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

.howto {
    padding: 100px 0;
    position: relative;
}

.howto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

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

.howto__step {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: 0 24px;
}

.howto__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a1a0f;
    font-size: 1.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(245, 166, 35, 0.15);
    position: relative;
}

.howto__number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(245, 166, 35, 0.2);
}

.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.7;
}

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

.howto__cta {
    text-align: center;
}

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

.about {
    padding: 100px 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.9;
    margin-bottom: 18px;
}

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

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

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

.about__feature:hover {
    border-color: var(--border-color-strong);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.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: 340px;
    margin: 0 auto;
}

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

.faq {
    padding: 100px 0;
}

.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);
}

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

.faq__item[open] {
    border-color: var(--green);
    box-shadow: 0 0 25px var(--green-glow);
}

.faq__question {
    padding: 20px 28px;
    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.5rem;
    font-weight: 300;
    color: var(--green);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.1);
}

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

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

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

.faq__answer a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(245, 166, 35, 0.3);
    text-underline-offset: 3px;
}

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

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

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

.cta-banner__inner {
    background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.08));
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    top: -60%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.25;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-banner__content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-banner__buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.footer {
    background: var(--bg-primary);
    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: 340px;
}

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

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

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

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

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

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

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

.footer__col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__bottom {
    padding: 28px 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: 48px 36px;
    }
}

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

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero__content {
        padding: 32px 16px 48px;
    }

    .hero__stats {
        gap: 20px;
        padding: 16px 24px;
    }

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

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

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

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

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

    .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: 40px;
    }

    .providers__grid {
        gap: 8px;
    }

    .provider-card {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

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

    .btn--xl {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

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

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

    .hero__stats {
        flex-direction: row;
        gap: 16px;
        padding: 14px 20px;
    }

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

    .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: 36px 24px;
    }

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

    .bonus-card__ribbon {
        display: none;
    }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow), 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 80px rgba(245, 166, 35, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.hero__buttons .btn--gold {
    animation: pulse-glow 3s ease-in-out infinite;
}

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

@keyframes glow-border {
    0%, 100% { border-color: rgba(16, 185, 129, 0.15); }
    50% { border-color: rgba(16, 185, 129, 0.4); }
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}

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

::selection {
    background: rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}
