:root {
    --bg: #05070d;
    --bg-soft: #0b1018;
    --panel: #0d131d;
    --panel-2: #111827;
    --border: rgba(255,255,255,0.08);
    --text: #f8fbff;
    --muted: #9eacbf;
    --green: #1eff9a;
    --green-dark: #11d67f;
    --red: #ff3b57;
    --blue: #4ea3ff;
    --yellow: #ffc857;
    --purple: #8b5cf6;
    --shadow: 0 18px 60px rgba(0,0,0,0.35);
    --radius: 22px;
    --sidebar-w: 290px;
    --content-w: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(30,255,154,0.08), transparent 25%),
            radial-gradient(circle at top right, rgba(78,163,255,0.08), transparent 20%),
            linear-gradient(180deg, #04060b 0%, #07101a 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: linear-gradient(180deg, rgba(6,10,16,0.98), rgba(8,13,21,0.98));
    border-right: 1px solid var(--border);
    padding: 24px 20px;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 26px;
}

.sidebar-logo img,
.mobile-logo img,
.footer-logo img {
    max-height: 44px;
    width: auto;
}

.sidebar-close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 26px;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    transition: 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: white;
    background: rgba(255,255,255,0.06);
}

.sidebar-card {
    margin-top: 28px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(30,255,154,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    margin: 8px 0 8px;
    font-size: 22px;
    line-height: 1.1;
}

.sidebar-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
}

.mini-label {
    display: inline-block;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    transition: 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.main-area {
    min-height: 100vh;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(5, 7, 13, 0.86);
    border-bottom: 1px solid var(--border);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    padding: 10px;
}

.menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    margin: 6px 0;
    border-radius: 99px;
}

.mobile-logo img {
    max-height: 36px;
}

.top-link {
    color: white;
    font-weight: 700;
    padding: 10px 14px;
}

.content {
    width: min(var(--content-w), calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 70px;
}

.hero {
    margin-bottom: 26px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
            radial-gradient(circle at left top, rgba(255,59,87,0.18), transparent 24%),
            radial-gradient(circle at right center, rgba(30,255,154,0.14), transparent 26%),
            linear-gradient(135deg, #131a25 0%, #0b111b 55%, #101a18 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr;
    gap: 28px;
    align-items: center;
}

.hero-kicker {
    margin: 0 0 10px;
    color: var(--green);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 850px;
}

.hero-text {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin-top: 30px;
}

.hero-points div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
}

.hero-points strong,
.hero-points span {
    display: block;
}

.hero-points strong {
    font-size: 18px;
    margin-bottom: 4px;
}

.hero-points span {
    color: var(--muted);
    font-size: 14px;
}

.hero-sidecard {
    display: flex;
    justify-content: flex-end;
}

.welcome-box {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    padding: 22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
            #0f1520;
    border: 1px solid var(--border);
}

.welcome-label {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.welcome-box h2 {
    margin: 10px 0 8px;
    font-size: 34px;
    line-height: 1.05;
}

.welcome-highlight {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--green);
    font-weight: 800;
}

.welcome-box ul {
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--muted);
}

.panel,
.text-panel,
.faq-panel,
.info-grid {
    margin-top: 26px;
}

.panel,
.text-panel,
.faq-panel {
    background: rgba(11, 16, 24, 0.84);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-head h2,
.text-panel h2,
.faq-panel h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-head a {
    color: var(--green);
    font-weight: 800;
    white-space: nowrap;
}

.winner-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.winner-box {
    padding: 20px;
    border-radius: 22px;
    background: #0b121b;
    border: 1px solid var(--border);
}

.winner-box strong {
    display: block;
    font-size: 38px;
    color: var(--green);
    line-height: 1;
    margin: 14px 0 8px;
    letter-spacing: -0.03em;
}

.winner-box small {
    color: var(--muted);
}

.winner-tier {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.winner-tier.gold { background: rgba(255,200,87,0.16); color: var(--yellow); }
.winner-tier.silver { background: rgba(153,170,190,0.15); color: #d7e0ea; }
.winner-tier.bronze { background: rgba(210,120,70,0.16); color: #f2a672; }

.wins-layout {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 24px;
    align-items: stretch;
}

.promo-image-card,
.roulette-card {
    height: 100%;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 18px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-image-card {
    background:
            radial-gradient(circle at 50% 30%, rgba(255,255,255,0.12), transparent 25%),
            linear-gradient(180deg, #3b2244, #121726);
}

.roulette-card {
    background:
            radial-gradient(circle at 50% 50%, rgba(255,199,87,0.18), transparent 28%),
            linear-gradient(180deg, #2b1f38, #101827);
}

.wins-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}

.wins-col h3 {
    margin: 0 0 14px;
    font-size: 28px;
}

.win-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #09111a;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
}

.place {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
}

.place.gold { background: linear-gradient(135deg, #ffcf4a, #d18d00); }
.place.silver { background: linear-gradient(135deg, #cfd8e2, #7d8ea3); }
.place.bronze { background: linear-gradient(135deg, #d88a4d, #8c4e1e); }

.win-row strong {
    display: block;
    font-size: 15px;
}

.win-row small {
    color: var(--muted);
    font-size: 13px;
}

.win-row b {
    color: var(--green);
    font-size: 22px;
    white-space: nowrap;
}

.text-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
}

.text-panel a {
    color: var(--green);
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.info-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(13, 19, 29, 0.88);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.info-card p {
    color: var(--muted);
    margin: 0 0 16px;
}

.info-card a {
    color: var(--green);
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #0a1119;
    padding: 0 18px;
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 0;
    font-weight: 800;
    font-size: 18px;
}

.faq-list p {
    margin: 0;
    padding: 0 0 18px;
    color: var(--muted);
}

.footer {
    width: min(var(--content-w), calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(8, 12, 18, 0.92);
    border: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
    gap: 24px;
}

.footer h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer a {
    display: block;
    margin: 8px 0;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #04110b;
    box-shadow: 0 10px 30px rgba(30,255,154,0.22);
}

.btn-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: white;
}

.btn-full {
    width: 100%;
}

@media (min-width: 1200px) {
    .main-area {
        padding-left: 0;
    }
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .wins-layout {
        grid-template-columns: 1fr;
    }

    .wins-columns {
        grid-template-columns: 1fr;
    }

    .promo-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .winner-stats,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .content,
    .footer {
        width: min(100% - 20px, 100%);
    }
}

@media (max-width: 640px) {
    .topbar {
        padding: 14px 12px;
    }

    .content {
        width: calc(100% - 16px);
        padding: 18px 0 50px;
    }

    .panel,
    .text-panel,
    .faq-panel,
    .footer {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-banner {
        padding: 20px;
        border-radius: 24px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .topbar-actions .top-link {
        display: none;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-bottom {
        gap: 8px;
    }

    .sidebar {
        width: 86%;
        max-width: 320px;
    }
}

.hero-banner-top {
    margin-bottom: 32px;
    padding: 34px 34px 28px;
    border-radius: 32px;
    background:
            radial-gradient(circle at 10% 0%, rgba(30, 255, 154, 0.10), transparent 30%),
            radial-gradient(circle at 90% 10%, rgba(255, 59, 87, 0.08), transparent 26%),
            linear-gradient(180deg, rgba(10, 16, 25, 0.98), rgba(5, 9, 15, 0.98));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-intro-centered {
    max-width: 980px;
    margin: 0 auto 26px;
    text-align: center;
}

.hero-top-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(30, 255, 154, 0.14);
    border: 1px solid rgba(30, 255, 154, 0.22);
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.hero-intro-centered h1 {
    margin: 0 auto;
    max-width: 980px;
    font-size: clamp(44px, 1.5vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    color: #fff;
    text-align: center;
}

.hero-subtitle {
    margin: 20px auto 0;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.45;
    color: #b8c7db;
    text-align: center;
}

.hero-banner-link {
    display: block;
    text-decoration: none;
}

.hero-banner-image-wrap-large {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-banner-link:hover .hero-banner-image-wrap-large {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    border-color: rgba(30, 255, 154, 0.22);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 900px) {
    .hero-banner-top {
        padding: 26px 22px 22px;
    }

    .hero-intro-centered {
        margin-bottom: 20px;
    }

    .hero-intro-centered h1 {
        font-size: clamp(34px, 8vw, 56px);
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-banner-top {
        padding: 18px;
        border-radius: 24px;
    }

    .hero-top-label {
        padding: 8px 14px;
        font-size: 11px;
        margin-bottom: 14px;
    }

    .hero-intro-centered h1 {
        font-size: 26px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 16px;
    }

    .hero-banner-image-wrap-large {
        border-radius: 18px;
    }
}
.hero-banner-image-wrap-large picture {
    display: block;
}

.hero-banner-image-wrap-large picture img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 640px) {
    .hero-banner-top {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-intro-centered {
        margin-bottom: 16px;
    }

    .hero-intro-centered h1 {
        font-size: 28px;
        line-height: 1.04;
        letter-spacing: -0.035em;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.45;
        margin-top: 12px;
    }

    .hero-banner-image-wrap-large {
        border-radius: 18px;
    }

    .hero-banner-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
.sidebar-cta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #04110b;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(30, 255, 154, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(30, 255, 154, 0.26);
}

.games-showcase {
    padding: 30px;
}

.section-head-games {
    align-items: flex-start;
    margin-bottom: 26px;
}

.section-subtitle {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 760px;
}


.games-showcase {
    padding: 30px;
}

.section-head-games {
    align-items: flex-start;
    margin-bottom: 28px;
}

.section-subtitle {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 760px;
}

.games-category + .games-category {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.games-category-head {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.games-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.games-category-head h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #fff;
}

.games-category-head p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.games-grid-advanced {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.game-tile {
    position: relative;
    display: block;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0b1118;
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.game-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.30);
    border-color: rgba(30,255,154,0.24);
}

.game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.game-tile:hover img {
    transform: scale(1.05);
}

.game-tile-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0.16) 100%);
    pointer-events: none;
}

.game-tile-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.game-tile-content h4 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}

@media (max-width: 1280px) {
    .games-grid-advanced {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .game-tile {
        height: 220px;
    }
}

@media (max-width: 980px) {
    .games-category-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .games-showcase {
        padding: 20px;
    }

    .section-head-games {
        display: block;
        margin-bottom: 22px;
    }

    .section-head-games h2 {
        font-size: 32px;
    }

    .section-head-games a {
        display: inline-flex;
        margin-top: 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .games-category + .games-category {
        margin-top: 28px;
        padding-top: 24px;
    }

    .games-category-head h3 {
        font-size: 26px;
    }

    .games-category-head p {
        font-size: 14px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .game-tile {
        height: 175px;
        border-radius: 18px;
    }

    .game-tile-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .game-badge {
        font-size: 9px;
        padding: 5px 8px;
        margin-bottom: 8px;
    }

    .game-tile-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .games-grid-advanced {
        grid-template-columns: 1fr;
    }

    .game-tile {
        height: 210px;
    }
}
/* Games showcase clean version */
.games-showcase {
    padding: 34px;
}

.section-head-games {
    display: block;
    text-align: center;
    margin-bottom: 36px;
}

.section-head-games h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-head-games a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--green);
    font-weight: 900;
}

.section-subtitle {
    margin: 12px auto 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 820px;
}

.games-category + .games-category {
    margin-top: 42px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.games-category-head {
    display: block;
    text-align: center;
    margin: 0 auto 24px;
    max-width: 820px;
}

.games-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.games-category-head h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #fff;
}

.games-category-head p {
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 720px;
}

.games-grid-advanced {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.game-tile {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.09);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
            #090f17;
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.game-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.30);
    border-color: rgba(30,255,154,0.24);
}

.game-tile img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.game-tile:hover img {
    transform: scale(1.035);
}

.game-tile-overlay {
    display: none;
}

.game-tile-content {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 92px;
    padding: 13px 12px 15px;
    text-align: center;
    background:
            radial-gradient(circle at 50% 0%, rgba(30,255,154,0.07), transparent 55%),
            #0a111a;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.game-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(30,255,154,0.13);
    border: 1px solid rgba(30,255,154,0.16);
    color: var(--green);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.game-tile-content h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-shadow: none;
}

/* если старые absolute-стили перебивают */
.game-tile .game-tile-content {
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
}

@media (max-width: 1280px) {
    .games-grid-advanced {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .games-showcase {
        padding: 26px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .games-showcase {
        padding: 20px;
    }

    .section-head-games {
        margin-bottom: 28px;
    }

    .section-head-games h2 {
        font-size: 30px;
    }

    .section-subtitle,
    .games-category-head p {
        font-size: 14px;
    }

    .games-category + .games-category {
        margin-top: 32px;
        padding-top: 28px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .game-tile {
        border-radius: 18px;
    }

    .game-tile img {
        aspect-ratio: 16 / 11;
    }

    .game-tile-content {
        min-height: 78px;
        padding: 10px 8px 12px;
    }

    .game-badge {
        font-size: 8px;
        padding: 4px 8px;
        margin-bottom: 7px;
    }

    .game-tile-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .games-grid-advanced {
        grid-template-columns: 1fr;
    }

    .game-tile img {
        aspect-ratio: 16 / 9;
    }

    .game-tile-content h4 {
        font-size: 17px;
    }
}

/* Games showcase - clean casino lobby style */
.games-showcase {
    padding: 30px;
}

.section-head-games {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    text-align: left;
}

.section-head-games h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-subtitle {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 760px;
}

.section-head-games a {
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
    margin-top: 8px;
}

/* Category headings */
.games-category + .games-category {
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.games-category-head {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    max-width: 780px;
}

.games-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.games-category-head h3 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
}

.games-category-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 720px;
}

/* Grid */
.games-grid-advanced {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

/* Whole item */
.game-tile {
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    transition: transform 0.22s ease;
}

.game-tile:hover {
    transform: translateY(-4px);
}

/* Image card only */
.game-tile img {
    width: 100%;
    aspect-ratio: 16 / 13;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #080d14;
    box-shadow: 0 14px 34px rgba(0,0,0,0.26);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-tile:hover img {
    transform: scale(1.025);
    border-color: rgba(30,255,154,0.25);
    box-shadow: 0 20px 46px rgba(0,0,0,0.34);
}

/* Remove old overlay */
.game-tile-overlay {
    display: none;
}

/* Text below image */
.game-tile-content {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: auto;
    padding: 12px 6px 0;
    background: transparent;
    border: 0;
    text-align: center;
}

/* Badge under image */
.game-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(30,255,154,0.13);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

/* Game title under badge */
.game-tile-content h4 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: none;
}

/* Responsive */
@media (max-width: 1280px) {
    .games-grid-advanced {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .games-showcase {
        padding: 26px;
    }

    .section-head-games {
        display: block;
    }

    .section-head-games a {
        display: inline-flex;
        margin-top: 14px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .games-showcase {
        padding: 20px;
    }

    .section-head-games {
        margin-bottom: 28px;
    }

    .section-head-games h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .games-category + .games-category {
        margin-top: 30px;
        padding-top: 26px;
    }

    .games-category-head {
        margin-bottom: 16px;
    }

    .games-category-head h3 {
        font-size: 24px;
    }

    .games-category-head p {
        font-size: 14px;
    }

    .games-grid-advanced {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .game-tile img {
        border-radius: 16px;
        aspect-ratio: 16 / 10.5;
    }

    .game-tile-content {
        padding-top: 10px;
    }

    .game-badge {
        font-size: 8px;
        padding: 4px 8px;
        margin-bottom: 6px;
    }

    .game-tile-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .games-grid-advanced {
        grid-template-columns: 1fr;
    }

    .game-tile img {
        aspect-ratio: 16 / 9;
    }

    .game-tile-content h4 {
        font-size: 17px;
    }
}

/* ===== Casino games showcase ===== */

.casino-games {
    padding: 32px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 8% 0%, rgba(30,255,154,0.06), transparent 30%),
            linear-gradient(180deg, rgba(9,14,22,0.96), rgba(6,10,16,0.96));
    border: 1px solid rgba(255,255,255,0.08);
}

.casino-games-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.casino-games-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.casino-games-head p {
    margin: 10px 0 0;
    max-width: 780px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.casino-games-head a {
    margin-top: 8px;
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.casino-category + .casino-category {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.casino-category-head {
    max-width: 760px;
    margin-bottom: 20px;
    text-align: left;
}

.casino-category-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-category-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.casino-category-head p {
    margin: 9px 0 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.casino-game-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: #0a111a;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 16px 38px rgba(0,0,0,0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.casino-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30,255,154,0.28);
    box-shadow: 0 22px 52px rgba(0,0,0,0.34);
}

.casino-game-img {
    width: 100%;
    background: #05080d;
    overflow: hidden;
}

.casino-game-img img {
    width: 100%;
    aspect-ratio: 16 / 12;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.28s ease;
}

.casino-game-card:hover .casino-game-img img {
    transform: scale(1.035);
}

.casino-game-info {
    min-height: 82px;
    padding: 13px 14px 15px;
    background:
            radial-gradient(circle at 20% 0%, rgba(30,255,154,0.08), transparent 55%),
            linear-gradient(180deg, #0d151f, #081018);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.casino-game-info small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(30,255,154,0.13);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-game-info strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (max-width: 1280px) {
    .casino-games-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .casino-games {
        padding: 26px;
    }

    .casino-games-head {
        display: block;
    }

    .casino-games-head a {
        display: inline-flex;
        margin-top: 14px;
    }

    .casino-games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .casino-games {
        padding: 20px;
        border-radius: 22px;
    }

    .casino-games-head {
        margin-bottom: 28px;
    }

    .casino-games-head h2 {
        font-size: 28px;
    }

    .casino-games-head p {
        font-size: 14px;
    }

    .casino-category + .casino-category {
        margin-top: 32px;
        padding-top: 26px;
    }

    .casino-category-head h3 {
        font-size: 24px;
    }

    .casino-category-head p {
        font-size: 14px;
    }

    .casino-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .casino-game-card {
        border-radius: 16px;
    }

    .casino-game-info {
        min-height: 72px;
        padding: 10px 11px 12px;
    }

    .casino-game-info small {
        font-size: 8px;
        padding: 4px 8px;
        margin-bottom: 6px;
    }

    .casino-game-info strong {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .casino-games-grid {
        grid-template-columns: 1fr;
    }

    .casino-game-info strong {
        font-size: 16px;
    }
}

/* ===== Winners panel improved ===== */

.winners-panel {
    padding: 32px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 12% 0%, rgba(30,255,154,0.06), transparent 30%),
            radial-gradient(circle at 90% 10%, rgba(255,200,87,0.05), transparent 26%),
            linear-gradient(180deg, rgba(9,14,22,0.96), rgba(6,10,16,0.96));
    border: 1px solid rgba(255,255,255,0.08);
}

.winners-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.winners-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.winners-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.winners-head p {
    margin: 10px 0 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.winners-head a {
    margin-top: 8px;
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.winners-stats-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.winner-stat-card {
    padding: 20px;
    border-radius: 22px;
    background:
            radial-gradient(circle at 85% 15%, rgba(30,255,154,0.08), transparent 34%),
            #0a111a;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.stat-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-tag.gold {
    color: #ffd166;
    background: rgba(255,209,102,0.12);
    border: 1px solid rgba(255,209,102,0.18);
}

.stat-tag.green {
    color: var(--green);
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
}

.stat-tag.blue {
    color: #7cc7ff;
    background: rgba(78,163,255,0.12);
    border: 1px solid rgba(78,163,255,0.18);
}

.winner-stat-card strong {
    display: block;
    margin-top: 14px;
    color: var(--green);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.winner-stat-card small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.winners-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.winners-table-card {
    padding: 20px;
    border-radius: 24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
            #090f17;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.winners-table-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.winners-table-head h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.winners-table-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.winner-line {
    display: grid;
    grid-template-columns: 44px 1fr 76px auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.winner-rank {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #061018;
    font-weight: 900;
    font-size: 15px;
}

.rank-gold {
    background: linear-gradient(135deg, #ffd166, #e8a900);
}

.rank-silver {
    background: linear-gradient(135deg, #e6eef8, #94a3b8);
}

.rank-bronze {
    background: linear-gradient(135deg, #f2a672, #c26b2d);
}

.rank-green {
    color: #04110b;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.winner-user strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.winner-user small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.winner-time {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.winner-line b {
    color: var(--green);
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.025em;
}

.winners-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .winners-panel {
        padding: 26px;
    }

    .winners-head {
        display: block;
    }

    .winners-head a {
        display: inline-flex;
        margin-top: 14px;
    }

    .winners-stats-new {
        grid-template-columns: 1fr;
    }

    .winners-board {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .winners-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .winners-head h2 {
        font-size: 28px;
    }

    .winners-head p {
        font-size: 14px;
    }

    .winner-line {
        grid-template-columns: 38px 1fr auto;
        gap: 10px;
    }

    .winner-time {
        display: none;
    }

    .winner-line b {
        font-size: 17px;
    }

    .winners-table-head h3 {
        font-size: 21px;
    }
}
.winner-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .winner-line {
        grid-template-columns: 38px 1fr auto;
        gap: 10px;
    }

    .winner-type {
        display: none;
    }
}
/* ===== Casino activity block ===== */

.casino-activity {
    padding: 32px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 8% 0%, rgba(30,255,154,0.055), transparent 30%),
            linear-gradient(180deg, rgba(9,14,22,0.97), rgba(5,9,15,0.98));
    border: 1px solid rgba(255,255,255,0.08);
}

.casino-activity-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.activity-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.casino-activity-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.casino-activity-head p {
    margin: 10px 0 0;
    max-width: 780px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.casino-activity-head a {
    margin-top: 8px;
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.activity-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.activity-stat {
    padding: 18px;
    border-radius: 20px;
    background:
            radial-gradient(circle at 90% 10%, rgba(30,255,154,0.08), transparent 34%),
            #0a111a;
    border: 1px solid rgba(255,255,255,0.09);
}

.activity-stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.activity-stat strong {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.activity-stat small {
    display: block;
    margin-top: 8px;
    color: #c8d6e8;
    font-size: 13px;
}

.activity-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
    align-items: stretch;
}

.activity-table,
.activity-side {
    border-radius: 24px;
}

.activity-table {
    padding: 20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
            #090f17;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.activity-table-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.activity-table-head h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.activity-table-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.activity-row {
    display: grid;
    grid-template-columns: 42px minmax(160px, 1fr) 82px auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.activity-place {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #061018;
    font-size: 15px;
    font-weight: 900;
}

.place-1 {
    background: linear-gradient(135deg, #ffd166, #e8a900);
}

.place-2 {
    background: linear-gradient(135deg, #e6eef8, #94a3b8);
}

.place-3 {
    background: linear-gradient(135deg, #f2a672, #c26b2d);
}

.place-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.activity-player strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.activity-player small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.activity-game {
    display: inline-flex;
    justify-content: center;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    color: #c7d5e8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.activity-row b {
    color: var(--green);
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.025em;
}

.activity-side {
    display: grid;
    gap: 14px;
}

.activity-game-card {
    padding: 18px;
    border-radius: 22px;
    background:
            radial-gradient(circle at 90% 15%, rgba(30,255,154,0.08), transparent 34%),
            #0a111a;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.activity-game-card span {
    display: inline-flex;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.16);
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.activity-game-card strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.activity-game-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.activity-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1080px) {
    .activity-board {
        grid-template-columns: 1fr;
    }

    .activity-side {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .casino-activity {
        padding: 26px;
    }

    .casino-activity-head {
        display: block;
    }

    .casino-activity-head a {
        display: inline-flex;
        margin-top: 14px;
    }

    .activity-stats {
        grid-template-columns: 1fr;
    }

    .activity-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .casino-activity {
        padding: 20px;
        border-radius: 22px;
    }

    .casino-activity-head h2 {
        font-size: 28px;
    }

    .casino-activity-head p {
        font-size: 14px;
    }

    .activity-stat strong {
        font-size: 30px;
    }

    .activity-table {
        padding: 16px;
        border-radius: 20px;
    }

    .activity-table-head {
        display: block;
    }

    .activity-table-head span {
        display: block;
        margin-top: 6px;
    }

    .activity-row {
        grid-template-columns: 38px 1fr auto;
        gap: 10px;
    }

    .activity-game {
        display: none;
    }

    .activity-row b {
        font-size: 17px;
    }

    .activity-player strong {
        font-size: 14px;
    }
}

/* ===== BetOnRed factual review blocks ===== */

.betonred-review,
.betonred-info-block {
    padding: 34px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 8% 0%, rgba(30,255,154,0.055), transparent 30%),
            linear-gradient(180deg, rgba(9,14,22,0.97), rgba(5,9,15,0.98));
    border: 1px solid rgba(255,255,255,0.08);
}

.review-head {
    max-width: 900px;
    margin-bottom: 28px;
}

.review-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-head h2,
.betonred-info-block h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.review-head p,
.betonred-info-block p,
.review-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.review-head p {
    margin: 10px 0 0;
    max-width: 820px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.review-card {
    padding: 20px;
    border-radius: 22px;
    background:
            radial-gradient(circle at 85% 10%, rgba(30,255,154,0.08), transparent 34%),
            #0a111a;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.review-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(30,255,154,0.12);
}

.review-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.review-content,
.info-block-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.info-block-grid.reverse {
    grid-template-columns: 340px minmax(0, 1fr);
}

.review-text h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.review-text p,
.betonred-info-block p {
    margin: 0 0 16px;
}

.review-aside,
.info-list-card,
.provider-card {
    padding: 22px;
    border-radius: 24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
            #090f17;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 16px 38px rgba(0,0,0,0.20);
}

.review-aside h3,
.info-list-card h3,
.provider-card h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.review-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.review-fact span {
    color: var(--muted);
    font-size: 14px;
}

.review-fact strong {
    color: var(--green);
    font-size: 20px;
    white-space: nowrap;
}

.review-aside p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.info-list-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list-card li {
    position: relative;
    padding: 12px 0 12px 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.info-list-card li:first-child {
    border-top: 0;
}

.info-list-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--green);
    font-weight: 900;
}

.inline-link {
    display: inline-flex;
    margin-top: 4px;
    color: var(--green);
    font-weight: 900;
}

.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-tags span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.10);
    border: 1px solid rgba(30,255,154,0.16);
    color: #d8ffe9;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-content,
    .info-block-grid,
    .info-block-grid.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .betonred-review,
    .betonred-info-block {
        padding: 20px;
        border-radius: 22px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-head h2,
    .betonred-info-block h2 {
        font-size: 28px;
    }

    .review-head p,
    .betonred-info-block p,
    .review-text p {
        font-size: 14px;
    }

    .review-text h3 {
        font-size: 24px;
    }
}

/* ===== BetOnRed facts table ===== */

.betonred-facts-section {
    padding: 34px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 8% 0%, rgba(30,255,154,0.055), transparent 30%),
            linear-gradient(180deg, rgba(9,14,22,0.97), rgba(5,9,15,0.98));
    border: 1px solid rgba(255,255,255,0.08);
}

.facts-heading {
    max-width: 920px;
    margin-bottom: 28px;
}

.facts-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(30,255,154,0.12);
    border: 1px solid rgba(30,255,154,0.18);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.facts-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.facts-heading p {
    margin: 10px 0 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.facts-table-wrap {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #090f17;
    box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.facts-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.facts-table thead {
    background:
            linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
            #111822;
}

.facts-table th {
    padding: 17px 22px;
    text-align: left;
    color: #8fa0b6;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.facts-table td {
    padding: 17px 22px;
    color: #c7d5e8;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.065);
}

.facts-table tbody tr:last-child td {
    border-bottom: 0;
}

.facts-table tbody tr {
    background: rgba(255,255,255,0.012);
    transition: background 0.2s ease;
}

.facts-table tbody tr:hover {
    background: rgba(30,255,154,0.045);
}

.facts-table td:first-child {
    width: 34%;
    color: #aebbd0;
    font-weight: 700;
}

.facts-table td:last-child {
    color: #fff;
    font-weight: 700;
}

.facts-table strong {
    color: var(--green);
    font-weight: 900;
}

.facts-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .betonred-facts-section {
        padding: 20px;
        border-radius: 22px;
    }

    .facts-heading h2 {
        font-size: 28px;
    }

    .facts-heading p {
        font-size: 14px;
    }

    .facts-table-wrap {
        overflow-x: auto;
        border-radius: 18px;
    }

    .facts-table {
        min-width: 680px;
    }

    .facts-table th,
    .facts-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* FAQ design like reference */
.faq-panel {
    margin-top: 26px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.faq-panel .section-head {
    margin-bottom: 22px;
}

.faq-panel .section-head h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #1d1a25;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}

.faq-list summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 24px 70px 24px 26px;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq-list p {
    margin: 0;
    padding: 0 26px 24px;
    color: #b8c7db;
    font-size: 15px;
    line-height: 1.65;
}

.faq-list details[open] summary {
    padding-bottom: 18px;
}

.faq-list details[open] p {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 18px;
}

@media (max-width: 640px) {
    .faq-list {
        gap: 12px;
    }

    .faq-list details {
        border-radius: 18px;
    }

    .faq-list summary {
        padding: 20px 56px 20px 18px;
        font-size: 15px;
    }

    .faq-list summary::after {
        right: 22px;
        width: 9px;
        height: 9px;
    }

    .faq-list p {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .faq-list details[open] p {
        padding-top: 16px;
    }
}

/* ===== Unified internal links ===== */

.internal-link,
.inline-link,
.section-head a,
.casino-games-head a,
.casino-activity-head a,
.winners-showcase-head a,
.winners-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 999px;
    background:
            linear-gradient(135deg, rgba(30,255,154,0.16), rgba(17,214,127,0.09));
    border: 1px solid rgba(30,255,154,0.22);
    color: var(--green);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(30,255,154,0.08);
    transition:
            transform 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            color 0.2s ease;
}

.internal-link::after,
.inline-link::after,
.section-head a::after,
.casino-games-head a::after,
.casino-activity-head a::after,
.winners-showcase-head a::after,
.winners-head a::after {
    content: "→";
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.internal-link:hover,
.inline-link:hover,
.section-head a:hover,
.casino-games-head a:hover,
.casino-activity-head a:hover,
.winners-showcase-head a:hover,
.winners-head a:hover {
    transform: translateY(-2px);
    color: #061018;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-color: rgba(30,255,154,0.55);
    box-shadow: 0 14px 34px rgba(30,255,154,0.18);
}

.internal-link:hover::after,
.inline-link:hover::after,
.section-head a:hover::after,
.casino-games-head a:hover::after,
.casino-activity-head a:hover::after,
.winners-showcase-head a:hover::after,
.winners-head a:hover::after {
    transform: translateX(3px);
}
.text-link {
    color: var(--green);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(30,255,154,0.35);
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
    color: #fff;
    text-decoration-color: var(--green);
}

/* ===== Provider / Payment logo strips ===== */

.brand-strips {
    display: grid;
    gap: 26px;
    margin-top: 26px;
}

.brand-strip {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 30px;
    background:
            radial-gradient(circle at 10% 0%, rgba(30,255,154,0.075), transparent 28%),
            radial-gradient(circle at 90% 10%, rgba(78,163,255,0.055), transparent 24%),
            linear-gradient(180deg, rgba(10, 14, 22, 0.96), rgba(7, 10, 16, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.brand-strip-head {
    margin-bottom: 24px;
}

.brand-strip-head h2 {
    margin: 10px 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
}

.brand-strip-head p {
    margin: 0;
    max-width: 820px;
    color: #b8c7db;
    font-size: 16px;
    line-height: 1.6;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
}

.logo-row-payments {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-item {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.055);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(30,255,154,0.18);
    background:
            linear-gradient(180deg, rgba(30,255,154,0.07), rgba(255,255,255,0.02));
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.logo-item img {
    display: block;
    max-width: 250px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.88;
    filter: grayscale(10%);
    transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
}

.logo-row-payments .logo-item img {
    max-height: 34px;
}

@media (max-width: 1100px) {
    .logo-row,
    .logo-row-payments {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brand-strip {
        padding: 20px;
        border-radius: 22px;
    }

    .brand-strip-head {
        margin-bottom: 18px;
    }

    .brand-strip-head h2 {
        font-size: 26px;
    }

    .brand-strip-head p {
        font-size: 14px;
    }

    .logo-row,
    .logo-row-payments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .logo-item {
        min-height: 72px;
        padding: 14px;
        border-radius: 18px;
    }

    .logo-item img {
        max-width: 120px;
        max-height: 30px;
    }
}
/* ===== Manual provider logo sizing ===== */

.providers-logo-row .logo-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.providers-logo-row .logo-item img.provider-logo {
    display: block !important;
    object-fit: contain !important;
    max-width: none !important;
    max-height: none !important;
    width: auto;
    height: auto;
    opacity: 0.92;
}

/* Меняй размеры тут */
.provider-pragmatic {
    width: 115px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-playson {
    width: 155px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-aurum {
    width: 120px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-bgaming {
    width: 130px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-playngo {
    width: 100px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-boongo {
    width: 100px !important;
    height: auto !important;
    transform: translateY(0px);
}

.provider-evolution {
    width: 100px !important;
    height: auto !important;
    transform: translateY(0px);
}

/* hover без поломки transform */
.providers-logo-row .logo-item:hover img.provider-logo {
    opacity: 1;
}

/* ===== Manual payment logo sizing ===== */

.payments-logo-row .logo-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payments-logo-row .logo-item img.payment-logo {
    display: block !important;
    object-fit: contain !important;
    max-width: none !important;
    max-height: none !important;
    width: auto;
    height: auto;
    opacity: 0.92;
}

/* Меняй размеры тут */
.payment-visa {
    width: 92px !important;
    height: auto !important;
    transform: translateY(0px);
}

.payment-mastercard {
    width: 65px !important;
    height: auto !important;
    transform: translateY(0px);
}

.payment-revolut {
    width: 115px !important;
    height: auto !important;
    transform: translateY(0px);
}

.payment-crypto {
    width: 90px !important;
    height: auto !important;
    transform: translateY(0px);
}

.payment-skrill {
    width: 105px !important;
    height: auto !important;
    transform: translateY(0px);
}

.payment-paysafecard {
    width: 125px !important;
    height: auto !important;
    transform: translateY(0px);
}

/* hover без поломки transform */
.payments-logo-row .logo-item:hover img.payment-logo {
    opacity: 1;
}
/* Casino page improved */
.casino-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.casino-hero-new {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: #10151d;
    display: flex;
    align-items: flex-end;
    padding: 44px;
    box-shadow: 0 26px 70px rgba(0,0,0,.35);
}

.casino-hero-bg {
    position: absolute;
    inset: 0;
}

.casino-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-hero-overlay {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 78% 35%, rgba(0,255,160,.18), transparent 32%),
            linear-gradient(90deg, rgba(5,8,14,.96) 0%, rgba(5,8,14,.72) 46%, rgba(5,8,14,.28) 100%),
            linear-gradient(0deg, rgba(5,8,14,.96), rgba(5,8,14,.12));
}

.casino-hero-new-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.casino-hero-new h1 {
    margin: 14px 0 16px;
    max-width: 780px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: .96;
    letter-spacing: -2px;
    color: #fff;
}

.casino-hero-new p {
    max-width: 680px;
    color: #b9cee9;
    font-size: 17px;
    line-height: 1.7;
}

.casino-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin: 26px 0;
}

.casino-hero-points div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(8,15,25,.78);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}

.casino-hero-points strong {
    display: block;
    color: #00ffa3;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 7px;
}

.casino-hero-points span {
    color: #d7e7ff;
    font-size: 13px;
}

.casino-hero-actions,
.casino-showcase-head,
.casino-events-head,
.casino-live-copy,
.casino-guide-main,
.bonus-rules-card {
    position: relative;
}

.casino-quick-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.casino-quick-cards article {
    padding: 22px;
    border-radius: 22px;
    background:
            radial-gradient(circle at top right, rgba(0,255,163,.13), transparent 36%),
            #101720;
    border: 1px solid rgba(255,255,255,.09);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.casino-quick-cards article:hover {
    transform: translateY(-3px);
    border-color: rgba(0,255,163,.32);
    background:
            radial-gradient(circle at top right, rgba(0,255,163,.2), transparent 38%),
            #111b25;
}

.quick-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0,255,163,.12);
    margin-bottom: 16px;
    font-size: 22px;
}

.casino-quick-cards span,
.casino-events-grid span,
.casino-guide-steps span,
.casino-safety-grid article > span,
.casino-poster-card span,
.live-game-card span {
    display: inline-flex;
    color: #00ffa3;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .7px;
}

.casino-quick-cards h2,
.casino-events-grid h3,
.casino-guide-steps h3,
.casino-safety-grid h2 {
    margin: 10px 0 8px;
    color: #fff;
}

.casino-quick-cards p,
.casino-events-grid p,
.casino-guide-steps p,
.casino-safety-grid p {
    margin: 0;
    color: #b7c9df;
    line-height: 1.6;
}

.casino-wins-strip,
.casino-showcase-section,
.casino-live-section,
.casino-events-section,
.casino-guide-grid,
.casino-bonus-rules,
.casino-providers-section,
.casino-final-cta {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at top left, rgba(0,255,163,.08), transparent 34%),
            #0c121a;
}

.wins-strip-head,
.casino-library-head,
.casino-showcase-head,
.casino-events-head,
.casino-providers-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.wins-strip-head h2,
.casino-showcase-head h2,
.casino-events-head h2,
.casino-providers-head h2,
.casino-live-copy h2,
.casino-guide-main h2,
.bonus-rules-card h2,
.casino-final-cta h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.wins-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.win-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
}

.win-mini-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 15px;
    flex: 0 0 auto;
}

.win-mini-card strong,
.win-mini-card span,
.win-mini-card b {
    display: block;
}

.win-mini-card strong {
    color: #fff;
    font-size: 14px;
}

.win-mini-card span {
    color: #8ea1b8;
    font-size: 12px;
    margin: 4px 0;
}

.win-mini-card b {
    color: #00ffa3;
    font-size: 18px;
}

.casino-game-poster-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 16px;
}

.casino-poster-card {
    position: relative;
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    background: #111820;
    border: 1px solid rgba(255,255,255,.09);
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    transition: transform .2s ease, border-color .2s ease;
}

.casino-poster-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,163,.38);
}

.casino-poster-card.poster-big {
    grid-row: span 2;
    min-height: 576px;
}

.casino-poster-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    z-index: -2;
}

.casino-poster-card:hover img {
    transform: scale(1.05);
}

.casino-poster-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4,8,14,.94), rgba(4,8,14,.08) 58%);
    z-index: -1;
}

.casino-poster-card div {
    padding: 18px;
}

.casino-poster-card strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
    margin: 8px 0 6px;
}

.casino-poster-card small {
    color: #b9cbe0;
    font-weight: 700;
}

.casino-live-section {
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    gap: 22px;
    align-items: stretch;
}

.casino-live-copy {
    padding: 24px;
    border-radius: 24px;
    background:
            radial-gradient(circle at 20% 15%, rgba(0,255,163,.18), transparent 30%),
            rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.casino-live-copy p,
.casino-guide-main p,
.bonus-rules-card p,
.casino-final-cta p,
.casino-showcase-head p,
.casino-events-head p,
.casino-providers-head p {
    color: #b7c9df;
    line-height: 1.7;
}

.casino-live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.live-game-card {
    position: relative;
    min-height: 210px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255,255,255,.09);
    isolation: isolate;
}

.live-game-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .35s ease;
}

.live-game-card:hover img {
    transform: scale(1.05);
}

.live-game-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4,8,14,.95), rgba(4,8,14,.05));
    z-index: -1;
}

.live-game-card div {
    padding: 18px;
}

.live-game-card strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-top: 7px;
}

.casino-events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
}

.event-card {
    position: relative;
    min-height: 250px;
    padding: 24px;
    border-radius: 24px;
    overflow: hidden;
    background: #111720;
    border: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.event-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 80% 60%, rgba(0,255,163,.12), transparent 35%),
            linear-gradient(90deg, rgba(13,18,26,.98), rgba(13,18,26,.72));
    pointer-events: none;
}

.event-card > div {
    position: relative;
    z-index: 2;
    max-width: 62%;
}

.event-card img {
    position: absolute;
    right: -20px;
    bottom: -18px;
    width: 48%;
    height: 85%;
    object-fit: cover;
    border-radius: 22px;
    opacity: .9;
}

.event-primary img {
    width: 42%;
}

.casino-guide-grid {
    display: grid;
    grid-template-columns: .9fr 1.4fr;
    gap: 20px;
}

.casino-guide-main {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.casino-guide-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.casino-guide-steps article {
    padding: 22px;
    border-radius: 22px;
    background: #111821;
    border: 1px solid rgba(255,255,255,.08);
}

.casino-guide-steps span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0,255,163,.13);
    color: #00ffa3;
}

.casino-bonus-rules {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.bonus-rules-card {
    padding: 26px;
    border-radius: 24px;
    background:
            radial-gradient(circle at 0% 0%, rgba(255,205,68,.12), transparent 32%),
            rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.bonus-rules-table {
    display: grid;
    gap: 12px;
}

.bonus-rules-table div {
    padding: 18px;
    border-radius: 18px;
    background: #111821;
    border: 1px solid rgba(255,255,255,.08);
}

.bonus-rules-table span,
.bonus-rules-table strong {
    display: block;
}

.bonus-rules-table span {
    color: #9db0c6;
    margin-bottom: 6px;
}

.bonus-rules-table strong {
    color: #fff;
}

.casino-provider-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.casino-provider-cloud span {
    padding: 13px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    color: #d9e8f8;
    font-weight: 800;
}

.casino-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.casino-safety-grid article {
    padding: 24px;
    border-radius: 24px;
    background:
            radial-gradient(circle at top right, rgba(0,255,163,.09), transparent 36%),
            #101720;
    border: 1px solid rgba(255,255,255,.09);
}

.casino-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
            radial-gradient(circle at right, rgba(0,255,163,.22), transparent 35%),
            linear-gradient(135deg, #121a24, #090f16);
}

.casino-final-cta div {
    max-width: 760px;
}

@media (max-width: 1180px) {
    .casino-game-poster-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .casino-poster-card.poster-big {
        grid-row: auto;
        min-height: 320px;
    }

    .wins-strip-grid,
    .casino-quick-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .casino-events-grid,
    .casino-live-section,
    .casino-guide-grid,
    .casino-bonus-rules,
    .casino-safety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .casino-hero-new {
        min-height: 560px;
        padding: 24px;
        border-radius: 22px;
    }

    .casino-hero-overlay {
        background:
                linear-gradient(0deg, rgba(5,8,14,.98), rgba(5,8,14,.45)),
                linear-gradient(90deg, rgba(5,8,14,.92), rgba(5,8,14,.55));
    }

    .casino-hero-points,
    .casino-quick-cards,
    .wins-strip-grid,
    .casino-game-poster-grid,
    .casino-live-grid,
    .casino-guide-steps {
        grid-template-columns: 1fr;
    }

    .casino-wins-strip,
    .casino-showcase-section,
    .casino-live-section,
    .casino-events-section,
    .casino-guide-grid,
    .casino-bonus-rules,
    .casino-providers-section,
    .casino-final-cta {
        padding: 20px;
        border-radius: 22px;
    }

    .casino-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card > div {
        max-width: 100%;
    }

    .event-card img {
        opacity: .22;
        width: 80%;
        height: 100%;
    }
}

/* Casino hero clean - image visible */
.casino-hero-clean {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 24px;
    align-items: stretch;
    padding: 22px;
    border-radius: 30px;
    background:
            radial-gradient(circle at 8% 12%, rgba(0,255,163,.13), transparent 34%),
            linear-gradient(135deg, #101720, #070b12);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 26px 70px rgba(0,0,0,.32);
    overflow: hidden;
}

.casino-hero-clean-text {
    padding: 34px 18px 34px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-hero-clean h1 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: .98;
    letter-spacing: -2px;
    max-width: 780px;
}

.casino-hero-clean p {
    margin: 0;
    color: #b9cee9;
    font-size: 17px;
    line-height: 1.7;
    max-width: 680px;
}

.casino-hero-clean-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
    max-width: 690px;
}

.casino-hero-clean-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
}

.casino-hero-clean-stats strong {
    display: block;
    margin-bottom: 7px;
    color: #00ffa3;
    font-size: 25px;
    line-height: 1;
}

.casino-hero-clean-stats span {
    display: block;
    color: #d7e7ff;
    font-size: 13px;
    line-height: 1.35;
}

.casino-hero-clean-image {
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    background: #111820;
    border: 1px solid rgba(255,255,255,.1);
}

.casino-hero-clean-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

/* Важно: если у тебя остались старые стили, они не должны накладывать затемнение */
.casino-hero-clean-image::before,
.casino-hero-clean-image::after,
.casino-hero-clean::before,
.casino-hero-clean::after {
    display: none;
    content: none;
}

@media (max-width: 1100px) {
    .casino-hero-clean {
        grid-template-columns: 1fr;
    }

    .casino-hero-clean-text {
        padding: 28px 18px 10px;
    }

    .casino-hero-clean-image,
    .casino-hero-clean-image img {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .casino-hero-clean {
        padding: 14px;
        border-radius: 24px;
    }

    .casino-hero-clean-text {
        padding: 22px 10px 8px;
    }

    .casino-hero-clean h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .casino-hero-clean-stats {
        grid-template-columns: 1fr;
    }

    .casino-hero-clean-image,
    .casino-hero-clean-image img {
        min-height: 260px;
    }
}
/* Clean casino catalog */
.casino-games-catalog,
.casino-activities-clean {
    margin-top: 28px;
    padding: 32px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 0 0, rgba(0,255,163,.10), transparent 34%),
            #0b121b;
    border: 1px solid rgba(255,255,255,.10);
}

.casino-games-catalog-head,
.casino-activities-head {
    max-width: 920px;
    margin-bottom: 28px;
}

.casino-games-catalog-head h2,
.casino-activities-head h2 {
    margin: 12px 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.casino-games-catalog-head p,
.casino-activities-head p {
    margin: 0;
    color: #cfe2ff;
    font-size: 16px;
    line-height: 1.7;
}

.casino-tabs-layout {
    display: grid;
    gap: 30px;
}

.casino-category-block {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
}

.casino-category-title {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.casino-category-title > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0,255,163,.14);
    color: #00ffa3;
    font-weight: 900;
    border: 1px solid rgba(0,255,163,.28);
}

.casino-category-title h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 26px;
    line-height: 1.15;
}

.casino-category-title p {
    margin: 0;
    color: #b9cee9;
    line-height: 1.55;
}

.clean-game-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.clean-game-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #111923;
    border: 1px solid rgba(255,255,255,.10);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.clean-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,163,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.clean-game-img {
    height: 210px;
    background: #070b12;
    overflow: hidden;
}

.clean-game-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clean-game-info {
    padding: 16px 16px 18px;
    background: linear-gradient(180deg, #121b26, #0d141d);
}

.clean-game-info span {
    display: block;
    margin-bottom: 8px;
    color: #00ffa3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.clean-game-info strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
}

.clean-game-info small {
    display: block;
    margin-top: 8px;
    color: #b9cee9;
    font-size: 13px;
}

/* Activities clean */
.activity-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.activity-feature-card {
    padding: 22px;
    border-radius: 24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.10);
}

.activity-feature-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(0,255,163,.12);
    border: 1px solid rgba(0,255,163,.24);
    font-size: 27px;
}

.activity-feature-card span {
    display: block;
    margin-bottom: 8px;
    color: #00ffa3;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.activity-feature-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
}

.activity-feature-card p {
    margin: 0;
    color: #cfe2ff;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1200px) {
    .clean-game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .activity-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .casino-games-catalog,
    .casino-activities-clean {
        padding: 20px;
        border-radius: 22px;
    }

    .casino-category-block {
        padding: 16px;
    }

    .clean-game-grid,
    .activity-feature-grid {
        grid-template-columns: 1fr;
    }

    .clean-game-img {
        height: 230px;
    }

    .casino-category-title {
        flex-direction: column;
    }
}
.casino-wins-clean {
    margin-top: 28px;
}

.wins-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wins-clean-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
}

.wins-clean-card .wins-place {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0,255,163,.13);
    color: #00ffa3;
    font-weight: 900;
    font-size: 13px;
}

.wins-clean-card strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.wins-clean-card small {
    display: block;
    margin-top: 4px;
    color: #9fb3cc;
    font-size: 12px;
}

.wins-clean-card b {
    grid-column: 1 / -1;
    color: #00ffa3;
    font-size: 22px;
    line-height: 1;
    margin-top: 4px;
}

.clean-game-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .wins-clean-grid,
    .clean-game-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wins-clean-grid,
    .clean-game-grid-compact {
        grid-template-columns: 1fr;
    }
}
/* Mobile center alignment only */
@media (max-width: 768px) {
    .content h1,
    .content h2,
    .content h3,
    .content .hero-top-label,
    .content .review-kicker,
    .content .facts-kicker,
    .content .activity-kicker,
    .content .section-head,
    .content .section-head h2,
    .content .casino-games-catalog-head,
    .content .casino-games-catalog-head h2,
    .content .casino-games-catalog-head p,
    .content .casino-category-title,
    .content .casino-category-title h3,
    .content .casino-category-title p,
    .content .casino-hero-clean-text,
    .content .casino-hero-clean-text h1,
    .content .casino-hero-clean-text p,
    .content .wins-strip-head,
    .content .wins-strip-head h2,
    .content .casino-activities-head,
    .content .casino-activities-head h2,
    .content .casino-activities-head p,
    .content .casino-guide-main,
    .content .casino-guide-main h2,
    .content .casino-guide-main p,
    .content .casino-providers-head,
    .content .casino-providers-head h2,
    .content .casino-providers-head p,
    .content .casino-final-cta,
    .content .casino-final-cta h2,
    .content .casino-final-cta p {
        text-align: center;
    }

    .content .hero-top-label,
    .content .review-kicker,
    .content .facts-kicker,
    .content .activity-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .casino-hero-actions,
    .casino-final-cta,
    .wins-strip-head,
    .casino-games-catalog-head,
    .casino-category-title,
    .casino-activities-head,
    .casino-guide-main,
    .casino-providers-head {
        align-items: center;
        justify-content: center;
    }

    .casino-hero-actions {
        flex-direction: column;
    }

    .casino-hero-actions .btn,
    .casino-final-cta .btn,
    .casino-final-cta a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }

    /* Footer mobile */
    .footer {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-grid > div {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer p {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer h3 {
        text-align: center;
    }

    .footer a {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}
/* Strong mobile centering fix */
@media (max-width: 768px) {
    /* Общий центр для контента */
    .content,
    .content section,
    .content article,
    .content div,
    .content p,
    .content h1,
    .content h2,
    .content h3,
    .content h4,
    .content span,
    .content small,
    .content strong {
        text-align: center;
    }

    /* Центрируем основные обертки */
    .content section,
    .panel,
    .casino-page section,
    .casino-hero-clean,
    .casino-quick-cards,
    .casino-wins-strip,
    .casino-games-catalog,
    .casino-category-block,
    .casino-live-section,
    .casino-activities-clean,
    .casino-guide-grid,
    .casino-bonus-rules,
    .casino-providers-section,
    .casino-safety-grid,
    .casino-final-cta,
    .faq-panel {
        align-items: center;
        justify-content: center;
    }

    /* Если блоки flex/grid — чтобы элементы не липли влево */
    .casino-hero-clean-text,
    .casino-hero-clean-stats,
    .casino-hero-actions,
    .wins-strip-head,
    .wins-strip-grid,
    .casino-games-catalog-head,
    .casino-category-title,
    .clean-game-info,
    .casino-live-copy,
    .casino-live-grid,
    .casino-activities-head,
    .activity-feature-card,
    .casino-guide-main,
    .casino-guide-steps,
    .bonus-rules-card,
    .bonus-rules-table,
    .casino-providers-head,
    .casino-provider-cloud,
    .casino-safety-grid article,
    .casino-final-cta,
    .faq-list,
    .footer-grid,
    .footer-bottom {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Карточки */
    .casino-quick-cards article,
    .win-mini-card,
    .clean-game-card,
    .live-game-card,
    .activity-feature-card,
    .casino-guide-steps article,
    .bonus-rules-table div,
    .casino-safety-grid article,
    .faq-list details {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    /* Внутри карточек */
    .win-mini-card div,
    .clean-game-info,
    .live-game-card div,
    .activity-feature-card div,
    .casino-guide-steps article,
    .bonus-rules-table div,
    .casino-safety-grid article {
        text-align: center;
    }

    /* Кнопки и ссылки */
    .btn,
    .internal-link,
    .text-link,
    .sidebar-cta-btn,
    .top-link {
        text-align: center;
        justify-content: center;
    }

    .casino-hero-actions,
    .casino-final-cta {
        flex-direction: column;
    }

    .casino-hero-actions .btn,
    .casino-final-cta .btn,
    .casino-final-cta a {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Кикеры / маленькие зеленые надписи */
    .hero-top-label,
    .review-kicker,
    .facts-kicker,
    .activity-kicker,
    .quick-card-icon {
        display: inline-flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Изображения по центру */
    .content img,
    .footer img {
        margin-left: auto;
        margin-right: auto;
    }

    /* Сетка игр */
    .clean-game-grid,
    .casino-live-grid,
    .wins-strip-grid,
    .activity-feature-grid,
    .casino-guide-steps,
    .casino-provider-cloud {
        justify-items: center;
    }

    .clean-game-card,
    .live-game-card,
    .win-mini-card {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Чтобы текст под картинками не уезжал */
    .clean-game-info,
    .live-game-card div,
    .win-mini-card div {
        width: 100%;
    }

    /* FAQ */
    .faq-list details {
        width: 100%;
    }

    .faq-list summary {
        text-align: center;
        justify-content: center;
        padding-right: 44px;
        padding-left: 44px;
    }

    .faq-list details p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer mobile */
    .footer {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-grid > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer p {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer h3,
    .footer a {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}
/* Mobile: fix icons, numbers and images */
@media (max-width: 768px) {

    /* Иконки / номера строго по центру */
    .quick-card-icon,
    .casino-guide-steps article > span,
    .activity-feature-icon,
    .casino-category-title > span,
    .map-card-number,
    .casino-step > span,
    .activity-place,
    .clean-game-info span,
    .live-game-card span,
    .review-kicker,
    .hero-top-label,
    .facts-kicker,
    .activity-kicker {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    .casino-guide-steps article > span,
    .activity-feature-icon,
    .quick-card-icon {
        width: 54px;
        height: 54px;
    }

    .casino-category-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .activity-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Чтобы игровые карточки на мобилке были одинаковые */
    .clean-game-card,
    .live-game-card,
    .win-mini-card {
        max-width: 340px;
        width: 100%;
    }

    /* Главное: фото не режем слишком жестко */
    .clean-game-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #101720;
        border-radius: 18px;
    }

    .clean-game-img img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
    }

    /* Live cards тоже ровняем */
    .live-game-card {
        overflow: hidden;
    }

    .live-game-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain !important;
        object-position: center !important;
        background: #101720;
        display: block;
    }

    /* Маленькие карточки выигрышей */
    .win-mini-card {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .win-mini-card img {
        width: 92px;
        height: 92px;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 18px;
    }

    /* Если есть большие постеры со старой версии */
    .casino-poster-card img,
    .library-feature img,
    .library-mini img {
        object-fit: contain !important;
        object-position: center !important;
        background: #101720;
    }

    /* Карточки активностей без кривых фоновых картинок на мобилке */
    .event-card,
    .activity-feature-card,
    .casino-guide-steps article {
        align-items: center;
        text-align: center;
    }

    .event-card img {
        position: static;
        width: 160px;
        height: 160px;
        object-fit: contain !important;
        object-position: center !important;
        margin: 18px auto 0;
        opacity: 1;
    }

    /* Номера 01, 02 и иконки не должны быть слева */
    .casino-guide-steps article,
    .activity-feature-card,
    .casino-quick-cards article {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .casino-guide-steps article > *,
    .activity-feature-card > *,
    .casino-quick-cards article > * {
        margin-left: auto;
        margin-right: auto;
    }
}
/* MOBILE: нормальный вид игровых карточек без кривой обрезки */
@media (max-width: 768px) {

    .casino-games-catalog,
    .casino-showcase-section,
    .casino-live-section,
    .casino-activities-clean,
    .casino-guide-grid,
    .casino-bonus-rules,
    .casino-providers-section,
    .casino-safety-grid,
    .casino-wins-strip {
        text-align: center;
    }

    .clean-game-grid,
    .casino-live-grid,
    .wins-strip-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
    }

    /* Игровые карточки на мобилке — горизонтальные */
    .clean-game-card,
    .live-game-card,
    .win-mini-card {
        display: grid !important;
        grid-template-columns: 96px 1fr;
        align-items: center;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        min-height: 112px;
        padding: 12px;
        border-radius: 20px;
        text-align: left;
        background: rgba(15, 22, 32, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    /* Контейнер фото */
    .clean-game-img,
    .live-game-card > img,
    .win-mini-card > img {
        width: 96px !important;
        height: 96px !important;
        min-width: 96px;
        border-radius: 16px;
        overflow: hidden;
        background: #090f17;
    }

    .clean-game-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Само фото — без кривой огромной обрезки */
    .clean-game-img img,
    .live-game-card > img,
    .win-mini-card > img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block;
        border-radius: 16px;
    }

    /* Текст справа */
    .clean-game-info,
    .live-game-card > div,
    .win-mini-card > div {
        text-align: left !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: center;
        min-width: 0;
    }

    .clean-game-info span,
    .live-game-card span,
    .win-mini-card span {
        display: block;
        margin: 0 0 4px 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        font-size: 11px;
        line-height: 1.2;
    }

    .clean-game-info strong,
    .live-game-card strong,
    .win-mini-card strong {
        font-size: 16px;
        line-height: 1.15;
        text-align: left;
    }

    .clean-game-info small,
    .win-mini-card b {
        text-align: left;
    }

    /* Убираем большие кривые постеры, если они остались */
    .poster-big,
    .casino-poster-card,
    .library-feature,
    .library-mini {
        max-width: 100%;
    }

    .poster-big img,
    .casino-poster-card img,
    .library-feature img,
    .library-mini img {
        height: 120px !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}
/* ===== MOBILE FIX: casino page section headers / providers / wins ===== */
@media (max-width: 768px) {

    /* Общие отступы секций */
    .casino-page section {
        width: 100%;
    }

    .casino-wins-strip,
    .casino-providers-section,
    .casino-games-catalog,
    .casino-activities-clean,
    .casino-guide-grid,
    .casino-bonus-rules,
    .casino-safety-grid,
    .casino-final-cta {
        padding: 24px 18px !important;
        border-radius: 24px !important;
    }

    /* Заголовки секций — нормальная колонка */
    .wins-strip-head,
    .casino-providers-head,
    .casino-games-catalog-head,
    .casino-activities-head,
    .casino-showcase-head,
    .casino-guide-main,
    .casino-final-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .wins-strip-head > div,
    .casino-providers-head > div,
    .casino-games-catalog-head > div,
    .casino-activities-head > div,
    .casino-showcase-head > div {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .wins-strip-head h2,
    .casino-providers-head h2,
    .casino-games-catalog-head h2,
    .casino-activities-head h2,
    .casino-guide-main h2,
    .casino-bonus-rules h2,
    .casino-safety-grid h2,
    .casino-final-cta h2 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: clamp(26px, 7vw, 34px) !important;
        line-height: 1.08 !important;
    }

    .wins-strip-head p,
    .casino-providers-head p,
    .casino-games-catalog-head p,
    .casino-activities-head p,
    .casino-guide-main p,
    .casino-bonus-rules p,
    .casino-safety-grid p,
    .casino-final-cta p {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        line-height: 1.6 !important;
    }

    /* Зеленые бейджи сверху */
    .review-kicker,
    .hero-top-label {
        width: fit-content !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Кнопка Ver bono — вниз и по центру */
    .wins-strip-head .internal-link {
        position: static !important;
        display: inline-flex !important;
        margin: 4px auto 0 !important;
        align-self: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: auto !important;
        min-width: 140px !important;
    }

    /* Карточки выигрышей — не криво, цифра сверху по центру */
    .wins-clean-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .wins-clean-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-align: center !important;
        padding: 20px 16px !important;
        min-height: auto !important;
    }

    .wins-clean-card .wins-place {
        margin: 0 auto !important;
    }

    .wins-clean-card div,
    .wins-clean-card strong,
    .wins-clean-card small,
    .wins-clean-card b {
        text-align: center !important;
        align-items: center !important;
    }

    .wins-clean-card b {
        font-size: 24px !important;
        line-height: 1.1 !important;
    }

    /* Providers section — исправляет второй скрин */
    .casino-providers-section {
        overflow: hidden !important;
    }

    .casino-providers-head {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    .casino-providers-head .review-kicker {
        order: 1;
    }

    .casino-providers-head h2 {
        order: 2;
    }

    .casino-providers-head p {
        order: 3;
        font-size: 16px !important;
        line-height: 1.65 !important;
        max-width: 320px !important;
    }

    .casino-provider-cloud {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 22px !important;
        width: 100% !important;
    }

    .casino-provider-cloud span {
        text-align: center !important;
        white-space: nowrap !important;
    }

    /* Иконки и цифры в карточках строго по центру */
    .quick-card-icon,
    .activity-feature-icon,
    .casino-guide-steps article > span,
    .casino-category-title > span,
    .wins-place {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .activity-feature-card,
    .casino-guide-steps article,
    .casino-quick-cards article {
        text-align: center !important;
        align-items: center !important;
    }

    .activity-feature-card > div,
    .casino-guide-steps article > div,
    .casino-quick-cards article > div {
        text-align: center !important;
    }
}
/* ===== Casino simple hero FIX ===== */

.casino-hero-simple {
    margin-bottom: 34px;
}

.casino-hero-simple__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 30px;
    background:
            radial-gradient(circle at left top, rgba(0, 255, 170, 0.08), transparent 34%),
            linear-gradient(180deg, #08111b 0%, #050b14 100%);
    border: 1px solid rgba(84, 114, 140, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.casino-hero-simple .hero-top-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(6, 255, 172, 0.08);
    border: 1px solid rgba(6, 255, 172, 0.22);
    color: #15ffb2;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 auto 18px;
}

.casino-hero-simple h1 {
    max-width: 920px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #f7fbff;
}

.casino-hero-simple__desc {
    max-width: 780px;
    margin: 0 auto 26px;
    font-size: 19px;
    line-height: 1.6;
    color: #d9e7f2;
}

.casino-hero-simple__image {
    width: 100%;
    max-width: 850px; /* размер фото */
    margin: 0 auto 24px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #07101a;
}

.casino-hero-simple__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain; /* не обрезает фото */
    object-position: center;
}

.casino-hero-simple__actions {
    display: flex;
    align-items: center;
    justify-content: center; /* кнопки по центру */
    gap: 14px;
    flex-wrap: wrap;
}

.casino-hero-simple__actions .btn {
    min-width: 190px;
    justify-content: center;
}
@media (max-width: 767px) {
    .casino-hero-simple {
        margin-bottom: 24px;
    }

    .casino-hero-simple__inner {
        padding: 20px;
        border-radius: 24px;
    }

    .casino-hero-simple .hero-top-label {
        width: 100%;
        max-width: 280px;
        min-height: 38px;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .casino-hero-simple h1 {
        font-size: 32px;
        line-height: 1.03;
        margin-bottom: 14px;
    }

    .casino-hero-simple__desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .casino-hero-simple__image {
        max-width: 100%;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .casino-hero-simple__image img {
        max-height: none;
        object-fit: contain;
    }

    .casino-hero-simple__actions {
        flex-direction: column;
        gap: 10px;
    }

    .casino-hero-simple__actions .btn {
        width: 100%;
        min-width: 0;
    }
}
/* =========================
   BetOnRed Bonus Page
   ========================= */

.bonus-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Hero */
.bonus-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    background:
            radial-gradient(circle at 15% 0%, rgba(242, 58, 73, 0.28), transparent 34%),
            radial-gradient(circle at 90% 15%, rgba(39, 255, 146, 0.12), transparent 34%),
            linear-gradient(145deg, rgba(18, 24, 35, 0.96), rgba(7, 11, 18, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.bonus-hero__content {
    max-width: 720px;
}

.bonus-hero h1 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #fff;
}

.bonus-hero p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.72;
}

.bonus-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.bonus-hero__image {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.bonus-hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Main offer */
.bonus-main-offer {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
            linear-gradient(135deg, rgba(242, 58, 73, 0.18), rgba(39, 255, 146, 0.08)),
            rgba(13, 18, 28, 0.94);
}

.bonus-main-offer__label {
    display: inline-flex;
    padding: 8px 13px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #07120d;
    background: #30f28d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bonus-main-offer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(145px, 0.55fr));
    gap: 16px;
    align-items: stretch;
}

.bonus-main-offer__grid > div:first-child {
    padding-right: 12px;
}

.bonus-main-offer__grid span {
    display: block;
    color: #30f28d;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bonus-main-offer h2 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.bonus-main-offer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.bonus-main-offer__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-main-offer__box strong {
    display: block;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.bonus-main-offer__box span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
}

/* Steps */
.bonus-steps-panel,
.bonus-cards-section,
.bonus-race-section,
.bonus-rules-section,
.bonus-code-panel,
.bonus-account-section,
.bonus-final-cta {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(13, 18, 28, 0.92);
}

.bonus-steps-head,
.bonus-section-head {
    max-width: 820px;
    margin-bottom: 22px;
}

.bonus-steps-head h2,
.bonus-section-head h2,
.bonus-rules-main h2,
.bonus-code-panel h2,
.bonus-final-cta h2,
.bonus-wheel-copy h2 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bonus-steps-head p,
.bonus-section-head p,
.bonus-rules-main p,
.bonus-code-panel p,
.bonus-final-cta p,
.bonus-wheel-copy p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.bonus-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bonus-steps article {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-steps article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(48, 242, 141, 0.13);
    color: #30f28d;
    font-weight: 900;
}

.bonus-steps h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

.bonus-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.62;
}

/* Bonus cards */
.bonus-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    padding: 24px;
    border-radius: 26px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-card-featured {
    background:
            radial-gradient(circle at 15% 0%, rgba(48, 242, 141, 0.18), transparent 38%),
            linear-gradient(180deg, rgba(242, 58, 73, 0.15), rgba(255, 255, 255, 0.04));
}

.bonus-card > span {
    display: inline-flex;
    padding: 7px 11px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(48, 242, 141, 0.13);
    color: #30f28d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bonus-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.bonus-card strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bonus-card p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.62;
}

.bonus-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bonus-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.45;
}

.bonus-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #30f28d;
}

/* Wheel */
.bonus-wheel-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
            radial-gradient(circle at 80% 15%, rgba(242, 58, 73, 0.20), transparent 36%),
            rgba(13, 18, 28, 0.92);
}

.bonus-wheel-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.bonus-wheel-list div {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-wheel-list strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.bonus-wheel-list span {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.5;
}

.bonus-wheel-image {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-wheel-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Race */
.bonus-race-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bonus-race-grid article {
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.bonus-race-grid article > span {
    color: #30f28d;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-race-grid h3 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.bonus-race-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.66;
}

.bonus-race-grid ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

/* Promo code panel */
.bonus-code-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 24px;
    align-items: start;
}

.bonus-code-steps {
    display: grid;
    gap: 12px;
}

.bonus-code-steps article {
    padding: 18px;
    border-radius: 20px;
    background: rgba(48, 242, 141, 0.08);
    border: 1px solid rgba(48, 242, 141, 0.16);
}

.bonus-code-steps span {
    display: block;
    margin-bottom: 8px;
    color: #30f28d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-code-steps strong {
    color: #fff;
    line-height: 1.45;
}

/* Rules */
.bonus-rules-main {
    max-width: 800px;
    margin-bottom: 22px;
}

.bonus-rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bonus-rules-grid article {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-rules-grid article > span {
    display: block;
    margin-bottom: 12px;
    color: #30f28d;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.bonus-rules-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

.bonus-rules-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.58;
}

/* Account cards */
.bonus-account-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-account-section article {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.bonus-account-section article > span {
    color: #30f28d;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-account-section h2 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.bonus-account-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.66;
}

/* Final CTA */
.bonus-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
            radial-gradient(circle at 10% 10%, rgba(48, 242, 141, 0.16), transparent 36%),
            linear-gradient(135deg, rgba(242, 58, 73, 0.13), rgba(13, 18, 28, 0.92));
}

.bonus-final-cta > div {
    max-width: 760px;
}

.bonus-final-cta p {
    margin: 0;
}

/* FAQ spacing */
.bonus-faq {
    margin-top: 0;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 980px) {
    .bonus-hero,
    .bonus-wheel-section,
    .bonus-code-panel {
        grid-template-columns: 1fr;
    }

    .bonus-main-offer__grid {
        grid-template-columns: 1fr;
    }

    .bonus-steps,
    .bonus-card-grid,
    .bonus-rules-grid,
    .bonus-account-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-race-grid {
        grid-template-columns: 1fr;
    }

    .bonus-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .bonus-page {
        gap: 18px;
    }

    .bonus-hero,
    .bonus-main-offer,
    .bonus-steps-panel,
    .bonus-cards-section,
    .bonus-wheel-section,
    .bonus-race-section,
    .bonus-code-panel,
    .bonus-rules-section,
    .bonus-account-section,
    .bonus-final-cta {
        padding: 20px;
        border-radius: 22px;
    }

    .bonus-hero__content,
    .bonus-steps-head,
    .bonus-section-head,
    .bonus-rules-main,
    .bonus-code-panel > div:first-child,
    .bonus-final-cta > div {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .bonus-hero h1 {
        font-size: 34px;
        line-height: 1.03;
    }

    .bonus-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .bonus-hero__actions,
    .bonus-final-cta {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .bonus-hero__actions .btn,
    .bonus-final-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .bonus-steps,
    .bonus-card-grid,
    .bonus-rules-grid,
    .bonus-account-section {
        grid-template-columns: 1fr;
    }

    .bonus-main-offer h2,
    .bonus-steps-head h2,
    .bonus-section-head h2,
    .bonus-rules-main h2,
    .bonus-code-panel h2,
    .bonus-final-cta h2,
    .bonus-wheel-copy h2 {
        font-size: 28px;
        line-height: 1.12;
        text-align: center;
    }

    .bonus-main-offer__grid > div:first-child {
        padding-right: 0;
        text-align: center;
    }

    .bonus-main-offer__box {
        min-height: auto;
        padding: 20px 16px;
    }

    .bonus-main-offer__box strong {
        font-size: 36px;
    }

    .bonus-steps article,
    .bonus-rules-grid article,
    .bonus-account-section article {
        text-align: center;
    }

    .bonus-card {
        text-align: center;
    }

    .bonus-card li {
        text-align: left;
    }

    .bonus-wheel-copy {
        text-align: center;
    }

    .bonus-wheel-list div {
        text-align: center;
    }

    .bonus-code-steps article {
        text-align: center;
    }

    .bonus-race-grid article {
        text-align: center;
    }

    .bonus-race-grid ul {
        text-align: left;
    }

    .bonus-hero__image,
    .bonus-wheel-image {
        border-radius: 18px;
    }
}

/* Promo Code page */
.promo-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.promo-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 28px;
    background:
            radial-gradient(circle at 15% 10%, rgba(35, 255, 142, 0.16), transparent 34%),
            radial-gradient(circle at 90% 20%, rgba(255, 46, 91, 0.18), transparent 38%),
            linear-gradient(135deg, rgba(16, 24, 38, 0.96), rgba(8, 12, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.promo-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.promo-hero__text h1 {
    margin: 12px 0 16px;
    max-width: 850px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #fff;
}

.promo-hero__text p {
    max-width: 720px;
    margin: 0;
    color: rgba(232, 241, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.promo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.promo-hero__card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 26px;
    background:
            linear-gradient(160deg, rgba(24, 255, 137, 0.18), rgba(255, 46, 91, 0.18)),
            linear-gradient(145deg, #151d2e, #070a11);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.promo-hero__card::before {
    content: "BONUS";
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    font-size: clamp(54px, 8vw, 96px);
    font-weight: 950;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.055);
    white-space: nowrap;
}

.promo-hero__card::after {
    content: "%";
    position: absolute;
    right: 24px;
    top: 24px;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #16f281;
    color: #07100b;
    font-size: 38px;
    font-weight: 950;
    box-shadow: 0 14px 36px rgba(22, 242, 129, 0.25);
}

.promo-hero__card span {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #9fffc4;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-hero__card strong {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: #fff;
    font-size: clamp(52px, 8vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.promo-hero__card p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(232, 241, 255, 0.76);
    line-height: 1.65;
}

.promo-intro-panel,
.promo-path-section,
.promo-types-section,
.promo-errors-section,
.promo-rules-table-section,
.promo-bonus-link-section,
.promo-safety-section,
.promo-final-cta {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 17, 28, 0.86);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.promo-intro-panel {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 24px;
    padding: 28px;
}

.promo-intro-panel h2,
.promo-section-head h2,
.promo-check-card h2,
.promo-rules-copy h2,
.promo-bonus-link-section h2,
.promo-safety-section h2,
.promo-final-cta h2 {
    margin: 8px 0 0;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.promo-intro-panel p,
.promo-section-head p,
.promo-check-card p,
.promo-bonus-link-section p,
.promo-safety-section p,
.promo-final-cta p,
.promo-rules-copy p {
    margin: 0;
    color: rgba(232, 241, 255, 0.74);
    line-height: 1.75;
}

.promo-path-section,
.promo-types-section,
.promo-errors-section {
    padding: 28px;
}

.promo-section-head {
    max-width: 900px;
    margin-bottom: 22px;
}

.promo-section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
}

.promo-section-head p {
    margin-top: 12px;
}

.promo-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.promo-path-grid article,
.promo-types-grid article,
.promo-errors-grid article,
.promo-safety-section article {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.promo-path-grid article > span,
.promo-errors-grid article > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(22, 242, 129, 0.12);
    color: #16f281;
    font-weight: 950;
}

.promo-path-grid h3,
.promo-types-grid h3,
.promo-errors-grid h3,
.promo-safety-section h2 {
    margin: 0 0 10px;
    color: #fff;
}

.promo-path-grid p,
.promo-types-grid p,
.promo-errors-grid p,
.promo-safety-section p {
    margin: 0;
    color: rgba(232, 241, 255, 0.72);
    line-height: 1.65;
}

.promo-check-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.promo-check-card {
    padding: 28px;
    border-radius: 26px;
    background:
            radial-gradient(circle at 15% 15%, rgba(22, 242, 129, 0.14), transparent 38%),
            rgba(11, 17, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-check-card p {
    margin-top: 14px;
}

.promo-mini-rules {
    display: grid;
    gap: 14px;
}

.promo-mini-rules article {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.promo-mini-rules strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
}

.promo-mini-rules span {
    color: rgba(232, 241, 255, 0.72);
    line-height: 1.55;
}

.promo-types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.promo-type-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 28px;
}

.promo-rules-table-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    padding: 28px;
}

.promo-rules-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-rules-copy p {
    margin-top: 12px;
}

.promo-rules-list {
    display: grid;
    gap: 10px;
}

.promo-rules-list div {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.promo-rules-list span {
    color: #9fffc4;
    font-weight: 900;
}

.promo-rules-list strong {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
}

.promo-errors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.promo-bonus-link-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: center;
    padding: 28px;
}

.promo-bonus-link-section p {
    margin-top: 12px;
}

.promo-bonus-box {
    padding: 24px;
    border-radius: 24px;
    background:
            linear-gradient(145deg, rgba(22, 242, 129, 0.18), rgba(255, 46, 91, 0.12)),
            rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.promo-bonus-box strong {
    display: block;
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.promo-bonus-box p {
    margin: 0;
}

.promo-safety-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 28px;
}

.promo-safety-section article > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(22, 242, 129, 0.10);
    color: #9fffc4;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.promo-final-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background:
            radial-gradient(circle at 12% 20%, rgba(22, 242, 129, 0.13), transparent 35%),
            linear-gradient(135deg, rgba(16, 24, 38, 0.95), rgba(8, 12, 20, 0.98));
}

.promo-final-cta > div {
    max-width: 760px;
}

.promo-final-cta p {
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .promo-hero,
    .promo-intro-panel,
    .promo-check-section,
    .promo-rules-table-section,
    .promo-bonus-link-section {
        grid-template-columns: 1fr;
    }

    .promo-path-grid,
    .promo-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-errors-grid,
    .promo-safety-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-bonus-link-section {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .promo-page {
        gap: 20px;
    }

    .promo-hero,
    .promo-intro-panel,
    .promo-path-section,
    .promo-types-section,
    .promo-errors-section,
    .promo-rules-table-section,
    .promo-bonus-link-section,
    .promo-safety-section,
    .promo-final-cta {
        padding: 20px;
        border-radius: 22px;
    }

    .promo-hero__text,
    .promo-intro-panel,
    .promo-section-head,
    .promo-check-card,
    .promo-rules-copy,
    .promo-bonus-link-section,
    .promo-final-cta {
        text-align: center;
    }

    .promo-hero__text h1 {
        font-size: 34px;
        line-height: 1.02;
    }

    .promo-hero__text p,
    .promo-intro-panel p,
    .promo-section-head p,
    .promo-check-card p,
    .promo-bonus-link-section p,
    .promo-final-cta p {
        font-size: 15px;
        line-height: 1.65;
    }

    .promo-hero__actions,
    .promo-final-cta {
        justify-content: center;
    }

    .promo-hero__actions .btn,
    .promo-final-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .promo-hero__card {
        min-height: 260px;
        text-align: center;
        align-items: center;
        padding: 22px;
    }

    .promo-hero__card::after {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .promo-path-grid,
    .promo-types-grid,
    .promo-errors-grid,
    .promo-safety-section {
        grid-template-columns: 1fr;
    }

    .promo-path-grid article,
    .promo-types-grid article,
    .promo-errors-grid article,
    .promo-safety-section article {
        text-align: center;
    }

    .promo-path-grid article > span,
    .promo-errors-grid article > span,
    .promo-type-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .promo-mini-rules article {
        text-align: center;
    }

    .promo-rules-list div {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
    }

    .promo-final-cta {
        flex-direction: column;
    }
}
.promo-hero__offer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 28px;
    border-radius: 26px;
    background:
            radial-gradient(circle at 85% 12%, rgba(22, 242, 129, 0.18), transparent 34%),
            linear-gradient(145deg, rgba(18, 28, 44, 0.96), rgba(8, 12, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.promo-hero__offer-top span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(22, 242, 129, 0.12);
    border: 1px solid rgba(22, 242, 129, 0.26);
    color: #16f281;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-hero__offer-top strong {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.promo-hero__offer-top p {
    margin: 14px 0 0;
    max-width: 440px;
    color: rgba(232, 241, 255, 0.76);
    line-height: 1.65;
}

.promo-hero__offer-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.promo-hero__offer-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.promo-hero__offer-list b {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(22, 242, 129, 0.14);
    color: #16f281;
    font-size: 14px;
    font-weight: 950;
}

.promo-hero__offer-list span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.45;
}

.promo-hero__offer-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 22px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(22, 242, 129, 0.10);
    border: 1px solid rgba(22, 242, 129, 0.28);
    color: #16f281;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.promo-hero__offer-link:hover {
    transform: translateY(-2px);
    background: rgba(22, 242, 129, 0.16);
}
@media (max-width: 640px) {
    .promo-hero__offer {
        min-height: auto;
        padding: 22px;
        text-align: center;
        align-items: center;
    }

    .promo-hero__offer-top span,
    .promo-hero__offer-link {
        margin-left: auto;
        margin-right: auto;
    }

    .promo-hero__offer-top strong {
        font-size: 32px;
    }

    .promo-hero__offer-top p {
        font-size: 15px;
    }

    .promo-hero__offer-list {
        width: 100%;
    }

    .promo-hero__offer-list div {
        flex-direction: column;
        text-align: center;
    }

    .promo-hero__offer-link {
        width: 100%;
    }
}

/* LOGIN PAGE */
.login-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.login-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    gap: 34px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background:
            radial-gradient(circle at 12% 10%, rgba(0, 255, 162, .12), transparent 34%),
            linear-gradient(135deg, rgba(7, 18, 28, .96), rgba(11, 13, 20, .98));
    overflow: hidden;
}

.login-hero__content h1 {
    margin: 18px 0 18px;
    max-width: 820px;
    color: #fff;
    font-size: clamp(38px, 5.4vw, 76px);
    line-height: .95;
    letter-spacing: -2.8px;
}

.login-hero__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.75;
}

.login-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.login-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-screen-card {
    width: min(100%, 390px);
    padding: 18px;
    border-radius: 30px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
            rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.login-screen-card img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.login-preview-panel,
.login-steps-section,
.login-help-section,
.login-mobile-section,
.login-account-section,
.login-final-cta {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background:
            radial-gradient(circle at 0 0, rgba(0, 255, 162, .08), transparent 32%),
            rgba(12, 17, 26, .92);
}

.login-preview-panel {
    padding: 34px;
}

.login-preview-head,
.login-section-head {
    max-width: 880px;
    margin-bottom: 24px;
}

.login-preview-head h2,
.login-section-head h2,
.login-help-card h2,
.login-mobile-copy h2,
.login-account-section h2,
.login-final-cta h2 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3.1vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.login-preview-head p,
.login-section-head p,
.login-help-card p,
.login-mobile-copy p,
.login-account-section p,
.login-final-cta p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.75;
}

.login-wide-shot {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.11);
    background: #0c0f15;
}

.login-wide-shot img {
    width: 100%;
    display: block;
}

.login-steps-section {
    padding: 34px;
}

.login-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.login-steps-grid article,
.login-help-list article,
.login-mobile-points div,
.login-account-section article {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
}

.login-steps-grid article > span,
.login-mobile-points div > span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(0, 255, 162, .14);
    color: #00ffa2;
    font-weight: 900;
}

.login-steps-grid h3,
.login-help-list strong,
.login-mobile-points strong,
.login-account-section h2 {
    display: block;
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
}

.login-steps-grid p,
.login-help-list span,
.login-mobile-points p {
    margin: 0;
    color: rgba(255,255,255,.74);
    line-height: 1.65;
}

.login-help-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
    gap: 22px;
    padding: 34px;
}

.login-help-card {
    padding: 28px;
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(0, 255, 162, .1), rgba(255, 77, 109, .08)),
            rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.11);
}

.login-help-card p + p {
    margin-top: 14px;
}

.login-help-list {
    display: grid;
    gap: 14px;
}

.login-mobile-section {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 24px;
    padding: 34px;
}

.login-mobile-points {
    display: grid;
    gap: 14px;
}

.login-account-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 34px;
}

.login-account-section article > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 255, 162, .12);
    color: #00ffa2;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.login-account-section h2 {
    font-size: 24px;
}

.login-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
}

.login-final-cta p {
    max-width: 760px;
}

/* LOGIN MOBILE */
@media (max-width: 980px) {
    .login-hero,
    .login-help-section,
    .login-mobile-section,
    .login-account-section {
        grid-template-columns: 1fr;
    }

    .login-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .login-hero {
        padding: 30px;
    }

    .login-hero__content,
    .login-preview-head,
    .login-section-head,
    .login-help-card,
    .login-mobile-copy,
    .login-final-cta {
        text-align: center;
    }

    .login-hero__actions,
    .login-final-cta {
        justify-content: center;
    }

    .login-final-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .login-page {
        gap: 20px;
    }

    .login-hero,
    .login-preview-panel,
    .login-steps-section,
    .login-help-section,
    .login-mobile-section,
    .login-account-section,
    .login-final-cta {
        padding: 22px;
        border-radius: 22px;
    }

    .login-hero__content h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .login-hero__content p,
    .login-preview-head p,
    .login-section-head p,
    .login-help-card p,
    .login-mobile-copy p,
    .login-account-section p,
    .login-final-cta p {
        font-size: 15px;
    }

    .login-steps-grid {
        grid-template-columns: 1fr;
    }

    .login-steps-grid article,
    .login-help-list article,
    .login-mobile-points div,
    .login-account-section article {
        text-align: center;
    }

    .login-steps-grid article > span,
    .login-mobile-points div > span {
        margin-left: auto;
        margin-right: auto;
    }

    .login-screen-card {
        max-width: 320px;
        padding: 12px;
        border-radius: 22px;
    }

    .login-screen-card img {
        border-radius: 16px;
    }

    .login-wide-shot {
        border-radius: 18px;
    }

    .login-wide-shot img {
        min-height: 260px;
        object-fit: cover;
        object-position: center top;
    }

    .login-hero__actions,
    .login-final-cta .btn {
        width: 100%;
    }

    .login-hero__actions .btn,
    .login-final-cta .btn {
        justify-content: center;
    }
}
.login-help-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background:
            radial-gradient(circle at 0 0, rgba(0, 255, 162, .08), transparent 32%),
            rgba(12, 17, 26, .92);
}

.login-help-card {
    padding: 28px;
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(0, 255, 162, .1), rgba(255, 77, 109, .08)),
            rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.11);
}

.login-help-card p + p {
    margin-top: 14px;
}

.login-help-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.login-help-list article {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}

.login-help-list strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

.login-help-list span {
    display: block;
    color: rgba(255,255,255,.74);
    line-height: 1.55;
    font-size: 14px;
}

.login-recovery-shot {
    max-width: 395px;
    margin-left: auto;
    padding: 14px;
    border-radius: 28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
            rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.login-recovery-shot img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

@media (max-width: 980px) {
    .login-help-section {
        grid-template-columns: 1fr;
    }

    .login-help-card {
        text-align: center;
    }

    .login-recovery-shot {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .login-help-section {
        padding: 22px;
        border-radius: 22px;
    }

    .login-help-card {
        padding: 22px;
        border-radius: 20px;
    }

    .login-help-list {
        grid-template-columns: 1fr;
    }

    .login-help-list article {
        text-align: center;
    }

    .login-recovery-shot {
        max-width: 340px;
        padding: 10px;
        border-radius: 22px;
    }

    .login-recovery-shot img {
        border-radius: 16px;
    }
}
/* Global mobile overflow fix */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-shell,
.main-area,
.content,
footer,
section,
div {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-shell,
    .main-area,
    .content,
    .footer,
    .topbar,
    .sidebar-overlay,
    section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .content {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .bonus-hero,
    .promo-hero,
    .casino-hero-simple,
    .login-hero,
    .bonus-main-offer,
    .bonus-wheel-section,
    .bonus-race-section,
    .bonus-code-panel,
    .bonus-rules-section,
    .bonus-account-section,
    .bonus-final-cta,
    .promo-intro-panel,
    .promo-path-section,
    .promo-check-section,
    .promo-types-section,
    .promo-rules-table-section,
    .promo-errors-section,
    .promo-bonus-link-section,
    .promo-safety-section,
    .promo-final-cta,
    .login-help-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .bonus-card-grid,
    .bonus-steps,
    .bonus-race-grid,
    .bonus-rules-grid,
    .bonus-account-section,
    .promo-path-grid,
    .promo-types-grid,
    .promo-errors-grid,
    .promo-safety-section,
    .clean-game-grid,
    .activity-feature-grid,
    .casino-guide-steps,
    .casino-provider-cloud,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .btn,
    .btn-green,
    .btn-dark,
    .internal-link,
    .promo-hero__offer-link,
    .sidebar-cta-btn {
        max-width: 100%;
        white-space: normal;
    }

    .bonus-hero__image,
    .bonus-wheel-image,
    .casino-hero-simple__image,
    .promo-hero__offer,
    .login-recovery-shot {
        max-width: 100%;
    }

    .bonus-hero__image img,
    .bonus-wheel-image img,
    .casino-hero-simple__image img,
    .login-recovery-shot img {
        max-width: 100%;
        width: 100%;
    }

    .promo-rules-list,
    .bonus-rules-table,
    .wins-clean-grid,
    .bonus-wheel-list,
    .promo-mini-rules,
    .bonus-code-steps,
    .login-help-list {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ================================
   BetOnRed App Page
================================ */

.app-page {
    overflow-x: hidden;
}

.app-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 38px;
    align-items: center;
    padding: 42px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 12% 8%, rgba(0, 255, 164, .16), transparent 34%),
            radial-gradient(circle at 90% 18%, rgba(255, 45, 95, .13), transparent 36%),
            linear-gradient(145deg, rgba(8, 20, 28, .98), rgba(4, 8, 14, .98));
    overflow: hidden;
}

.app-hero__content {
    max-width: 760px;
}

.app-hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: .96;
    letter-spacing: -0.055em;
    color: #fff;
}

.app-hero p {
    max-width: 690px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
}

.app-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-hero__image {
    position: relative;
    max-width: 390px;
    margin-left: auto;
    padding: 10px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
    box-shadow: 0 28px 70px rgba(0,0,0,.45);
}

.app-hero__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 660px;
    object-fit: contain;
    border-radius: 26px;
}

.app-download-section {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 0% 0%, rgba(0,255,164,.11), transparent 34%),
            linear-gradient(145deg, rgba(17, 27, 39, .95), rgba(8, 13, 21, .97));
}

.app-download__image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.24);
    box-shadow: 0 20px 50px rgba(0,0,0,.32);
}

.app-download__image img {
    display: block;
    width: 100%;
    height: auto;
}

.app-download__content h2,
.app-section-head h2,
.app-how-main h2,
.app-security-section h2,
.app-final-cta h2 {
    margin: 14px 0;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
}

.app-download__content p,
.app-section-head p,
.app-how-main p,
.app-security-section p,
.app-final-cta p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.78);
}

.app-download__steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.app-download__steps article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.045);
}

.app-download__steps strong {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #00ffa3;
    background: rgba(0,255,163,.12);
    font-size: 13px;
}

.app-download__steps span {
    color: rgba(255,255,255,.84);
    line-height: 1.45;
}

.app-store-section {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 90% 0%, rgba(0,255,164,.09), transparent 32%),
            linear-gradient(145deg, rgba(15, 25, 36, .94), rgba(7, 12, 20, .97));
}

.app-section-head {
    max-width: 880px;
}

.app-store-shot {
    margin-top: 24px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #fff;
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.app-store-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.app-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.app-info-grid article {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 90% 0%, rgba(0,255,164,.12), transparent 38%),
            linear-gradient(145deg, rgba(18, 28, 40, .95), rgba(8, 13, 21, .97));
}

.app-info-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(0,255,163,.12);
    border: 1px solid rgba(0,255,163,.22);
    font-size: 22px;
}

.app-info-grid article > span,
.app-features-grid strong,
.app-security-list span {
    display: inline-block;
    margin-bottom: 10px;
    color: #00ffa3;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.app-info-grid h2 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.15;
    color: #fff;
}

.app-info-grid p {
    margin: 0;
    color: rgba(255,255,255,.76);
    line-height: 1.65;
}

.app-how-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}

.app-how-main,
.app-how-steps article {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(145deg, rgba(17, 27, 39, .94), rgba(8, 13, 21, .97));
}

.app-how-main {
    padding: 32px;
    position: sticky;
    top: 20px;
}

.app-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.app-how-steps article {
    padding: 24px;
}

.app-how-steps article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #00ffa3;
    background: rgba(0,255,163,.11);
    font-weight: 900;
}

.app-how-steps h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #fff;
}

.app-how-steps p {
    margin: 0;
    color: rgba(255,255,255,.76);
    line-height: 1.65;
}

.app-features-section {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 12% 0%, rgba(0,255,164,.1), transparent 32%),
            linear-gradient(145deg, rgba(15, 25, 36, .94), rgba(7, 12, 20, .97));
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.app-features-grid article {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.045);
}

.app-features-grid p {
    margin: 0;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

.app-security-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 85% 10%, rgba(0,255,164,.12), transparent 34%),
            linear-gradient(145deg, rgba(17, 27, 39, .94), rgba(8, 13, 21, .97));
}

.app-security-list {
    display: grid;
    gap: 14px;
}

.app-security-list article {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.045);
}

.app-security-list strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.app-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(0,255,163,.18);
    background:
            radial-gradient(circle at 8% 0%, rgba(0,255,164,.16), transparent 34%),
            linear-gradient(145deg, rgba(9, 30, 26, .96), rgba(7, 12, 20, .98));
}

.app-final-cta div {
    max-width: 820px;
}

.app-faq {
    margin-top: 28px;
}

/* ================================
   App Page Mobile
================================ */

@media (max-width: 1100px) {
    .app-hero {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .app-download-section,
    .app-security-section {
        grid-template-columns: 1fr;
    }

    .app-download__image {
        max-width: 380px;
    }

    .app-info-grid,
    .app-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-how-section {
        grid-template-columns: 1fr;
    }

    .app-how-main {
        position: static;
    }
}

@media (max-width: 768px) {
    .app-hero {
        grid-template-columns: 1fr;
        padding: 28px 18px;
        text-align: center;
        border-radius: 26px;
    }

    .app-hero__content {
        max-width: none;
    }

    .app-hero h1 {
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -0.045em;
    }

    .app-hero p {
        max-width: none;
        font-size: 16px;
    }

    .app-hero__actions {
        justify-content: center;
    }

    .app-hero__image {
        max-width: 300px;
        margin: 4px auto 0;
    }

    .app-download-section,
    .app-store-section,
    .app-features-section,
    .app-security-section,
    .app-final-cta {
        padding: 24px 16px;
        border-radius: 24px;
        text-align: center;
    }

    .app-download__image {
        max-width: 360px;
        margin: 0 auto;
    }

    .app-download__content h2,
    .app-section-head h2,
    .app-how-main h2,
    .app-security-section h2,
    .app-final-cta h2 {
        font-size: 32px;
    }

    .app-download__content p,
    .app-section-head p,
    .app-how-main p,
    .app-security-section p,
    .app-final-cta p {
        font-size: 15.5px;
    }

    .app-download__steps article {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .app-store-shot {
        border-radius: 18px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .app-store-shot img {
        min-width: 760px;
    }

    .app-info-grid,
    .app-features-grid,
    .app-how-steps {
        grid-template-columns: 1fr;
    }

    .app-info-grid article,
    .app-how-main,
    .app-how-steps article,
    .app-features-grid article,
    .app-security-list article {
        text-align: center;
    }

    .app-info-icon,
    .app-how-steps article > span {
        margin-left: auto;
        margin-right: auto;
    }

    .app-final-cta {
        flex-direction: column;
        justify-content: center;
    }

    .app-final-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .app-hero h1 {
        font-size: 34px;
    }

    .app-hero__image {
        max-width: 270px;
    }

    .app-download-section,
    .app-store-section,
    .app-features-section,
    .app-security-section,
    .app-final-cta {
        padding-left: 14px;
        padding-right: 14px;
    }

    .app-store-shot img {
        min-width: 680px;
    }
}
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .sidebar,
    .sidebar-overlay {
        max-width: none;
    }

    img {
        max-width: 100%;
    }

    a,
    p,
    h1,
    h2,
    h3,
    span,
    strong,
    li {
        overflow-wrap: break-word;
    }
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-shell,
.main-area,
.content {
    max-width: 100%;
    overflow-x: clip;
}

img,
video,
iframe {
    max-width: 100%;
}

.table-wrap,
.scroll-x,
.app-store-shot {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* =========================
   ESPAÑA PAGE NEW DESIGN
========================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.site-shell,
.main-area,
.content,
.espana-page {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.espana-page *,
.espana-page *::before,
.espana-page *::after {
    box-sizing: border-box;
}

.espana-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.espana-hero-new {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 26px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 10% 0%, rgba(19, 255, 154, .16), transparent 38%),
            linear-gradient(135deg, rgba(9, 19, 29, .98), rgba(3, 7, 13, .98));
    overflow: hidden;
}

.espana-hero-new__text {
    min-width: 0;
}

.espana-hero-new h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .96;
    letter-spacing: -0.055em;
}

.espana-hero-new p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.65;
}

.espana-hero-new__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.espana-hero-new__image {
    min-width: 0;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: #10151f;
}

.espana-hero-new__image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: center;
}

.espana-overview-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.espana-overview-strip article {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
}

.espana-overview-strip strong {
    display: block;
    margin-bottom: 7px;
    color: #16f39a;
    font-size: 24px;
    line-height: 1;
}

.espana-overview-strip span {
    color: rgba(255,255,255,.74);
    font-size: 14px;
    line-height: 1.45;
}

.espana-promo-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(30, 32, 40, .96), rgba(17, 20, 29, .98));
    overflow: hidden;
}

.espana-promo-banner__copy {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.espana-promo-banner h2,
.espana-layout-mix h2,
.espana-mobile-feature h2,
.espana-checklist-head h2,
.espana-support-section h2,
.espana-responsible-box h2,
.espana-final-new h2 {
    margin: 10px 0 14px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.espana-promo-banner p,
.espana-layout-mix p,
.espana-mobile-feature p,
.espana-checklist-grid p,
.espana-support-section p,
.espana-responsible-box p,
.espana-final-new p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.68;
}

.espana-promo-banner__image {
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
}

.espana-promo-banner__image img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
}

.espana-layout-mix {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
    margin-top: 28px;
}

.espana-big-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(22, 243, 154, .18);
    background:
            radial-gradient(circle at 10% 0%, rgba(22, 243, 154, .16), transparent 38%),
            linear-gradient(180deg, rgba(17, 28, 38, .98), rgba(8, 13, 22, .98));
}

.espana-small-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.espana-small-cards article {
    min-width: 0;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
}

.espana-small-cards strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 22px;
    line-height: 1.1;
}

.espana-small-cards span {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.55;
}

.espana-mobile-feature {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 100% 0%, rgba(255, 80, 120, .12), transparent 35%),
            linear-gradient(180deg, rgba(18, 27, 39, .96), rgba(8, 13, 22, .98));
}

.espana-mobile-feature__image {
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: #111722;
}

.espana-mobile-feature__image img {
    width: 100%;
    object-fit: cover;
}

.espana-mobile-feature__content {
    min-width: 0;
}

.espana-mobile-feature__list {
    display: grid;
    gap: 12px;
    margin: 20px 0 22px;
}

.espana-mobile-feature__list div {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.espana-mobile-feature__list strong {
    display: block;
    margin-bottom: 5px;
    color: #16f39a;
    font-size: 16px;
}

.espana-mobile-feature__list span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.45;
}

.espana-checklist-section {
    margin-top: 28px;
}

.espana-checklist-head {
    max-width: 780px;
    margin-bottom: 18px;
}

.espana-checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.espana-checklist-grid article {
    min-width: 0;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.espana-checklist-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(22, 243, 154, .13);
    color: #16f39a;
    font-weight: 900;
}

.espana-checklist-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    line-height: 1.15;
}

.espana-support-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(135deg, rgba(16, 24, 35, .96), rgba(8, 13, 22, .98));
}

.espana-support-links {
    display: grid;
    gap: 12px;
}

.espana-support-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
}

.espana-responsible-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background:
            radial-gradient(circle at 0% 0%, rgba(255, 208, 60, .11), transparent 32%),
            linear-gradient(180deg, rgba(23, 24, 30, .96), rgba(8, 13, 22, .98));
}

.espana-responsible-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.espana-responsible-links a {
    padding: 14px 18px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
}

.espana-final-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(22, 243, 154, .18);
    background:
            radial-gradient(circle at 90% 20%, rgba(22, 243, 154, .15), transparent 35%),
            linear-gradient(135deg, rgba(17, 28, 38, .98), rgba(5, 10, 18, .98));
}

.espana-final-new div {
    max-width: 780px;
}

.espana-faq {
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .espana-hero-new,
    .espana-promo-banner,
    .espana-layout-mix,
    .espana-mobile-feature,
    .espana-support-section,
    .espana-responsible-box {
        grid-template-columns: 1fr;
    }

    .espana-checklist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .espana-mobile-feature__image {
        max-width: 460px;
    }
}

@media (max-width: 760px) {
    .espana-hero-new,
    .espana-promo-banner,
    .espana-big-card,
    .espana-mobile-feature,
    .espana-support-section,
    .espana-responsible-box,
    .espana-final-new {
        padding: 20px;
        border-radius: 22px;
    }

    .espana-overview-strip,
    .espana-small-cards,
    .espana-checklist-grid {
        grid-template-columns: 1fr;
    }

    .espana-hero-new h1 {
        font-size: clamp(32px, 10vw, 48px);
        letter-spacing: -0.045em;
    }

    .espana-hero-new p,
    .espana-promo-banner p,
    .espana-layout-mix p,
    .espana-mobile-feature p,
    .espana-support-section p,
    .espana-responsible-box p,
    .espana-final-new p {
        font-size: 15px;
    }

    .espana-hero-new__actions,
    .espana-final-new {
        flex-direction: column;
        align-items: stretch;
    }

    .espana-hero-new__actions .btn,
    .espana-final-new .btn {
        width: 100%;
        justify-content: center;
    }

    .espana-hero-new__image img {
        min-height: 240px;
    }

    .espana-promo-banner__image img {
        max-height: 260px;
    }
}
/* =========================
   Sign Up Page V2
========================= */

.signup-page-v2 {
    overflow-x: hidden;
}

.signup-page-v2 img {
    max-width: 100%;
    display: block;
}

.signup-v2-hero {
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: stretch;
    padding: 18px;
    border-radius: 32px;
    background:
            radial-gradient(circle at 82% 12%, rgba(21,238,143,.18), transparent 28%),
            linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-hero__image {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,.1);
}

.signup-v2-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: top center;
}

.signup-v2-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-radius: 26px;
    background:
            linear-gradient(145deg, rgba(7,11,18,.96), rgba(24,12,22,.94));
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-hero__content h1 {
    margin: 16px 0 18px;
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
    line-height: .92;
    letter-spacing: -.06em;
}

.signup-v2-hero__content p {
    max-width: 680px;
    color: #b8c1d6;
    font-size: 17px;
    line-height: 1.75;
}

.signup-v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.signup-v2-choice {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 22px;
}

.signup-v2-choice__head {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-choice__head h2,
.signup-v2-bonus h2,
.signup-v2-cashback h2,
.signup-v2-loyalty h2,
.signup-v2-kyc h2,
.signup-v2-docs h2,
.signup-v2-responsible h2,
.signup-v2-aml h2,
.signup-v2-final h2 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(28px, 3.6vw, 50px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.signup-v2-choice__head p,
.signup-v2-bonus p,
.signup-v2-cashback p,
.signup-v2-loyalty p,
.signup-v2-kyc p,
.signup-v2-docs p,
.signup-v2-responsible p,
.signup-v2-aml p,
.signup-v2-final p {
    color: #b8c1d6;
    line-height: 1.75;
}

.signup-v2-choice__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.signup-v2-choice__cards article {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border-radius: 26px;
    background:
            radial-gradient(circle at 90% 10%, rgba(21,238,143,.12), transparent 28%),
            rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-choice__cards article span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21,238,143,.16);
    color: #16ef8f;
    font-weight: 900;
    margin-bottom: 18px;
}

.signup-v2-choice__cards strong {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.signup-v2-choice__cards p {
    color: #b8c1d6;
    line-height: 1.6;
}

.signup-v2-bonus {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: stretch;
    padding: 32px;
    border-radius: 30px;
    background:
            linear-gradient(135deg, rgba(21,238,143,.12), rgba(255,255,255,.04));
    border: 1px solid rgba(21,238,143,.14);
}

.signup-v2-bonus__numbers {
    display: grid;
    gap: 14px;
}

.signup-v2-bonus__numbers article {
    padding: 22px;
    border-radius: 22px;
    background: rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-bonus__numbers strong {
    display: block;
    color: #16ef8f;
    font-size: 28px;
    margin-bottom: 6px;
}

.signup-v2-bonus__numbers span {
    color: #dce5f4;
}

.signup-v2-cashback {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 24px;
    align-items: stretch;
}

.signup-v2-cashback__copy {
    padding: 32px;
    border-radius: 30px;
    background: #111620;
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-cashback__image {
    border-radius: 30px;
    overflow: hidden;
    background: #111620;
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-cashback__image img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
}

.signup-v2-cashback__list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.signup-v2-cashback__list div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-cashback__list strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.signup-v2-cashback__list span {
    color: #b8c1d6;
}

.signup-v2-loyalty {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(0, .9fr);
    gap: 24px;
    align-items: stretch;
}

.signup-v2-loyalty__image {
    border-radius: 30px;
    overflow: hidden;
    background: #111620;
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-loyalty__image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: top center;
}

.signup-v2-loyalty__content {
    padding: 32px;
    border-radius: 30px;
    background:
            radial-gradient(circle at 100% 0%, rgba(255,207,75,.16), transparent 34%),
            rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-ranks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.signup-v2-ranks article {
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-ranks strong {
    display: block;
    color: #ffd66b;
    margin-bottom: 6px;
}

.signup-v2-ranks span {
    color: #b8c1d6;
    line-height: 1.45;
}

.signup-v2-kyc {
    margin-top: 30px;
    padding: 32px;
    border-radius: 30px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-kyc__intro {
    max-width: 900px;
}

.signup-v2-kyc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.signup-v2-kyc__grid article {
    padding: 24px;
    border-radius: 24px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-kyc__grid span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(21,238,143,.14);
    color: #16ef8f;
    font-weight: 900;
    margin-bottom: 16px;
}

.signup-v2-kyc__grid h3 {
    color: #fff;
    margin-bottom: 10px;
}

.signup-v2-kyc__grid p {
    color: #b8c1d6;
    line-height: 1.6;
}

.signup-v2-docs {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    margin-top: 30px;
}

.signup-v2-docs__left,
.signup-v2-docs__right {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-docs__right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.signup-v2-docs__right div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-docs__right strong {
    display: block;
    color: #fff;
    margin-bottom: 7px;
}

.signup-v2-docs__right span {
    color: #b8c1d6;
    line-height: 1.5;
}

.signup-v2-responsible {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
    gap: 22px;
    padding: 32px;
    border-radius: 30px;
    background:
            radial-gradient(circle at 0% 100%, rgba(255,80,110,.13), transparent 30%),
            rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-responsible__tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.signup-v2-responsible__tiles article {
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-responsible__tiles strong {
    display: block;
    color: #fff;
    margin-bottom: 7px;
}

.signup-v2-responsible__tiles span {
    color: #b8c1d6;
    line-height: 1.45;
}

.signup-v2-aml {
    margin-top: 30px;
    padding: 32px;
    border-radius: 30px;
    background:
            linear-gradient(135deg, rgba(34,119,255,.12), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-aml__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.signup-v2-aml__items span {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.075);
    color: #dce5f4;
    border: 1px solid rgba(255,255,255,.08);
}

.signup-v2-final {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    background:
            radial-gradient(circle at 90% 20%, rgba(21,238,143,.14), transparent 28%),
            linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(21,238,143,.14);
}

.signup-v2-final > div {
    max-width: 820px;
}

@media (max-width: 1180px) {
    .signup-v2-hero,
    .signup-v2-choice,
    .signup-v2-cashback,
    .signup-v2-loyalty,
    .signup-v2-docs,
    .signup-v2-responsible {
        grid-template-columns: 1fr;
    }

    .signup-v2-bonus {
        grid-template-columns: 1fr;
    }

    .signup-v2-hero__image img,
    .signup-v2-cashback__image img,
    .signup-v2-loyalty__image img {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .signup-v2-hero,
    .signup-v2-bonus,
    .signup-v2-kyc,
    .signup-v2-responsible,
    .signup-v2-aml,
    .signup-v2-final {
        padding: 20px;
        border-radius: 24px;
    }

    .signup-v2-hero__content,
    .signup-v2-choice__head,
    .signup-v2-cashback__copy,
    .signup-v2-loyalty__content,
    .signup-v2-docs__left,
    .signup-v2-docs__right {
        padding: 22px;
        border-radius: 22px;
    }

    .signup-v2-choice__cards,
    .signup-v2-ranks,
    .signup-v2-kyc__grid,
    .signup-v2-docs__right,
    .signup-v2-responsible__tiles {
        grid-template-columns: 1fr;
    }

    .signup-v2-final {
        flex-direction: column;
        align-items: flex-start;
    }

    .signup-v2-hero__actions,
    .signup-v2-final .btn {
        width: 100%;
    }

    .signup-v2-hero__actions .btn,
    .signup-v2-final .btn {
        justify-content: center;
    }

    .signup-v2-hero__content h1 {
        font-size: 38px;
    }
}
/* FIX: Sign Up mobile layout */
@media (max-width: 760px) {
    .signup-v2-hero {
        display: flex;
        flex-direction: column;
    }

    .signup-v2-hero__content {
        order: 1;
        text-align: center;
        align-items: center;
    }

    .signup-v2-hero__image {
        order: 2;
        width: 100%;
    }

    .signup-v2-hero__actions {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .signup-v2-hero__actions .btn {
        width: auto;
        min-width: 190px;
        justify-content: center;
        text-align: center;
    }

    .signup-v2-hero__image img {
        min-height: auto;
        max-height: 520px;
        object-fit: contain;
        background: #fff;
    }

    .signup-v2-cashback {
        display: flex;
        flex-direction: column;
    }

    .signup-v2-cashback__copy {
        order: 1;
    }

    .signup-v2-cashback__image {
        order: 2;
    }

    .signup-v2-loyalty {
        display: flex;
        flex-direction: column;
    }

    .signup-v2-loyalty__content {
        order: 1;
    }

    .signup-v2-loyalty__image {
        order: 2;
    }

    .signup-v2-cashback__image img,
    .signup-v2-loyalty__image img {
        min-height: auto;
        max-height: 520px;
        object-fit: contain;
        background: #111620;
    }
}
