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

:root {
    --bg-primary: #0B0B12;
    --bg-secondary: #0d1b2a;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --gold: #F2D11F;
    --gold-dark: #C9931A;
    --gold-light: #ffe066;
    --accent: #17304A;
    --text-primary: #e8e8e0;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border: rgba(242, 209, 31, 0.15);
    --border-subtle: rgba(255,255,255,0.07);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 20px rgba(242, 209, 31, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-w: 280px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --section-pad: 48px 0;
    --container-pad: 0 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: var(--container-pad);
}

.hamburger-float {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11, 11, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hamburger-float:hover {
    background: rgba(11, 11, 18, 0.95);
    border-color: var(--gold-dark);
}

.hamburger-float span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger-float:hover span { background: var(--gold); }

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}
.logo-accent { color: var(--gold); }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0B0B12;
    box-shadow: 0 4px 15px rgba(242, 209, 31, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(242, 209, 31, 0.4);
    color: #0B0B12;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: var(--sidebar-w);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 1px solid var(--border);
}
.sidebar.open { left: 0; }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    z-index: 1;
}

.sidebar-logo .logo-text { font-size: 20px; }

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    transition: color var(--transition);
    line-height: 1;
}
.sidebar-close:hover { color: var(--gold); }

.sidebar-nav {
    list-style: none;
    padding: 8px 0 24px;
}
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--gold);
    background: rgba(242, 209, 31, 0.04);
    border-left-color: var(--gold);
}
.sidebar-nav li a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-section {
    background: var(--bg-primary);
}

.hero-banner-img {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #080a14;
}
.hero-banner-img a {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-banner-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content-below {
    background: linear-gradient(180deg, #080a14 0%, var(--bg-primary) 100%);
    padding: 36px 0 48px;
    text-align: center;
}
.hero-content-below .container {
    max-width: 820px;
}
.hero-content-below h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}
.badge-item i {
    color: var(--gold);
    font-size: 12px;
}

.content-section {
    padding: var(--section-pad);
}
.section-dark {
    background: var(--bg-secondary);
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.35;
}
.section-icon {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.content-section > .container > p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.6;
    transition: border-color var(--transition);
}
.feature-list li:hover { border-color: var(--border); }
.feature-list li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 13px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
caption {
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--gold);
    text-align: left;
    background: rgba(242, 209, 31, 0.04);
    border-bottom: 1px solid var(--border-subtle);
}
thead th {
    padding: 10px 14px;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 13px;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(242, 209, 31, 0.03); }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
tbody tr:nth-child(even):hover { background: rgba(242, 209, 31, 0.03); }

.bonus-cards,
.steps-grid,
.game-categories,
.crypto-features,
.vip-levels,
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.bonus-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.bonus-card-header {
    background: linear-gradient(135deg, var(--accent), rgba(23, 48, 74, 0.6));
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bonus-card-header i {
    color: var(--gold);
    font-size: 20px;
}
.bonus-card-header h3 {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
}
.bonus-card-body {
    padding: 18px;
}
.bonus-amount {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}
.bonus-card-body p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.bonus-wager {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 209, 31, 0.08);
    border-radius: 20px;
    font-size: 11.5px;
    color: var(--gold);
    font-weight: 600;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: all var(--transition);
}
.step-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 14px;
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.game-cat {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: all var(--transition);
}
.game-cat:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.game-cat > i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.game-cat h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.game-cat p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0;
}
.provider-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition);
}
.provider-item:hover {
    border-color: var(--gold-dark);
    background: var(--bg-card-hover);
}
.provider-item i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.vip-card {
    border-radius: var(--radius);
    padding: 22px 18px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
}
.vip-card:hover { transform: translateY(-3px); }
.vip-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vip-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.vip-bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.02));
    border-color: rgba(205, 127, 50, 0.25);
}
.vip-bronze h3, .vip-bronze h3 i { color: #cd7f32; }

.vip-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.02));
    border-color: rgba(192, 192, 192, 0.25);
}
.vip-silver h3, .vip-silver h3 i { color: #c0c0c0; }

.vip-gold {
    background: linear-gradient(135deg, rgba(242, 209, 31, 0.1), rgba(242, 209, 31, 0.02));
    border-color: rgba(242, 209, 31, 0.25);
}
.vip-gold h3, .vip-gold h3 i { color: var(--gold); }

.vip-platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1), rgba(229, 228, 226, 0.02));
    border-color: rgba(229, 228, 226, 0.3);
}
.vip-platinum h3, .vip-platinum h3 i { color: #e5e4e2; }

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: all var(--transition);
}
.review-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
}
.review-stars {
    margin-bottom: 12px;
}
.review-stars i {
    color: var(--gold);
    font-size: 14px;
    margin-right: 1px;
}
.review-text {
    font-style: italic;
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.review-author {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.faq-list {
    margin: 24px 0;
}
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    gap: 12px;
    transition: background var(--transition);
    line-height: 1.4;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question i {
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    font-size: 13px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 16px 16px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.cta-block {
    text-align: center;
    margin-top: 28px;
}

.responsible-links {
    margin-top: 24px;
    padding: 18px 16px;
    background: rgba(242, 209, 31, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.responsible-links p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

#main-footer {
    background: #060810;
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.footer-logo {
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 6px;
}
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-badges {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    color: #dc2626;
    font-weight: 900;
    font-size: 13px;
    font-family: var(--font-heading);
}
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-muted);
}
.license-badge i { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 16px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
    box-shadow: 0 3px 12px rgba(242, 209, 31, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(242, 209, 31, 0.4);
}

@media (min-width: 600px) {
    :root {
        --section-pad: 56px 0;
        --container-pad: 0 24px;
    }

    body { font-size: 15.5px; }

    .hero-content-below h1 {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-content-below {
        padding: 44px 0 56px;
    }
    .hero-badges {
        gap: 12px;
    }
    .badge-item {
        font-size: 12.5px;
        padding: 8px 16px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .bonus-cards,
    .steps-grid,
    .game-categories,
    .crypto-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }
}

@media (min-width: 960px) {
    :root {
        --section-pad: 72px 0;
        --container-pad: 0 32px;
    }

    body { font-size: 16px; }

    .hamburger-float {
        width: 48px;
        height: 48px;
        top: 16px;
        left: 16px;
    }
    .hamburger-float span {
        width: 20px;
    }

    .hero-content-below {
        padding: 52px 0 64px;
    }
    .hero-content-below h1 {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-badges {
        gap: 16px;
    }
    .badge-item {
        font-size: 13px;
        padding: 8px 18px;
    }

    .content-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .section-icon {
        font-size: 26px;
    }
    .content-section > .container > p {
        font-size: 15.5px;
    }

    .btn-cta {
        padding: 13px 32px;
        font-size: 14px;
    }

    .bonus-cards,
    .game-categories,
    .crypto-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

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

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

    .feature-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .feature-list li {
        font-size: 14px;
        padding: 12px 16px;
    }

    table { font-size: 14px; }
    caption { font-size: 14px; padding: 14px 20px; }
    thead th { padding: 12px 16px; font-size: 12px; }
    tbody td { padding: 12px 16px; font-size: 14px; }

    .bonus-amount { font-size: 28px; }
    .bonus-card-header h3 { font-size: 15.5px; }
    .bonus-card-body p { font-size: 13.5px; }
    .bonus-card-body { padding: 20px; }
    .bonus-card-header { padding: 16px 20px; }

    .game-cat { padding: 26px 22px; }
    .game-cat > i { font-size: 30px; }
    .game-cat h3 { font-size: 16px; }
    .game-cat p { font-size: 13.5px; }

    .step-card { padding: 26px 22px; }
    .step-card h3 { font-size: 16px; }
    .step-card p { font-size: 13.5px; }

    .vip-card { padding: 26px 22px; }
    .vip-card h3 { font-size: 19px; }
    .vip-card p { font-size: 13.5px; }

    .review-card { padding: 24px 22px; }
    .review-text { font-size: 14px; }
    .review-author { font-size: 13px; }

    .faq-question { font-size: 15px; }
    .faq-answer p { font-size: 14.5px; }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 36px;
    }
    #main-footer { padding: 56px 0 0; }

    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 28px;
        right: 28px;
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .hero-content-below h1 {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 17px;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .bonus-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .game-categories,
    .crypto-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (hover: none) {
    .bonus-card:hover,
    .step-card:hover,
    .game-cat:hover,
    .provider-item:hover,
    .vip-card:hover,
    .review-card:hover {
        transform: none;
        box-shadow: none;
    }
}

@supports (padding: max(0px)) {
    .hero-banner-img {
        padding-top: env(safe-area-inset-top);
    }
    .hamburger-float {
        top: max(12px, env(safe-area-inset-top));
        left: max(12px, env(safe-area-inset-left));
    }
    .back-to-top {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
    }
    .footer-bottom {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}
