:root {
    --bg: #080d0b;
    --bg-soft: #0f1714;
    --panel: #141d19;
    --panel-2: #1a2420;
    --text: #f4f7f2;
    --muted: #aeb9b0;
    --line: #2b3831;
    --green: #33d17a;
    --green-dark: #149451;
    --red: #ff4d4d;
    --red-dark: #c92d2d;
    --gold: #f4c95d;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.rp-empty-games {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.14), transparent 34%),
        rgba(15, 23, 42, 0.72);
    color: #cbd5e1;
}

.rp-empty-games strong {
    display: block;
    color: #f8fafc;
    font-size: 18px;
    margin-bottom: 6px;
}

.rp-empty-games p {
    margin: 0;
    color: #94a3b8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 13, 11, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 10px 0;
}

.logo {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.logo-mark,
.author-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--gold));
    color: #07100b;
    font-weight: 900;
}

.menu-toggle {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    color: var(--text);
    padding: 9px 12px;
}

.primary-nav,
.header-cta {
    display: none;
}

.primary-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    padding: 8px 0;
}

.primary-nav a,
.site-footer nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 0;
}

.primary-nav a:hover,
.site-footer nav a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: var(--radius);
    color: #06100a;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(180deg, var(--green), var(--green-dark));
}

.btn-secondary {
    background: linear-gradient(180deg, #ff7070, var(--red-dark));
    color: #fff;
}

.btn-large {
    min-height: 50px;
    padding: 13px 20px;
}

.btn-small {
    min-height: 34px;
    padding: 6px 12px;
}

.hero,
.page-hero {
    padding: 42px 0 30px;
    background:
        radial-gradient(circle at 20% 10%, rgba(51, 209, 122, 0.16), transparent 30%),
        linear-gradient(180deg, #0d1512, var(--bg));
}

.hero-grid,
.content-grid {
    display: grid;
    gap: 20px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

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

.eyebrow,
.card-kicker {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.14;
}

h1 {
    max-width: 820px;
    font-size: clamp(38px, 9vw, 72px);
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 21px;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

.hero-copy {
    max-width: 700px;
    font-size: 18px;
}

.meta-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.meta-bar span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    padding: 6px 10px;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.verdict-card,
.card,
.panel,
.author-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    box-shadow: var(--shadow);
    padding: 20px;
}

.verdict-card {
    overflow: hidden;
}

.hero-art {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    height: 210px;
    margin: -20px -20px 18px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(51, 209, 122, 0.35);
    filter: saturate(1.25) contrast(1.08);
}

.section {
    padding: 42px 0;
}

.section.alt {
    background: var(--bg-soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.card-grid,
.game-grid {
    display: grid;
    gap: 16px;
}

.bonus-amount {
    color: var(--text);
    font-size: 24px;
    font-weight: 900;
}

.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    position: absolute;
    inset: auto -40px -70px auto;
    width: 160px;
    height: 160px;
    content: "";
    background: radial-gradient(circle, rgba(51, 209, 122, 0.45), rgba(255, 77, 77, 0.2) 45%, transparent 68%);
    pointer-events: none;
}

.bonus-card-art {
    display: block;
    height: 190px;
    margin: -20px -20px 18px;
    background: #14346f;
    border-bottom: 1px solid rgba(244, 201, 93, 0.25);
    filter: saturate(1.35) contrast(1.08);
    overflow: hidden;
    text-decoration: none;
}

.bonus-card-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-card {
    position: relative;
    display: grid;
    gap: 14px;
    overflow: hidden;
    padding: 0;
}

.game-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 25 / 18;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background:
        linear-gradient(135deg, rgba(51, 209, 122, 0.95), rgba(255, 77, 77, 0.88)),
        #18231f;
}

.game-thumb::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 13, 11, 0) 52%, rgba(8, 13, 11, 0.5));
    pointer-events: none;
}

.game-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.game-thumb span {
    display: grid;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
}

.game-card > div:last-child {
    padding: 0 18px 18px;
}

.check-list,
.steps {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.check-list li,
.steps li {
    margin: 8px 0;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: var(--panel);
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px;
    text-align: left;
}

th {
    color: var(--text);
}

td {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 14px 16px;
}

.faq-item summary {
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.faq-item p {
    margin-top: 12px;
}

.author-box {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.author-avatar {
    width: 56px;
    height: 56px;
    font-size: 24px;
}

.final-cta {
    padding: 44px 0 92px;
    text-align: center;
    background: linear-gradient(135deg, rgba(51, 209, 122, 0.15), rgba(255, 77, 77, 0.14));
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #070a09;
    padding: 34px 0 92px;
}

.footer-grid {
    display: grid;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 12px;
}

.site-footer nav {
    display: grid;
    gap: 2px;
}

.disclaimer,
.footer-note {
    color: var(--muted);
    font-size: 14px;
}

.mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(8, 13, 11, 0.96);
    border-top: 1px solid var(--line);
}

.cookie-bar {
    position: fixed;
    right: 12px;
    bottom: 78px;
    left: 12px;
    z-index: 70;
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 12px;
    box-shadow: var(--shadow);
}

.cookie-bar.is-visible {
    display: flex;
}

.cookie-bar p {
    margin: 0;
    font-size: 13px;
}

@media (min-width: 760px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: none;
    }

    .primary-nav,
    .header-cta {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .primary-nav {
        justify-content: center;
    }

    .primary-nav a {
        padding: 8px 2px;
        font-size: 14px;
    }

    .hero,
    .page-hero {
        padding: 72px 0 54px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
        align-items: center;
    }

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

    .card-grid,
    .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section {
        padding: 62px 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 0.7fr 0.8fr;
    }

    .mobile-sticky-cta {
        display: none;
    }

    .site-footer {
        padding-bottom: 38px;
    }

    .cookie-bar {
        right: 22px;
        bottom: 22px;
        left: auto;
        max-width: 470px;
    }
}

@media (min-width: 1020px) {
    .primary-nav {
        gap: 18px;
    }

    .header-cta .btn {
        min-width: 118px;
    }
}

/* Leon-style casino lobby layout */
body {
    background: #050909;
}

.container {
    width: min(1560px, calc(100% - 40px));
}

.site-header {
    background: #151619;
    border-bottom-color: #34363a;
    backdrop-filter: none;
}

.header-inner {
    min-height: 82px;
}

.leon-logo {
    display: inline-block;
    color: #fff;
    font-size: 28px;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1;
}

.primary-nav a {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 800;
}

.primary-nav a:nth-child(2)::after,
.primary-nav a:nth-child(4)::after,
.primary-nav a:nth-child(6)::after,
.primary-nav a:nth-child(7)::after,
.primary-nav a:nth-child(8)::after,
.primary-nav a:nth-child(9)::after {
    content: "⌄";
    margin-left: 12px;
    color: #b8b8bd;
    font-size: 14px;
}

.header-cta {
    gap: 14px;
}

.header-cta .btn {
    min-width: 150px;
    min-height: 44px;
    font-size: 18px;
}

.btn-primary {
    background: #4caf68;
    color: #fff;
}

.btn-secondary {
    background: #851814;
    color: #fff;
}

.casino-subnav {
    border-top: 1px solid #34363a;
    background: #17191c;
}

.casino-subnav-inner {
    position: relative;
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    white-space: nowrap;
}

.casino-subnav-inner::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 210px;
    height: 3px;
    content: "";
    background: #359a27;
}

.casino-subnav a,
.casino-subnav strong {
    color: #f4f4f4;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.casino-subnav em {
    color: #ff3029;
    font-style: normal;
}

.online-dot {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #359a27;
}

.casino-winners,
.casino-section {
    background: #060909;
}

.casino-winners {
    padding: 38px 0 24px;
}

.winners-strip {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 42px;
    overflow: hidden;
    border-radius: 8px;
    background: #34413c;
    padding: 0 24px;
    white-space: nowrap;
}

.winners-strip strong,
.winners-strip span {
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 800;
}

.winners-strip em {
    color: #50b05c;
    font-style: normal;
    font-weight: 900;
}

.casino-hero {
    padding: 22px 0 58px;
    background: #060909;
}

.casino-hero-card {
    display: grid;
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 76% 55%, rgba(255, 92, 103, 0.36), transparent 28%),
        linear-gradient(120deg, #7d1412 0%, #811714 44%, #b1162b 100%);
}

.casino-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
}

.casino-hero-copy h1 {
    max-width: none;
    color: #fff;
    font-size: clamp(44px, 6vw, 72px);
}

.casino-hero-copy p {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.casino-play-btn {
    width: min(390px, 100%);
    margin: 22px 0 42px;
}

.casino-hero-copy strong {
    color: #fff;
    font-size: 28px;
}

.casino-timer {
    color: #fff;
    font-size: 42px;
    font-weight: 950;
}

.casino-hero-art {
    position: relative;
    min-height: 320px;
    background-position: center;
    background-size: cover;
    mix-blend-mode: screen;
}

.casino-hero-art::before {
    position: absolute;
    inset: 8% 12%;
    content: "";
    border: 4px solid rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    transform: rotate(-17deg);
}

.casino-shield {
    position: absolute;
    right: 18%;
    top: 32%;
    display: grid;
    width: 230px;
    height: 230px;
    place-items: center;
    border: 10px solid #f4c274;
    border-radius: 50%;
    background: #171717;
    color: #f6f0df;
    font-size: 44px;
    font-style: italic;
    font-weight: 950;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.casino-section {
    padding: 56px 0;
}

.casino-section h2 {
    margin-bottom: 42px;
    color: #fff;
    text-align: center;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 950;
}

.bonus-list {
    display: grid;
    gap: 34px;
}

.bonus-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background: #34413c;
    padding: 58px 48px 34px;
}

.bonus-logo {
    color: #fff;
    font-size: 34px;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -2px;
}

.bonus-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.bonus-row p {
    grid-column: 1 / -1;
    justify-self: end;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.bonus-row b {
    font-size: 24px;
}

.casino-carousel {
    position: relative;
}

.casino-card-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 18px;
    overflow: hidden;
}

.live-track {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    grid-auto-columns: minmax(240px, 1fr);
}

.carousel-arrow {
    position: absolute;
    top: 45%;
    z-index: 2;
    width: 40px;
    height: 60px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 64px;
    line-height: 1;
}

.carousel-arrow:first-child {
    left: -18px;
}

.carousel-arrow:last-child {
    right: -18px;
}

.casino-game-card {
    overflow: hidden;
    border-radius: 8px;
    background: #34413c;
    color: #fff;
    text-decoration: none;
}

.casino-game-image {
    display: block;
    min-height: 212px;
    padding: 0;
    color: #fff;
    background: #111;
}

.casino-game-image img {
    display: block;
    width: 100%;
    height: 212px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.04);
}

.casino-card-title {
    display: block;
    padding: 16px 22px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.casino-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.casino-card-meta i {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #359a27;
}

.casino-card-meta b {
    color: #ff3029;
}

.slot-money { background: linear-gradient(135deg, #103a58, #f2a11f 50%, #161820); }
.slot-book { background: linear-gradient(135deg, #7b421e, #df9b42 45%, #4b1d0f); }
.slot-bass { background: linear-gradient(135deg, #6dd5df, #2980b9 42%, #102d36); }
.slot-sweet { background: linear-gradient(135deg, #f8c4d8, #ff5ba7 48%, #6931c9); }
.slot-gates { background: linear-gradient(135deg, #e9ceff, #f5cf65 46%, #8e59ff); }
.live-pokies { background: linear-gradient(135deg, #f8f8f8, #5aa0ff); color: #17365a; text-shadow: none; }
.live-blackjack { background: linear-gradient(135deg, #10270e, #c69945 60%, #243c13); }
.live-roulette { background: radial-gradient(circle, #d69d45 0 18%, #8a1111 19% 32%, #153f22 33% 55%, #2b6f39 56%); }
.live-baccarat { background: linear-gradient(135deg, #1a2f17, #d5bd6a 48%, #0d160c); }

.top-gamers-strip {
    position: relative;
    display: grid;
    grid-template-columns: auto repeat(5, 1fr) auto;
    align-items: center;
    gap: 28px;
    border-radius: 8px;
    background: #34413c;
    padding: 52px 24px;
}

.top-gamers-strip .carousel-arrow {
    position: static;
}

.gamer-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 18px;
}

.gamer-avatar {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: #dbe3df;
}

.gamer-card b,
.gamer-card em {
    display: block;
    color: #fff;
    font-style: normal;
    font-weight: 900;
}

.gamer-card span:last-child {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.tournament-grid,
.principles-grid {
    display: grid;
    gap: 20px;
}

.tournament-card {
    display: flex;
    min-height: 220px;
    align-items: end;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 8px;
    padding: 32px;
    background-color: #34413c;
    background-position: center;
    background-size: cover;
    position: relative;
}

.tournament-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.tournament-card > * {
    position: relative;
    z-index: 1;
}

.tournament-card h3,
.tournament-card strong {
    color: #fff;
}

.tournament-card h3 {
    font-size: 28px;
}

.tournament-card strong {
    font-size: 24px;
}

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

.principles-grid article {
    min-height: 150px;
    border-radius: 8px;
    background: #34413c;
    padding: 28px;
    color: #fff;
    font-size: 20px;
    font-weight: 850;
}

.article-section {
    padding-bottom: 90px;
}

.article-section h2 {
    text-align: left;
}

@media (min-width: 860px) {
    .casino-hero-card {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    }

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

@media (max-width: 1180px) {
    .casino-card-track,
    .live-track,
    .top-gamers-strip,
    .principles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .casino-game-card,
    .gamer-card,
    .principles-grid article {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .top-gamers-strip {
        grid-template-columns: none;
    }
}

@media (max-width: 759px) {
    .container {
        width: min(100% - 24px, 1560px);
    }

    .header-inner {
        min-height: 62px;
    }

    .primary-nav.is-open {
        background: #151619;
    }

    .casino-subnav-inner {
        gap: 18px;
    }

    .casino-subnav a,
    .casino-subnav strong,
    .winners-strip strong,
    .winners-strip span {
        font-size: 15px;
    }

    .casino-winners {
        padding-top: 18px;
    }

    .casino-hero-card {
        min-height: 0;
    }

    .casino-hero-copy {
        padding: 34px 22px;
    }

    .casino-shield {
        right: 50%;
        top: 50%;
        width: 150px;
        height: 150px;
        font-size: 28px;
        transform: translate(50%, -50%);
    }

    .bonus-row {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }

    .bonus-row p {
        justify-self: start;
    }

    .carousel-arrow {
        display: none;
    }

    .casino-game-image,
    .casino-game-image img {
        min-height: 170px;
        height: 170px;
    }
}

/* RocketPlay reference layout */
.rocketplay-theme {
    --rp-bg: #eef3f8;
    --rp-card: #ffffff;
    --rp-text: #1c2a39;
    --rp-muted: #66788a;
    --rp-blue: #2176ff;
    --rp-blue-dark: #175ce0;
    --rp-cyan: #27d4ff;
    --rp-line: #dbe4ee;
    background: var(--rp-bg);
    color: var(--rp-text);
}

.rocketplay-theme .container {
    width: min(1400px, calc(100% - 28px));
}

.rp-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background:
        radial-gradient(circle at 14% 0%, rgba(250, 198, 65, 0.11), transparent 34%),
        linear-gradient(180deg, #151b2d 0%, #0d1324 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 34px rgba(4, 10, 24, 0.28);
    backdrop-filter: blur(14px);
}

.rp-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 72px;
}

.rp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.rp-logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 229, 138, 0.42);
    border-radius: 13px;
    background:
        radial-gradient(circle at 30% 25%, #fff6b7 0 12%, #f9c741 13% 54%, #c78612 55% 100%);
    color: #111827;
    font-size: 26px;
    font-weight: 950;
    line-height: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(250, 198, 65, 0.24);
}

.rp-logo-text {
    display: grid;
    gap: 0;
    line-height: 0.88;
    text-transform: uppercase;
}

.rp-logo-text strong,
.rp-logo-text em {
    color: #fff;
    font-style: normal;
    font-weight: 950;
}

.rp-logo-text em {
    color: #ffe58a;
}

.rp-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.rp-nav a {
    border: 1px solid transparent;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 900;
    padding: 9px 10px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rp-nav a:hover {
    border-color: rgba(255, 229, 138, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.rp-actions {
    display: flex;
    gap: 10px;
}

.rp-actions .btn,
.mobile-sticky-cta .btn {
    min-width: 108px;
    min-height: 42px;
    border-radius: 12px;
}

.rp-btn-login {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    box-shadow: none;
}

.rocketplay-theme .btn-primary {
    background: linear-gradient(180deg, #36d7ff, var(--rp-blue));
    color: #fff;
}

.rp-menu-toggle {
    display: none;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.rp-mobile-tabs {
    display: none;
    background: #0a1020;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-mobile-tabs .container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0;
}

.rp-mobile-tabs a,
.rp-game-tabs a {
    border-radius: 999px;
    background: #fff;
    color: #26394d;
    font-weight: 850;
    text-decoration: none;
}

.rp-mobile-tabs a {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
    padding: 9px 14px;
}

.rp-hero-strip,
.rp-lobby,
.rp-promotions,
.rp-crypto,
.rp-tournaments,
.rp-winners,
.rp-article {
    background: var(--rp-bg);
}

.rp-hero-strip {
    padding: 28px 0 14px;
}

.rp-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rp-promo-card {
    position: relative;
    min-height: 252px;
    overflow: hidden;
    border-radius: 18px;
    background: #1f56d8;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(39, 72, 119, 0.16);
}

.rp-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-promo-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(13, 34, 90, 0.86), rgba(13, 34, 90, 0.3) 52%, rgba(13, 34, 90, 0.04));
}

.rp-promo-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(430px, 70%);
    min-height: 252px;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.rp-promo-content strong {
    font-size: 28px;
    line-height: 1.08;
}

.rp-promo-content em {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-style: normal;
    font-weight: 750;
}

.rp-promo-content b,
.rp-tournament-card b {
    width: fit-content;
    margin-top: 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, #36d7ff, #2176ff);
    padding: 11px 18px;
    color: #fff;
    font-size: 14px;
}

.rp-lobby,
.rp-promotions,
.rp-crypto,
.rp-tournaments,
.rp-winners {
    padding: 28px 0;
}

.rp-lobby-top,
.rp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.rp-lobby-top span {
    color: var(--rp-muted);
    font-weight: 800;
}

.rp-lobby-top h2,
.rp-section-head h2,
.rp-winners h2 {
    margin: 0;
    color: var(--rp-text);
    font-size: 30px;
}

.rp-lobby-top a,
.rp-section-head a {
    color: var(--rp-blue);
    font-weight: 850;
    text-decoration: none;
}

.rp-game-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 18px;
}

.rp-game-tabs a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid var(--rp-line);
}

.rp-game-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 168px;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.rp-random-card,
.rp-game-tile,
.rp-tournament-card,
.rp-winner-item {
    color: var(--rp-text);
    text-decoration: none;
}

.rp-random-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: end;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.92), transparent 16%),
        conic-gradient(from 30deg, #16d6ff, #2176ff, #9a56ff, #ff68b5, #ffd560, #16d6ff);
    padding: 16px;
    color: #fff;
    font-weight: 900;
}

.rp-random-card strong {
    font-size: 24px;
}

.rp-game-tile {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(39, 72, 119, 0.08);
}

.rp-game-tile img {
    display: block;
    width: 100%;
    height: 134px;
    object-fit: cover;
}

.rp-game-tile span,
.rp-game-tile strong {
    display: block;
    padding: 0 12px;
}

.rp-game-tile span {
    margin-top: 10px;
    color: var(--rp-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rp-game-tile strong {
    min-height: 48px;
    padding-bottom: 12px;
    color: var(--rp-text);
    font-size: 14px;
    line-height: 1.25;
}

.rp-promo-grid-small .rp-promo-card {
    min-height: 220px;
}

.rp-promo-grid-small .rp-promo-content {
    min-height: 220px;
}

.rp-crypto-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #132b72, #1f7bff);
    padding: 32px;
    color: #fff;
}

.rp-crypto-card h2 {
    color: #fff;
    font-size: 32px;
}

.rp-crypto-card p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
}

.rp-tournament-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.rp-tournament-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(39, 72, 119, 0.08);
}

.rp-tournament-card > span {
    color: var(--rp-muted);
    font-size: 13px;
    font-weight: 900;
}

.rp-tournament-card img {
    display: block;
    width: 100%;
    height: 120px;
    margin: 10px 0;
    border-radius: 14px;
    object-fit: cover;
}

.rp-tournament-card strong,
.rp-tournament-card em {
    display: block;
}

.rp-tournament-card em {
    color: var(--rp-muted);
    font-style: normal;
    font-weight: 750;
}

.rp-winner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.rp-winner-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
}

.rp-winner-item img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.rp-winner-item b,
.rp-winner-item em {
    display: block;
    font-style: normal;
    font-weight: 900;
}

.rp-winner-item em {
    color: var(--rp-blue);
}

.rp-article {
    padding: 36px 0 80px;
}

.rp-article .container {
    max-width: 980px;
    border-radius: 20px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 12px 28px rgba(39, 72, 119, 0.08);
}

.rp-article h1,
.rp-article h2,
.rp-article h3 {
    color: var(--rp-text);
}

.rp-article h1 {
    font-size: clamp(34px, 5vw, 48px);
}

.rp-article p,
.rp-article li,
.rp-article td {
    color: #536579;
}

.rp-article a {
    color: var(--rp-blue);
    font-weight: 850;
}

.rp-table {
    margin: 22px 0;
    overflow-x: auto;
    border: 1px solid var(--rp-line);
    border-radius: 14px;
}

.rocketplay-theme table {
    background: #fff;
}

.rocketplay-theme th {
    color: var(--rp-text);
}

.rocketplay-theme td,
.rocketplay-theme th {
    border-color: var(--rp-line);
}

.rp-footer {
    background: #182438;
    color: #fff;
    padding: 36px 0 84px;
}

.rp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.rp-footer .rp-logo,
.rp-footer p,
.rp-footer a,
.rp-footer strong {
    color: #fff;
}

.rp-footer nav {
    display: grid;
    gap: 8px;
}

.rp-footer a {
    text-decoration: none;
}

.rocketplay-theme .mobile-sticky-cta {
    background: rgba(255, 255, 255, 0.96);
    border-top-color: var(--rp-line);
}

.rocketplay-theme .cookie-bar {
    border: 1px solid var(--rp-line);
    border-radius: 16px;
    background: #fff;
}

.rocketplay-theme .cookie-bar p {
    color: #536579;
}

.rocketplay-theme .card.game-card {
    color: var(--rp-text);
    text-decoration: none;
    background: #fff;
}

.rocketplay-theme .page-hero {
    padding: 42px 0 28px;
    background:
        radial-gradient(circle at 85% 20%, rgba(39, 212, 255, 0.22), transparent 28%),
        linear-gradient(180deg, #ffffff, var(--rp-bg));
}

.rocketplay-theme .page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
}

.rocketplay-theme .page-hero .container > :not(.rp-service-visual) {
    grid-column: 1;
}

.rocketplay-theme .page-hero .rp-service-visual {
    grid-column: 2;
    grid-row: 1 / span 8;
}

.rocketplay-theme .page-hero h1 {
    color: var(--rp-text);
    font-size: clamp(36px, 6vw, 58px);
}

.rocketplay-theme .page-hero p,
.rocketplay-theme .breadcrumbs,
.rocketplay-theme .breadcrumbs span {
    color: var(--rp-muted);
}

.rocketplay-theme .breadcrumbs a {
    color: var(--rp-blue);
}

.rp-service-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(51, 119, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 12%, rgba(250, 198, 65, 0.2), transparent 34%),
        linear-gradient(145deg, #071429, #111f3b 48%, #26114e);
    box-shadow: 0 24px 60px rgba(25, 60, 110, 0.18);
    padding: 14px;
}

.rp-service-visual::before {
    position: absolute;
    inset: -80px -60px auto auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 214, 83, 0.38), transparent 66%);
    content: "";
    pointer-events: none;
}

.rp-service-main {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 245px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.rp-service-main::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 10, 24, 0.05) 0%, rgba(4, 10, 24, 0.22) 42%, rgba(4, 10, 24, 0.88) 100%),
        radial-gradient(circle at 82% 20%, rgba(255, 220, 86, 0.22), transparent 28%);
    content: "";
}

.rp-service-main img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.rp-service-main:hover img {
    filter: saturate(1.14) contrast(1.06);
    transform: scale(1.07);
}

.rp-service-main span,
.rp-service-main strong,
.rp-service-main em {
    position: relative;
    z-index: 2;
    margin-left: 18px;
    margin-right: 18px;
}

.rp-service-main span {
    justify-self: start;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 7px 10px;
    color: #ffe58a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.rp-service-main strong {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.rp-service-main em {
    margin-top: 6px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.rp-service-mini {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.rp-service-mini span {
    overflow: hidden;
    aspect-ratio: 1.18;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #071429;
}

.rp-service-mini img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-service-pays {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.rp-service-pays span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 850;
}

.rocketplay-theme .rp-article .rp-service-visual {
    max-width: 820px;
    margin: 22px 0 30px;
}

.rocketplay-theme .rp-article .rp-service-main {
    min-height: 280px;
}

.rocketplay-theme .section,
.rocketplay-theme .section.alt {
    background: var(--rp-bg);
}

.rocketplay-theme .section-head h2,
.rocketplay-theme .content-grid h2 {
    color: var(--rp-text);
}

.rocketplay-theme .section-head p,
.rocketplay-theme .content-grid p {
    color: var(--rp-muted);
}

.rocketplay-theme .panel {
    border-color: rgba(39, 72, 119, 0.12);
    background: #fff;
    color: var(--rp-text);
    box-shadow: 0 16px 34px rgba(39, 72, 119, 0.1);
}

.rocketplay-theme .panel h2 {
    color: var(--rp-text);
}

.rocketplay-theme .panel p,
.rocketplay-theme .panel li {
    color: var(--rp-muted);
}

.rocketplay-theme .rp-visual-panel {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding-top: 166px;
}

.rocketplay-theme .rp-visual-panel::before {
    position: absolute;
    inset: 0 0 auto;
    height: 148px;
    background:
        linear-gradient(180deg, rgba(8, 16, 34, 0.08), rgba(8, 16, 34, 0.5)),
        url("../images/neon-casino-games.png") center / cover no-repeat;
    content: "";
}

.rocketplay-theme .rp-visual-panel::after {
    position: absolute;
    top: 16px;
    left: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(8, 16, 34, 0.72);
    color: #ffe58a;
    content: "Casino guide";
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rocketplay-theme .rp-visual-panel > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 920px) {
    .rocketplay-theme .page-hero .container {
        grid-template-columns: 1fr;
    }

    .rocketplay-theme .page-hero .container > :not(.rp-service-visual),
    .rocketplay-theme .page-hero .rp-service-visual {
        grid-column: 1;
    }

    .rocketplay-theme .page-hero .rp-service-visual {
        grid-row: auto;
    }
}

@media (max-width: 620px) {
    .rp-service-visual {
        border-radius: 18px;
        padding: 10px;
    }

    .rp-service-main {
        min-height: 205px;
        border-radius: 14px;
    }

    .rp-service-main span,
    .rp-service-main strong,
    .rp-service-main em {
        margin-left: 14px;
        margin-right: 14px;
    }

    .rp-service-main strong {
        font-size: 24px;
    }

    .rp-service-mini {
        gap: 6px;
    }

    .rocketplay-theme .rp-article .rp-service-main {
        min-height: 220px;
    }

    .rocketplay-theme .rp-visual-panel {
        padding-top: 136px;
    }

    .rocketplay-theme .rp-visual-panel::before {
        height: 120px;
    }
}

.rocketplay-theme .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.rocketplay-theme .game-card {
    overflow: hidden;
    border-color: var(--rp-line);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(39, 72, 119, 0.08);
}

.rocketplay-theme .game-card > div:last-child {
    padding: 14px;
}

.rocketplay-theme .game-card h3 {
    color: var(--rp-text);
    font-size: 18px;
}

.rocketplay-theme .game-thumb::after {
    display: none;
}

.rocketplay-theme .card-kicker {
    color: var(--rp-blue);
}

.rp-spin-button {
    position: relative;
    box-shadow: 0 0 0 0 rgba(39, 212, 255, 0.45), 0 18px 36px rgba(33, 118, 255, 0.25);
    animation: rpCtaPulse 2.8s ease-in-out infinite;
}

.rp-wheel-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(107, 214, 255, 0.26);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    padding: 26px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    text-align: center;
    backdrop-filter: blur(18px);
}

.rp-wheel-card-head h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
}

.rp-wheel-card-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.rp-wheel-wrap {
    position: relative;
    display: grid;
    width: min(342px, 82vw);
    height: min(342px, 82vw);
    margin: 26px auto 22px;
    place-items: center;
    isolation: isolate;
}

.rp-bonus-wheel-shell {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 235, 156, 0.95) 0 53%, #b27116 54% 58%, #fbe49a 59% 62%, #6a3e08 63% 66%, transparent 67%),
        radial-gradient(circle, rgba(255, 211, 94, 0.28), transparent 70%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.12),
        0 0 38px rgba(255, 199, 68, 0.42),
        0 26px 80px rgba(0, 0, 0, 0.42);
}

.rp-bonus-wheel-shell::before {
    position: absolute;
    inset: 15px;
    z-index: 0;
    border-radius: 50%;
    content: "";
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28), transparent 20%),
        linear-gradient(135deg, #fff0a3, #c47c17 48%, #fff1a8);
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35);
}

.rp-wheel-lights {
    position: absolute;
    inset: 4px;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
}

.rp-wheel-lights i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px;
    border-radius: 50%;
    background: #fff8d7;
    box-shadow: 0 0 12px rgba(255, 232, 125, 0.95);
}

.rp-wheel-lights i:nth-child(1) { transform: rotate(0deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(2) { transform: rotate(20deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(3) { transform: rotate(40deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(4) { transform: rotate(60deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(5) { transform: rotate(80deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(6) { transform: rotate(100deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(7) { transform: rotate(120deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(8) { transform: rotate(140deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(9) { transform: rotate(160deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(10) { transform: rotate(180deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(11) { transform: rotate(200deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(12) { transform: rotate(220deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(13) { transform: rotate(240deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(14) { transform: rotate(260deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(15) { transform: rotate(280deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(16) { transform: rotate(300deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(17) { transform: rotate(320deg) translateY(-160px); }
.rp-wheel-lights i:nth-child(18) { transform: rotate(340deg) translateY(-160px); }

.rp-wheel-lights i:nth-child(even) {
    opacity: 0.58;
}

.rp-bonus-wheel {
    position: absolute;
    inset: 24px;
    z-index: 1;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    background: #06162f;
    box-shadow:
        inset 0 0 28px rgba(0, 0, 0, 0.34),
        0 0 0 5px rgba(255, 231, 147, 0.5);
    transition: transform 2.8s cubic-bezier(0.12, 0.78, 0.24, 1);
}

.rp-bonus-wheel.is-spinning {
    transform: rotate(1480deg);
}

.rp-wheel-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.rp-wheel-svg-label {
    fill: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rp-wheel-label {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    transform-origin: 0 0;
}

.rp-wheel-label-1 { transform: rotate(-60deg) translate(36px, -120px) rotate(60deg); }
.rp-wheel-label-2 { transform: rotate(0deg) translate(48px, -20px) rotate(0deg); }
.rp-wheel-label-3 { transform: rotate(60deg) translate(34px, 78px) rotate(-60deg); }
.rp-wheel-label-4 { transform: rotate(120deg) translate(-78px, 80px) rotate(-120deg); }
.rp-wheel-label-5 { transform: rotate(180deg) translate(-144px, -20px) rotate(-180deg); }
.rp-wheel-label-6 { transform: rotate(240deg) translate(-80px, -122px) rotate(-240deg); }

.rp-wheel-hub {
    position: relative;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 7px solid rgba(255, 238, 174, 0.95);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.36), transparent 22%),
        linear-gradient(135deg, #06162f, #2176ff 58%, #0bd7ff);
    color: #fff;
    font-size: 32px;
    font-weight: 950;
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.18),
        0 0 0 5px rgba(10, 29, 58, 0.68),
        0 12px 24px rgba(0, 0, 0, 0.32);
}

.rp-wheel-pointer {
    position: absolute;
    top: -2px;
    z-index: 5;
    width: 0;
    height: 0;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 38px solid #fff1a8;
    filter: drop-shadow(0 5px 0 #9d6413) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.42));
}

.rp-spin-button {
    width: min(260px, 100%);
}

.rp-wheel-modal {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 16, 34, 0.76);
    padding: 18px;
}

.rp-wheel-modal.is-visible {
    display: flex;
}

.rp-wheel-modal-inner {
    width: min(320px, 100%);
    border: 1px solid rgba(255, 224, 122, 0.4);
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    color: #12233d;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.rp-wheel-modal-inner strong {
    display: block;
    color: #12233d;
    font-size: 26px;
}

.rp-wheel-modal-inner p {
    color: #41556d;
    font-weight: 850;
}

.rp-bonus-picker {
    position: relative;
    display: flex;
    max-width: 560px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.075);
    padding: 12px;
}

.rp-bonus-picker strong,
.rp-bonus-picker span {
    display: block;
}

.rp-bonus-picker strong {
    color: #fff;
    font-size: 15px;
}

.rp-bonus-picker span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
}

.rp-picker-button {
    min-height: 40px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffe58a, #d99a25);
    color: #09152d;
    padding: 8px 14px;
    font-weight: 950;
    cursor: pointer;
}

.rp-picker-modal {
    border-radius: 16px;
}

.rp-provider-hero-logo {
    display: block;
    width: min(260px, 70vw);
    height: 76px;
    margin: 20px 0 12px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.rp-lobby-hub {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 8%, rgba(39, 212, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #07162e 0%, #0b1735 46%, #081226 100%);
    padding: 34px 0 46px;
    color: #fff;
}

.rp-game-section,
.rp-provider-block,
.rp-category-shortcuts,
.rp-lobby-final {
    position: relative;
    margin: 0 0 28px;
}

.rp-lobby-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.rp-lobby-head > div {
    min-width: 0;
}

.rp-head-marker {
    display: inline-grid;
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
    place-items: center;
    border: 1px solid rgba(255, 229, 138, 0.38);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(255, 229, 138, 0.22), rgba(255, 255, 255, 0.07));
    color: #ffe58a;
    font-size: 12px;
    font-weight: 950;
    vertical-align: middle;
}

.rp-lobby-head h2 {
    display: inline;
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.1;
}

.rp-lobby-head p {
    max-width: 760px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 750;
}

.rp-see-all,
.rp-lobby-head > a {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 14px;
    color: #dff5ff;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.rp-see-all:hover,
.rp-lobby-head > a:hover {
    border-color: rgba(54, 215, 255, 0.62);
    background: rgba(54, 215, 255, 0.16);
    color: #fff;
}

.rp-lobby-card-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 154px;
    gap: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 12px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(54, 215, 255, 0.6) rgba(255, 255, 255, 0.08);
}

.rp-game-section-grid .rp-lobby-card-row {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
    overflow-x: visible;
}

.rp-lobby-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    scroll-snap-align: start;
    transform: translateZ(0);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rp-lobby-card:hover,
.rp-lobby-card:focus-visible {
    border-color: rgba(54, 215, 255, 0.55);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(54, 215, 255, 0.18);
    transform: translateY(-4px);
}

.rp-lobby-thumb {
    position: relative;
    display: block;
    aspect-ratio: 0.78;
    overflow: hidden;
    background: #121d3c;
}

.rp-lobby-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.rp-lobby-card:hover .rp-lobby-thumb img,
.rp-lobby-card:focus-visible .rp-lobby-thumb img {
    filter: brightness(0.76) saturate(1.16);
    transform: scale(1.08);
}

.rp-lobby-thumb em {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 2;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe58a, #d99a25);
    padding: 5px 8px;
    color: #09152d;
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(180deg, rgba(4, 14, 32, 0.1), rgba(4, 14, 32, 0.76));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rp-lobby-card:hover .rp-card-overlay,
.rp-lobby-card:focus-visible .rp-card-overlay {
    opacity: 1;
}

.rp-card-overlay b,
.rp-card-overlay small {
    display: grid;
    min-width: 84px;
    min-height: 34px;
    place-items: center;
    border-radius: 10px;
    font-weight: 950;
}

.rp-card-overlay b {
    background: linear-gradient(180deg, #36d7ff, #2176ff);
    color: #fff;
}

.rp-card-overlay small {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.rp-lobby-card-meta {
    display: block;
    min-height: 76px;
    padding: 11px 11px 12px;
}

.rp-lobby-card-meta strong,
.rp-lobby-card-meta small {
    display: block;
}

.rp-lobby-card-meta strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.18;
}

.rp-lobby-card-meta small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
}

.rp-row-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    border: 1px solid rgba(255, 229, 138, 0.2);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 229, 138, 0.17), transparent 28%),
        rgba(255, 255, 255, 0.075);
    padding: 16px;
}

.rp-row-cta strong,
.rp-row-cta p {
    display: block;
    margin: 0;
}

.rp-row-cta strong {
    color: #fff;
    font-size: 17px;
}

.rp-row-cta p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
}

.rp-row-cta .btn {
    flex: 0 0 auto;
}

.rp-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.rp-provider-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.075);
    padding: 12px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rp-provider-card:hover,
.rp-provider-card:focus-visible {
    border-color: rgba(54, 215, 255, 0.5);
    background: rgba(54, 215, 255, 0.12);
    transform: translateY(-2px);
}

.rp-provider-card span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #36d7ff, #2176ff);
    font-weight: 950;
}

.rp-provider-card strong,
.rp-provider-card em {
    display: block;
}

.rp-provider-card strong {
    font-size: 14px;
}

.rp-provider-card em {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.rp-shortcut-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rp-shortcut-grid a {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 11px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.rp-shortcut-grid a:hover,
.rp-shortcut-grid a:focus-visible {
    border-color: rgba(255, 229, 138, 0.48);
    background: rgba(255, 229, 138, 0.16);
}

.rp-lobby-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(54, 215, 255, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 18%, rgba(54, 215, 255, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(18, 43, 114, 0.95), rgba(35, 12, 67, 0.95));
    padding: clamp(20px, 4vw, 32px);
}

.rp-lobby-final span {
    color: #ffe58a;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-lobby-final h2 {
    max-width: 760px;
    margin: 7px 0;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
}

.rp-lobby-final p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 750;
}

/* Premium lobby polish */
.rp-lobby-hub {
    background:
        radial-gradient(circle at 78% 5%, rgba(54, 215, 255, 0.16), transparent 24%),
        radial-gradient(circle at 12% 36%, rgba(255, 229, 138, 0.11), transparent 24%),
        linear-gradient(180deg, #06162f 0%, #09152d 48%, #050b18 100%);
}

.rp-game-section,
.rp-provider-block,
.rp-category-shortcuts,
.rp-lobby-final {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(6, 18, 40, 0.72);
    padding: 18px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.rp-lobby-head {
    padding: 0 2px;
}

.rp-head-marker {
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), transparent 18%),
        linear-gradient(180deg, #ffe58a, #c98219);
    color: #081226;
    box-shadow: 0 10px 22px rgba(255, 196, 60, 0.18);
}

.rp-see-all,
.rp-lobby-head > a {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.16);
}

.rp-lobby-card-row {
    grid-auto-columns: 164px;
    gap: 15px;
    padding: 3px 2px 14px;
}

.rp-game-section-grid .rp-lobby-card-row {
    grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
}

.rp-lobby-card {
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
        #0b1731;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.rp-lobby-card:hover,
.rp-lobby-card:focus-visible {
    border-color: rgba(255, 229, 138, 0.58);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 28px rgba(54, 215, 255, 0.16);
}

.rp-lobby-thumb {
    aspect-ratio: 0.76;
    background:
        radial-gradient(circle at 50% 28%, rgba(54, 215, 255, 0.18), transparent 45%),
        #101c3b;
}

.rp-lobby-thumb::after {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(3, 11, 25, 0.76));
    pointer-events: none;
}

.rp-lobby-thumb em {
    left: 9px;
    top: 9px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.rp-card-overlay {
    background:
        radial-gradient(circle at 50% 38%, rgba(54, 215, 255, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(4, 14, 32, 0.08), rgba(4, 14, 32, 0.84));
}

.rp-card-overlay b {
    background: linear-gradient(180deg, #36d7ff, #2176ff);
    box-shadow: 0 12px 24px rgba(33, 118, 255, 0.32);
}

.rp-lobby-card-meta {
    min-height: 84px;
    padding: 12px;
}

.rp-lobby-card-meta small {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 20px;
}

.rp-lobby-card-meta small img {
    width: 36px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px;
}

.rp-row-cta {
    border-color: rgba(54, 215, 255, 0.2);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 229, 138, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(12, 34, 77, 0.92), rgba(20, 18, 55, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rp-provider-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.rp-provider-card {
    grid-template-columns: 88px 1fr;
    min-height: 82px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
        #0b1731;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.rp-provider-card span {
    width: 88px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.rp-provider-card span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.rp-shortcut-grid a {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
        #0c1b3a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.rp-lobby-final {
    background:
        radial-gradient(circle at 82% 50%, rgba(54, 215, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #102a61, #160c37 72%);
}

.rp-category-hero {
    background:
        radial-gradient(circle at 82% 14%, rgba(39, 212, 255, 0.2), transparent 27%),
        linear-gradient(180deg, #07162e, #0b1735);
    padding: 38px 0 28px;
    color: #fff;
}

.rp-category-hero .breadcrumbs,
.rp-category-hero .breadcrumbs a,
.rp-category-hero .breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.rp-category-hero h1 {
    margin: 16px 0 12px;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
}

.rp-category-hero p {
    max-width: 980px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    font-weight: 720;
}

.rp-category-lobby {
    padding-top: 28px;
}

.rp-conversion-boosters {
    overflow: hidden;
    background: linear-gradient(180deg, #07162e 0%, #081226 100%);
    padding: 30px 0 8px;
    color: #fff;
}

.rp-booster-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.rp-booster-head span {
    display: block;
    color: #ffe58a;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-booster-head h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.05;
}

.rp-booster-head a {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    color: #ffe58a;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.rp-provider-rail,
.rp-jackpot-meter,
.rp-winners-dock,
.rp-promo-spotlight,
.rp-tournament-spotlight {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.rp-provider-rail {
    margin-bottom: 22px;
    padding: 22px;
}

.rp-provider-rail-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.rp-provider-rail-row a {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
        rgba(8, 20, 45, 0.88);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rp-provider-rail-row a:hover,
.rp-provider-rail-row a:focus-visible {
    border-color: rgba(255, 229, 138, 0.5);
    background: rgba(54, 215, 255, 0.13);
    transform: translateY(-2px);
}

.rp-provider-rail-row img {
    width: 138px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.rp-provider-rail-row span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.rp-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
    align-items: start;
    margin-bottom: 22px;
}

.rp-jackpot-meter {
    padding: 22px;
}

.rp-jackpot-games {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.rp-jackpot-games a {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
}

.rp-jackpot-games img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.rp-jackpot-games a:hover img {
    transform: scale(1.08);
}

.rp-jackpot-games a::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 35%, rgba(4, 14, 32, 0.9));
}

.rp-jackpot-games strong,
.rp-jackpot-games em {
    position: absolute;
    z-index: 1;
    right: 10px;
    left: 10px;
    display: block;
}

.rp-jackpot-games strong {
    bottom: 38px;
    font-size: 13px;
    line-height: 1.15;
}

.rp-jackpot-games em {
    bottom: 12px;
    color: #ffe58a;
    font-style: normal;
    font-weight: 950;
}

.rp-winners-dock {
    padding: 18px;
}

.rp-winners-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.rp-winners-title span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff745c;
    box-shadow: 0 0 12px rgba(255, 116, 92, 0.8);
}

.rp-winners-title strong {
    color: #fff;
    font-size: 17px;
}

.rp-winners-dock a {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.rp-winners-dock img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.rp-winners-dock b {
    display: block;
    color: #fff;
    font-size: 17px;
}

.rp-promo-spotlight {
    margin-bottom: 24px;
    padding: 22px;
}

.rp-promo-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rp-promo-spotlight-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
}

.rp-promo-spotlight-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.rp-promo-spotlight-card:hover img {
    transform: scale(1.05);
}

.rp-promo-spotlight-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(7, 22, 46, 0.88), rgba(7, 22, 46, 0.22));
}

.rp-promo-spotlight-card span {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(420px, 72%);
    min-height: 260px;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.rp-promo-spotlight-card em {
    width: fit-content;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    padding: 8px 12px;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-promo-spotlight-card strong {
    margin-top: 18px;
    color: #ffe58a;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.05;
}

.rp-promo-spotlight-card b {
    width: fit-content;
    margin-top: 18px;
    border-radius: 999px;
    background: #ffe58a;
    padding: 11px 18px;
    color: #081226;
    font-size: 13px;
    font-weight: 950;
}

.rp-tournament-spotlight {
    margin-bottom: 24px;
    padding: 22px;
}

.rp-tournament-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
    gap: 18px;
}

.rp-tournament-feature,
.rp-tournament-side {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
}

.rp-tournament-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.rp-tournament-feature:hover img {
    transform: scale(1.06);
}

.rp-tournament-feature::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(7, 22, 46, 0.9), rgba(7, 22, 46, 0.28));
}

.rp-tournament-feature span {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(520px, 78%);
    min-height: 260px;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.rp-tournament-feature em {
    width: fit-content;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    padding: 8px 12px;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-tournament-feature strong,
.rp-tournament-side strong {
    margin-top: 18px;
    line-height: 1.05;
}

.rp-tournament-feature strong {
    color: #ffe58a;
    font-size: clamp(26px, 4vw, 44px);
}

.rp-tournament-feature b,
.rp-tournament-side b {
    width: fit-content;
    margin-top: 18px;
    border-radius: 999px;
    background: #ffe58a;
    padding: 11px 18px;
    color: #081226;
    font-size: 13px;
    font-weight: 950;
}

.rp-tournament-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(135deg, #8fc449, #28a96f);
    padding: 28px;
}

.rp-tournament-side span {
    color: #10261b;
    font-weight: 950;
    text-transform: uppercase;
}

.rp-tournament-side strong {
    color: #fff7b0;
    font-size: clamp(24px, 3vw, 38px);
}

@keyframes rpCtaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39, 212, 255, 0.38), 0 18px 36px rgba(33, 118, 255, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(39, 212, 255, 0), 0 18px 46px rgba(39, 212, 255, 0.38); }
}

@keyframes rpFloatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(14deg); }
}

@keyframes rpCardShine {
    0%, 42%, 100% { transform: translateX(-120%); }
    58% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .rp-spin-button,
    .rp-cta-primary,
    .rp-banner-shine,
    .rp-banner-coin {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .rp-header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .rp-menu-toggle {
        display: inline-flex;
    }

    .rp-nav {
        display: none;
    }

    .rp-nav.is-open {
        display: grid;
        grid-column: 1 / -1;
        gap: 8px;
        padding: 12px 0;
    }

    .rp-actions {
        justify-content: end;
    }

    .rp-mobile-tabs {
        display: block;
    }

    .rp-tournament-row,
    .rp-winner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .rp-lobby-hub {
        padding: 24px 0 34px;
    }

    .rp-conversion-boosters {
        padding: 22px 0 0;
    }

    .rp-provider-rail,
    .rp-jackpot-meter,
    .rp-winners-dock,
    .rp-promo-spotlight,
    .rp-tournament-spotlight {
        border-radius: 20px;
        padding: 16px;
    }

    .rp-booster-head {
        align-items: flex-start;
    }

    .rp-booster-head h2 {
        font-size: 25px;
    }

    .rp-provider-rail-row {
        grid-auto-columns: max-content;
        margin-right: -16px;
        padding-right: 16px;
    }

    .rp-provider-rail-row a {
        min-height: 54px;
        padding: 0 12px;
    }

    .rp-provider-rail-row img {
        width: 124px;
        height: 36px;
    }

    .rp-proof-grid,
    .rp-promo-spotlight-grid,
    .rp-tournament-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .rp-winners-dock {
        display: none;
    }

    .rp-jackpot-games {
        grid-auto-flow: column;
        grid-auto-columns: minmax(138px, 42vw);
        grid-template-columns: none;
        overflow-x: auto;
        margin-right: -16px;
        padding-right: 16px;
    }

    .rp-promo-spotlight-card {
        min-height: 220px;
    }

    .rp-promo-spotlight-card span {
        width: 82%;
        min-height: 220px;
        padding: 20px;
    }

    .rp-tournament-feature,
    .rp-tournament-side {
        min-height: 220px;
    }

    .rp-tournament-feature span {
        width: 84%;
        min-height: 220px;
        padding: 20px;
    }

    .rp-game-section,
    .rp-provider-block,
    .rp-category-shortcuts,
    .rp-lobby-final {
        margin-bottom: 24px;
        border-radius: 18px;
        padding: 14px;
    }

    .rp-lobby-head {
        align-items: flex-start;
    }

    .rp-lobby-head h2 {
        display: block;
        margin-top: 8px;
        font-size: 24px;
    }

    .rp-lobby-head p {
        font-size: 13px;
    }

    .rp-see-all,
    .rp-lobby-head > a {
        padding: 8px 11px;
        font-size: 12px;
    }

    .rp-lobby-card-row {
        grid-auto-columns: minmax(138px, 42vw);
        gap: 11px;
        margin-right: -16px;
        padding-right: 16px;
    }

    .rp-game-section-grid .rp-lobby-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-right: 0;
        padding-right: 0;
    }

    .rp-lobby-card-meta {
        min-height: 72px;
        padding: 10px;
    }

    .rp-card-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 42%, rgba(4, 14, 32, 0.78));
    }

    .rp-card-overlay small {
        display: none;
    }

    .rp-card-overlay b {
        position: absolute;
        right: 8px;
        bottom: 8px;
        min-width: 58px;
        min-height: 28px;
        border-radius: 8px;
        font-size: 12px;
    }

    .rp-row-cta,
    .rp-lobby-final {
        align-items: stretch;
        flex-direction: column;
    }

    .rp-row-cta .btn,
    .rp-lobby-final .btn {
        width: 100%;
    }

    .rp-provider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rp-provider-card {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 10px;
    }

    .rp-provider-card span {
        width: 100%;
        height: 38px;
        border-radius: 10px;
    }

    .rp-provider-card strong,
    .rp-provider-card em {
        text-align: center;
    }

    .rp-shortcut-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -16px;
        padding: 0 16px 8px 0;
    }

    .rp-shortcut-grid a {
        flex: 0 0 auto;
    }

    .rp-category-hero {
        padding: 28px 0 22px;
    }

    .rp-bonus-picker {
        align-items: stretch;
        flex-direction: column;
    }

    .rp-picker-button {
        width: 100%;
    }

    .rp-wheel-card {
        padding: 20px 14px;
    }

    .rp-header-inner {
        grid-template-columns: 1fr auto;
    }

    .rp-actions {
        display: none;
    }

    .rp-promo-grid,
    .rp-tournament-row,
    .rp-winner-grid,
    .rp-crypto-card,
    .rp-footer-grid {
        grid-template-columns: 1fr;
    }

    .rp-promo-card,
    .rp-promo-content {
        min-height: 210px;
    }

    .rp-promo-content {
        width: 78%;
        padding: 22px;
    }

    .rp-promo-content strong {
        font-size: 23px;
    }

    .rp-article .container {
        padding: 22px;
    }
}

/* ============================================================
   RocketPlay Hero (lobby-style)
   ============================================================ */

.rp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(80, 162, 255, 0.22), transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(155, 96, 255, 0.18), transparent 44%),
        linear-gradient(140deg, #0e1d44 0%, #14225b 46%, #281a5a 82%, #0e1437 100%);
    padding: 28px 0 24px;
    color: #fff;
}

.rp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.rp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.42;
}

.rp-hero-glow-1 {
    top: -140px;
    right: -100px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(70, 175, 255, 0.6), transparent 70%);
}

.rp-hero-glow-2 {
    bottom: -180px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(150, 90, 255, 0.42), transparent 72%);
}

.rp-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    align-items: stretch;
    gap: clamp(20px, 2.6vw, 36px);
}

/* ---- Left column: copy + offer + CTA ---- */

.rp-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.rp-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid rgba(110, 215, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    color: #cdefff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.rp-hero-h1 {
    margin: 4px 0 0;
    color: #fff;
    font-size: clamp(32px, 4.2vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.rp-hero-tagline {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
}

.rp-hero-offer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0 6px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 224, 122, 0.32);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 224, 122, 0.12), rgba(255, 224, 122, 0.04) 60%, transparent 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 224, 122, 0.05);
}

.rp-hero-offer-label {
    color: rgba(255, 224, 122, 0.78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rp-hero-offer-amount {
    color: #ffe07a;
    font-size: clamp(34px, 3.8vw, 46px);
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 6px 24px rgba(255, 200, 90, 0.28);
}

.rp-hero-offer-amount em {
    display: inline-block;
    margin-left: 6px;
    color: #fff;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.01em;
    vertical-align: middle;
}

.rp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 6px;
}

.rp-hero-cta .btn {
    min-width: 184px;
    min-height: 56px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 950;
}

.rp-cta-primary {
    position: relative;
    background: linear-gradient(180deg, #3ee589, #1c9b54);
    color: #04130a;
    box-shadow:
        0 0 0 0 rgba(62, 229, 137, 0.5),
        0 20px 40px rgba(28, 155, 84, 0.4);
    animation: rpCtaPulse 2.8s ease-in-out infinite;
}

.rp-cta-primary:hover {
    transform: translateY(-2px);
}

.rp-cta-secondary {
    background: rgba(10, 22, 56, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.rp-cta-secondary:hover {
    background: rgba(10, 22, 56, 0.95);
    border-color: rgba(255, 255, 255, 0.32);
}

.rp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.rp-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 11px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 850;
}

.rp-hero-trust li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31e59a;
    content: "";
    box-shadow: 0 0 10px rgba(49, 229, 154, 0.85);
}

.rp-hero-pays {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 2px 0 0;
}

.rp-hero-pays span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rp-hero-disclaimer {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ---- Right column: RocketPlay Bonus Preview card ---- */

.rp-preview-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 0%, rgba(80, 162, 255, 0.18), transparent 42%),
        linear-gradient(160deg, rgba(20, 36, 88, 0.92), rgba(36, 22, 88, 0.92));
    padding: 18px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 60px rgba(0, 0, 0, 0.42);
}

.rp-preview-coin {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff7b0 0 12%, #ffd15a 13% 54%, #b56f10 55% 100%);
    opacity: 0.42;
    pointer-events: none;
    animation: rpFloatCoin 7s ease-in-out infinite;
}

.rp-preview-coin-1 { width: 28px; height: 28px; top: 10%;  right: 8%;   animation-delay: -1s; }
.rp-preview-coin-2 { width: 18px; height: 18px; top: 42%;  right: 14%;  animation-delay: -3s; }
.rp-preview-coin-3 { width: 20px; height: 20px; bottom: 18%; left: 4%;  animation-delay: -5s; }

.rp-preview-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rp-preview-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
    letter-spacing: 0.01em;
}

.rp-preview-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 224, 122, 0.42);
    border-radius: 999px;
    background: rgba(255, 224, 122, 0.08);
    padding: 4px 10px;
    color: #ffe07a;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rp-preview-games {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.rp-preview-game {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.rp-preview-game img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-preview-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.rp-preview-row-bonus {
    border-color: rgba(255, 224, 122, 0.32);
    background: linear-gradient(135deg, rgba(255, 224, 122, 0.1), rgba(255, 224, 122, 0.02));
}

.rp-preview-row-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(80, 162, 255, 0.18);
    color: #7fc6ff;
    font-size: 14px;
}

.rp-preview-row-bonus .rp-preview-row-icon {
    background: rgba(255, 224, 122, 0.18);
    color: #ffe07a;
}

.rp-preview-row-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.rp-preview-row-body em {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rp-preview-row-body strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rp-preview-row-bonus .rp-preview-row-body strong {
    color: #ffe07a;
    font-size: 15px;
}

.rp-preview-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffe58a, #d99a25);
    color: #1a0d04;
    font-size: 16px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(220, 150, 30, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rp-preview-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(220, 150, 30, 0.52);
}

.rp-preview-cta em {
    font-style: normal;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.rp-preview-cta:hover em {
    transform: translateX(4px);
}

/* Premium slot-style promo scene */
.rp-promo-scene {
    min-height: 438px;
    gap: 14px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 205, 72, 0.22), transparent 24%),
        radial-gradient(circle at 16% 16%, rgba(246, 74, 145, 0.2), transparent 30%),
        radial-gradient(circle at 54% 82%, rgba(67, 183, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(30, 13, 64, 0.96), rgba(10, 24, 64, 0.98) 48%, rgba(46, 12, 49, 0.96));
}

.rp-promo-scene::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 42%, transparent 52%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px);
    opacity: 0.36;
    content: "";
    pointer-events: none;
    animation: rpSceneShine 5s ease-in-out infinite;
}

.rp-promo-scene::after {
    position: absolute;
    right: -118px;
    bottom: -118px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background:
        conic-gradient(from -20deg, #ffdf6d, #a73542, #7a32e6, #f7a83b, #2ccf78, #ffdf6d);
    box-shadow:
        inset 0 0 0 12px rgba(255, 231, 150, 0.4),
        inset 0 0 0 28px rgba(73, 22, 92, 0.38),
        0 0 52px rgba(255, 200, 70, 0.42);
    content: "";
    opacity: 0.92;
    pointer-events: none;
    transform: rotate(-8deg);
}

.rp-scene-top,
.rp-scene-stage,
.rp-scene-offer,
.rp-scene-cta,
.rp-scene-payments {
    position: relative;
    z-index: 2;
}

.rp-scene-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rp-scene-top span,
.rp-scene-top em {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 950;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rp-scene-top span {
    background: linear-gradient(180deg, #ffe58a, #d99a25);
    color: #1b0d04;
    box-shadow: 0 12px 28px rgba(218, 154, 37, 0.32);
}

.rp-scene-top em {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
}

.rp-scene-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    align-items: center;
    gap: 14px;
    min-height: 172px;
    margin-top: 6px;
}

.rp-scene-reels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    padding: 10px;
    border: 1px solid rgba(255, 226, 122, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 226, 122, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(4, 9, 29, 0.56);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 46px rgba(0, 0, 0, 0.38);
}

.rp-scene-reel {
    overflow: hidden;
    aspect-ratio: 0.76;
    border: 2px solid rgba(255, 231, 150, 0.34);
    border-radius: 14px;
    background: #07112a;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
    transform: translateY(var(--y, 0));
}

.rp-scene-reel:nth-child(1) { --y: 10px; }
.rp-scene-reel:nth-child(2) { --y: -4px; }
.rp-scene-reel:nth-child(3) { --y: 12px; }

.rp-scene-reel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-scene-wheel {
    position: relative;
    display: grid;
    place-items: center;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #2b1035 0 28%, transparent 29%),
        conic-gradient(from 12deg, #ffe58a, #e24b4b, #7738dc, #ffb13a, #24c074, #ffe58a);
    box-shadow:
        inset 0 0 0 7px rgba(255, 231, 150, 0.52),
        inset 0 0 0 17px rgba(52, 19, 85, 0.5),
        0 22px 52px rgba(255, 190, 60, 0.36);
    transform: rotate(-10deg);
}

.rp-scene-wheel::before {
    position: absolute;
    top: -13px;
    width: 0;
    height: 0;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 24px solid #ffe58a;
    content: "";
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.rp-scene-wheel span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff4a8, #d99a25);
    color: #341109;
    font-size: 15px;
    font-weight: 950;
    text-align: center;
    transform: rotate(10deg);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36);
}

.rp-scene-jackpot {
    position: absolute;
    right: 112px;
    bottom: 66px;
    z-index: 3;
    display: grid;
    min-width: 96px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(13, 26, 67, 0.92), rgba(74, 24, 94, 0.88));
    padding: 8px 10px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.rp-scene-jackpot small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rp-scene-jackpot strong {
    color: #ffe58a;
    font-size: 25px;
    font-weight: 950;
    line-height: 1;
}

.rp-scene-offer {
    display: grid;
    justify-items: start;
    width: min(360px, 76%);
    border: 1px solid rgba(255, 226, 122, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 226, 122, 0.18), transparent 46%),
        rgba(4, 10, 31, 0.72);
    padding: 15px 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.rp-scene-offer small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rp-scene-offer strong {
    color: #ffe58a;
    font-size: clamp(40px, 4.2vw, 56px);
    font-weight: 950;
    line-height: 0.95;
    text-shadow: 0 10px 34px rgba(255, 200, 70, 0.35);
}

.rp-scene-offer em {
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    font-style: normal;
}

.rp-scene-cta {
    width: min(320px, 70%);
    margin-top: 0;
}

.rp-scene-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rp-scene-payments span {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rp-scene-coin {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #fff8c4 0 11%, #ffd15a 12% 55%, #a85e0a 56% 100%);
    box-shadow: 0 0 18px rgba(255, 204, 80, 0.45);
    pointer-events: none;
    animation: rpFloatCoin 6s ease-in-out infinite;
}

.rp-scene-coin-1 { top: 72px; left: 30px; width: 22px; height: 22px; animation-delay: -0.6s; }
.rp-scene-coin-2 { top: 122px; right: 42px; width: 30px; height: 30px; animation-delay: -2.1s; }
.rp-scene-coin-3 { bottom: 118px; left: 43%; width: 18px; height: 18px; animation-delay: -3.4s; }
.rp-scene-coin-4 { bottom: 34px; right: 28%; width: 24px; height: 24px; animation-delay: -4.6s; }

/* ============================================================
   Live Activity + Recent Wins band
   ============================================================ */

.rp-live-band {
    position: relative;
    background:
        radial-gradient(circle at 20% 0%, rgba(54, 215, 255, 0.08), transparent 38%),
        radial-gradient(circle at 90% 100%, rgba(146, 64, 255, 0.1), transparent 36%),
        linear-gradient(180deg, #050b1c 0%, #07112e 100%);
    padding: 20px 0;
    color: #fff;
}

.rp-live-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.rp-live-card,
.rp-wins-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    max-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    padding: 12px 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.rp-live-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex: 0 0 auto;
}

.rp-live-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rp-live-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(49, 229, 154, 0.18);
    color: #31e59a;
    font-size: 10px;
    line-height: 1;
}

.rp-wins-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 224, 122, 0.18);
    color: #ffe07a;
    font-size: 13px;
    line-height: 1;
}

.rp-live-title {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.01em;
}

.rp-live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rp-wins-status {
    color: rgba(255, 255, 255, 0.42);
}

.rp-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31e59a;
    box-shadow: 0 0 10px rgba(49, 229, 154, 0.85);
    animation: rpLivePulse 1.6s ease-in-out infinite;
}

.rp-live-feed {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 0;
    overflow: hidden;
    flex: 1 1 auto;
}

.rp-live-msg {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transform: translateY(6px);
    animation: rpFadeIn 0.5s ease forwards;
}

.rp-live-avatar {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3287ff, #6c2ad9);
    color: #fff;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.rp-live-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.rp-live-text strong {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rp-live-text em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rp-live-time {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
}

.rp-live-cta,
.rp-wins-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    margin-top: 0;
    flex: 0 0 auto;
    border-radius: 9px;
    background: linear-gradient(180deg, #3ee589, #1c9b54);
    color: #04130a;
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 22px rgba(28, 155, 84, 0.32);
    transition: transform 0.2s ease;
}

.rp-live-cta:hover,
.rp-wins-cta:hover {
    transform: translateY(-1px);
}

.rp-live-cta em,
.rp-wins-cta em {
    font-style: normal;
    transition: transform 0.2s ease;
}

.rp-live-cta:hover em,
.rp-wins-cta:hover em {
    transform: translateX(3px);
}

/* Recent wins items */
.rp-wins-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rp-wins-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.rp-wins-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 9px;
    padding: 4px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transform: translateY(6px);
    animation: rpFadeIn 0.5s ease forwards;
}

.rp-wins-thumb {
    display: block;
    overflow: hidden;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #0a142e;
}

.rp-wins-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-wins-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.rp-wins-info strong {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.rp-wins-info em {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rp-wins-info b {
    color: #ffe07a;
    font-weight: 950;
}

/* ============================================================
   Dense game tiles (Popular Pokies / Bonus Buy / Megaways)
   ============================================================ */

.rp-tile-section {
    background: linear-gradient(180deg, #07112e 0%, #0b173a 100%);
    padding: 22px 0;
    color: #fff;
}

.rp-tile-section + .rp-tile-section {
    padding-top: 6px;
}

.rp-tile-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.rp-tile-titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rp-tile-title {
    margin: 0;
    color: #fff;
    font-size: clamp(17px, 1.7vw, 21px);
    font-weight: 950;
    letter-spacing: -0.005em;
}

.rp-tile-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
}

.rp-tile-all {
    flex: 0 0 auto;
    color: #7fe2ff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.rp-tile-all:hover {
    text-decoration: underline;
}

/* Desktop: 6 cards per row → 2 rows of 6 = 12 cards filled */
.rp-tile-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.rp-tile-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 6px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rp-tile-card:hover,
.rp-tile-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 226, 122, 0.5);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
    outline: none;
}

.rp-tile-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #0a142e;
}

.rp-tile-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.25s ease;
}

.rp-tile-card:hover .rp-tile-thumb img,
.rp-tile-card:focus-visible .rp-tile-thumb img {
    transform: scale(1.06);
    filter: brightness(0.92);
}

.rp-tile-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 5px;
    background: rgba(4, 14, 32, 0.82);
    padding: 2px 6px;
    color: #ffe58a;
    font-size: 9px;
    font-weight: 950;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.rp-tile-name {
    margin: 0 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rp-tile-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    border-radius: 7px;
    background: linear-gradient(180deg, #3ee589, #1c9b54);
    color: #04130a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================================
   Top RocketPlay sections strip
   ============================================================ */

.rp-hero-sections {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #06112a;
}

.rp-hero-sections-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    overflow-x: auto;
}

.rp-hero-sections-title {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rp-hero-sections-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.rp-hero-sections-row a {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 229, 138, 0.32);
    border-radius: 999px;
    background: rgba(255, 229, 138, 0.07);
    padding: 8px 14px;
    color: #ffe58a;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rp-hero-sections-row a:hover {
    background: linear-gradient(180deg, #ffe58a, #d99a25);
    border-color: transparent;
    color: #09152d;
}

/* ============================================================
   Mobile / tablet responsive
   ============================================================ */

@media (max-width: 1180px) {
    .rp-tile-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .rp-hero-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rp-live-band-grid {
        grid-template-columns: 1fr;
    }

    .rp-tile-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .rp-hero {
        padding: 20px 0 18px;
    }

    .rp-hero-copy {
        gap: 10px;
    }

    .rp-hero-h1 {
        font-size: clamp(28px, 7.6vw, 36px);
    }

    .rp-hero-tagline {
        order: 8;
        font-size: 14px;
    }

    .rp-hero-offer {
        padding: 12px 14px;
    }

    .rp-hero-offer-amount {
        font-size: clamp(30px, 8vw, 38px);
    }

    .rp-hero-cta {
        gap: 8px;
    }

    .rp-hero-cta .btn {
        flex: 1 1 0;
        min-width: 0;
        min-height: 50px;
        padding: 12px 18px;
        font-size: 15px;
    }

    .rp-hero-trust {
        gap: 6px;
    }

    .rp-hero-trust li {
        padding: 6px 9px;
        font-size: 11px;
    }

    .rp-hero-disclaimer {
        font-size: 10px;
    }

    .rp-preview-card {
        padding: 14px;
        gap: 8px;
    }

    .rp-preview-title {
        font-size: 14px;
    }

    .rp-preview-row {
        padding: 8px 10px;
    }

    .rp-preview-row-bonus .rp-preview-row-body strong {
        font-size: 14px;
    }

    .rp-preview-cta {
        min-height: 48px;
        font-size: 15px;
    }

    .rp-promo-scene {
        min-height: auto;
    }

    .rp-promo-scene::after {
        right: -92px;
        bottom: -92px;
        width: 230px;
        height: 230px;
        opacity: 0.72;
    }

    .rp-scene-stage {
        grid-template-columns: 1fr 112px;
        gap: 9px;
        min-height: 132px;
    }

    .rp-scene-reels {
        gap: 6px;
        padding: 7px;
        border-radius: 14px;
    }

    .rp-scene-reel {
        border-radius: 10px;
    }

    .rp-scene-wheel {
        width: 112px;
        height: 112px;
    }

    .rp-scene-wheel span {
        width: 54px;
        height: 54px;
        font-size: 12px;
    }

    .rp-scene-jackpot {
        right: 72px;
        bottom: 78px;
        min-width: 76px;
        padding: 7px 8px;
    }

    .rp-scene-jackpot strong {
        font-size: 20px;
    }

    .rp-scene-offer,
    .rp-scene-cta {
        width: 100%;
    }

    .rp-scene-offer strong {
        font-size: 38px;
    }

    .rp-scene-offer em {
        font-size: 15px;
    }

    .rp-live-band {
        padding: 14px 0;
    }

    .rp-live-card,
    .rp-wins-card {
        padding: 12px;
        max-height: none;
    }

    .rp-live-feed {
        max-height: 200px;
    }

    .rp-tile-section {
        padding: 16px 0;
    }

    .rp-tile-title {
        font-size: 16px;
    }

    .rp-tile-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .rp-hero-sections-inner {
        gap: 10px;
        padding: 10px 0;
    }

    .rp-hero-sections-title {
        font-size: 10px;
    }

    .rp-hero-sections-row a {
        padding: 7px 11px;
        font-size: 12px;
    }
}

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

@keyframes rpLivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(49, 229, 154, 0.55), 0 0 10px rgba(49, 229, 154, 0.85); }
    50%      { box-shadow: 0 0 0 6px rgba(49, 229, 154, 0), 0 0 14px rgba(49, 229, 154, 0.95); }
}

@keyframes rpSceneShine {
    0%, 42%, 100% { transform: translateX(-18%); opacity: 0.2; }
    58% { transform: translateX(18%); opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
    .rp-live-dot,
    .rp-live-msg,
    .rp-wins-row,
    .rp-promo-scene::before,
    .rp-scene-coin {
        animation: none;
    }

    .rp-live-msg,
    .rp-wins-row {
        opacity: 1;
        transform: none;
    }
}
