:root {
    --bg-primary: #0a1a10;
    --bg-secondary: #0d2215;
    --bg-card: #112a1a;
    --bg-card-hover: #153522;
    --bg-surface: #1a3d28;
    --gold: #FFD679;
    --gold-dark: #d4a843;
    --gold-light: #ffe8a8;
    --gold-gradient: linear-gradient(135deg, #FFD679 0%, #f0c050 50%, #FFD679 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffe8a8 0%, #FFD679 50%, #ffe8a8 100%);
    --green-accent: #2ecc71;
    --green-light: #27ae60;
    --text-primary: #ffffff;
    --text-secondary: #b0c4b8;
    --text-muted: #7a9988;
    --border: rgba(255, 214, 121, 0.12);
    --border-light: rgba(255, 214, 121, 0.06);
    --shadow-gold: 0 4px 30px rgba(255, 214, 121, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

body.menu-open {
    overflow: hidden;
}

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

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

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

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title--left {
    text-align: left;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--gold {
    background: var(--gold-gradient);
    color: #1a1a00;
    box-shadow: 0 4px 20px rgba(255, 214, 121, 0.3);
}

.btn--gold:hover {
    background: var(--gold-gradient-hover);
    box-shadow: 0 6px 30px rgba(255, 214, 121, 0.45);
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background: rgba(255, 214, 121, 0.1);
    box-shadow: 0 4px 20px rgba(255, 214, 121, 0.15);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 26, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.header__logo img {
    height: 45px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.header__nav a:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 12px;
}

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

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.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;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

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

.mobile-menu__nav a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 240px;
    margin-top: 16px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.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(10, 26, 16, 0.5) 0%,
        rgba(10, 26, 16, 0.7) 40%,
        rgba(10, 26, 16, 0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero__stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
}

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

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 214, 121, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

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

/* ============================================
   Promo Section
   ============================================ */

.promo {
    padding: 100px 0;
    background: var(--bg-primary);
}

.promo__card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a4028 100%);
    border: 1px solid rgba(255, 214, 121, 0.2);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.promo__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 214, 121, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.promo__content {
    position: relative;
    z-index: 1;
}

.promo__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}

.promo__subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.promo__code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.promo__code {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 214, 121, 0.08);
    border: 2px dashed var(--gold);
    border-radius: var(--radius);
    padding: 16px 32px;
}

.promo__code-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 6px;
    font-family: 'Montserrat', monospace;
}

.promo__copy-btn {
    background: rgba(255, 214, 121, 0.15);
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: var(--gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo__copy-btn:hover {
    background: rgba(255, 214, 121, 0.25);
}

.promo__copied {
    color: var(--green-accent);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.promo__copied.visible {
    opacity: 1;
    transform: translateY(0);
}

.promo__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.promo__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 214, 121, 0.06);
}

.promo__circle--1 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
}

.promo__circle--2 {
    width: 140px;
    height: 140px;
    top: 20px;
    right: 60px;
}

.promo__circle--3 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: -20px;
    background: radial-gradient(circle, rgba(255, 214, 121, 0.04) 0%, transparent 70%);
}

/* ============================================
   Games Section
   ============================================ */

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

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

.game-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.game-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.game-category:hover {
    border-color: rgba(255, 214, 121, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.game-category__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.game-category__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-category__text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 48px 0 24px;
    color: var(--text-secondary);
}

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

.game-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.game-card:hover {
    border-color: rgba(255, 214, 121, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.game-card__play {
    background: var(--gold-gradient);
    color: #1a1a00;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px;
    background: linear-gradient(transparent, rgba(10, 26, 16, 0.9));
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.games__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Bonuses Section
   ============================================ */

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

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

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.bonus-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bonus-card:hover {
    border-color: rgba(255, 214, 121, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.bonus-card--featured {
    border-color: rgba(255, 214, 121, 0.3);
    background: linear-gradient(180deg, #1a4028 0%, var(--bg-card) 100%);
}

.bonus-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.bonus-card__badge {
    display: inline-block;
    background: rgba(255, 214, 121, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.bonus-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-card__value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

.bonus-card__text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ============================================
   Registration Section
   ============================================ */

.registration {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.registration__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.registration__text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 20px 0 28px;
}

.registration__steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 36px;
}

.registration__steps li {
    counter-increment: step;
    position: relative;
    padding-left: 52px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.registration__steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 214, 121, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.registration__visual {
    display: flex;
    justify-content: center;
}

.registration__card-visual {
    background: linear-gradient(145deg, var(--bg-card), #1a4028);
    border: 1px solid rgba(255, 214, 121, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.registration__card-visual img {
    margin: 0 auto 24px;
}

.registration__card-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.registration__card-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============================================
   Login Section
   ============================================ */

.login-section {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.login-section__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.login-feature__icon {
    font-size: 1.3rem;
}

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

.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq__list {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq__item[open] {
    border-color: rgba(255, 214, 121, 0.2);
}

.faq__question {
    padding: 20px 52px 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    list-style: none;
    position: relative;
    transition: var(--transition);
}

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

.faq__question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: var(--transition);
}

.faq__item[open] .faq__question::after {
    content: '−';
}

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

.faq__answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: 100px 0;
    background: var(--bg-primary);
}

.cta__inner {
    background: linear-gradient(135deg, #0d3320 0%, #1a4a30 50%, #0d3320 100%);
    border: 1px solid rgba(255, 214, 121, 0.15);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 0 0 4px 4px;
}

.cta__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta__text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #071510;
    border-top: 1px solid var(--border-light);
    padding: 48px 0 32px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__nav a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

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

.footer__bottom {
    text-align: center;
}

.footer__copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer__disclaimer {
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.6;
}

/* ============================================
   Animations
   ============================================ */

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

.feature-card,
.game-category,
.bonus-card,
.faq__item,
.game-card {
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card {
    opacity: 0;
    transform: translateY(20px);
}

.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2),
.game-category:nth-child(2),
.bonus-card:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(3),
.game-category:nth-child(3),
.bonus-card:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(4),
.bonus-card:nth-child(4) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================
   Responsive
   ============================================ */

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

    .registration__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .registration__visual {
        order: -1;
    }

    .registration__card-visual {
        max-width: 360px;
    }

    .section-title--left {
        text-align: center;
    }

    .registration__text {
        text-align: center;
    }

    .registration__steps {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .registration .btn {
        display: flex;
        margin: 0 auto;
    }
}

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

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 60px;
    }

    .hero__stats {
        gap: 24px;
    }

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

    .features__grid,
    .games__categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

    .promo__card {
        padding: 40px 24px;
    }

    .promo__code-text {
        font-size: 1.75rem;
        letter-spacing: 4px;
    }

    .cta__inner {
        padding: 48px 24px;
    }

    .login-section__features {
        gap: 20px;
    }

    .footer__top {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }

    section {
        padding: 70px 0;
    }

    .features,
    .games,
    .bonuses,
    .faq,
    .cta,
    .registration {
        padding: 70px 0;
    }
}

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

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

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

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

    .hero__stats {
        gap: 16px;
    }

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

    .hero__stat-label {
        font-size: 0.75rem;
    }

    .promo__code {
        padding: 12px 20px;
    }

    .promo__code-text {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

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

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

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