:root {
    --bg: #101318;
    --bg-2: #151922;
    --card: #191f2a;
    --card-2: #11161f;
    --text: #f6f1e8;
    --muted: #b8b0a3;
    --muted-2: #827a70;
    --line: rgba(255, 255, 255, .1);
    --accent: #d7aa5f;
    --accent-2: #f0c979;
    --green: #42c987;
    --red: #e76b6b;
    --radius: 20px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent-2);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    z-index: 1000;
    background: var(--accent);
    color: #111;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 900;
}

.skip-link:focus {
    top: 16px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 19, 24, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #12100c;
    font-weight: 1000;
    letter-spacing: -.05em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: .78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--muted);
    padding: 9px 12px;
    border-radius: 10px;
    font-size: .94rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

/* Base typography */

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.12;
    letter-spacing: -.035em;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
}

p {
    margin-top: 0;
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent-2);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
}

/* Buttons */

.btn {
    min-height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border-color: rgba(134, 239, 172, .5);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #24cc63 0%, #16a34a 100%);
    color: #fff;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, .05);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .09);
}

/* Hero */

.hero {
    padding: 38px 0 28px;
    background:
            radial-gradient(circle at 50% 0%, rgba(215, 170, 95, .12), transparent 340px),
            linear-gradient(180deg, #11151c 0%, #101318 100%);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: block;
}

.hero-copy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 14px;
}

.hero .lead {
    max-width: 660px;
    margin: 0 auto;
    color: #ddd6cb;
    font-size: 1.06rem;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin: 22px 0 0;
}

.hero .btn-primary {
    min-width: 230px;
}

/* Offers section */

.offers-section {
    padding: 64px 0;
    background:
            radial-gradient(circle at 8% 0%, rgba(215, 170, 95, .08), transparent 360px),
            #0d1016;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.offers-section .section-title {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.offers-section .section-title h2 {
    margin-bottom: 12px;
}

.offers-section .section-title p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.casino-list {
    display: grid;
    gap: 14px;
}

.casino-row {
    display: grid;
    grid-template-columns: 54px 150px minmax(320px, 1fr) 104px 210px;
    grid-template-areas: "rank logo main rating cta";
    align-items: center;
    gap: 18px;
    min-height: 126px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background:
            linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)),
            #171d27;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.casino-row:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 170, 95, .34);
    background:
            linear-gradient(90deg, rgba(215, 170, 95, .055), rgba(255, 255, 255, .02)),
            #18202b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
}

.rank {
    grid-area: rank;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    background: #0c1017;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--accent-2);
    font-weight: 1000;
    font-size: 1rem;
}

.casino-logo {
    grid-area: logo;
    width: 150px;
    height: 78px;
    padding: 12px;
    border-radius: 16px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)),
            #0a0f16;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    width: auto;
    max-width: 128px;
    max-height: 56px;
    object-fit: contain;
}

.casino-main {
    grid-area: main;
    min-width: 0;
}

.casino-main h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.15;
}

.bonus-label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted-2);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.casino-bonus {
    margin: 0 0 10px;
    color: var(--accent-2);
    font-weight: 1000;
    font-size: 1.16rem;
    line-height: 1.3;
}

.casino-main ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.casino-main li {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--muted);
    font-size: .82rem;
    line-height: 1;
}

.casino-rating {
    grid-area: rating;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 5px;
    min-width: 100px;
    text-align: center;
}

.casino-rating .stars {
    color: #f5c84c;
    font-size: 1.22rem;
    line-height: 1;
    letter-spacing: .06em;
    white-space: nowrap;
}

.casino-rating strong {
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1;
    font-weight: 1000;
}

.casino-cta {
    grid-area: cta;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.casino-row .btn-offer {
    width: 100%;
    max-width: 210px;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 16px;
    text-align: center;
    white-space: nowrap;
    font-size: .98rem;
    font-weight: 1000;
    letter-spacing: .03em;
    color: #ffffff;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border: 1px solid rgba(134, 239, 172, .5);
    box-shadow: none;
    animation: ctaSoftMove 1.8s ease-in-out infinite;
}

.casino-row .btn-offer:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #24cc63 0%, #16a34a 100%);
    border-color: rgba(187, 247, 208, .75);
    transform: translateY(-1px);
    box-shadow: none;
}

.casino-row .btn-offer:active {
    transform: translateY(0);
}

@keyframes ctaSoftMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .casino-row .btn-offer {
        animation: none;
    }
}

.offers-section .affiliate-note {
    max-width: 780px;
    margin: 20px auto 0;
    text-align: center;
    color: var(--muted-2);
    font-size: .9rem;
}

/* FAQ */

.faq-section details {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    overflow: hidden;
}

.faq-section summary {
    cursor: pointer;
    padding: 17px 18px;
    font-weight: 900;
}

.faq-section details p {
    padding: 0 18px 18px;
    margin: 0;
}

/* Footer */

.site-footer {
    padding: 50px 0 26px;
    background: #090c11;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .7fr .7fr;
    gap: 34px;
    align-items: start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-brand img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: contain;
    flex: 0 0 52px;
}

.footer-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.footer-brand strong {
    color: var(--text);
    font-size: 1rem;
}

.footer-brand small {
    color: var(--muted);
    font-size: .78rem;
}

.footer-about p {
    max-width: 460px;
    margin-bottom: 0;
}

.site-footer h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted-2);
    font-size: .88rem;
}

@media (max-width: 1020px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .toc-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .toc-card strong {
        grid-column: 1 / -1;
    }

    .casino-row {
        grid-template-columns: 46px 126px minmax(0, 1fr) 86px 160px;
        grid-template-areas: "rank logo main rating cta";
        gap: 14px;
        padding: 16px;
    }

    .casino-logo {
        width: 126px;
        height: 72px;
    }

    .casino-logo img {
        max-width: 108px;
        max-height: 50px;
    }

    .casino-main h3 {
        font-size: 1.08rem;
    }

    .casino-bonus {
        font-size: 1rem;
    }

    .casino-main li {
        font-size: .76rem;
        padding: 5px 8px;
    }

    .casino-rating {
        min-width: 86px;
    }

    .casino-rating .stars {
        font-size: 1rem;
    }

    .casino-rating strong {
        font-size: .92rem;
    }

    .casino-row .btn-offer {
        max-width: 160px;
        min-height: 50px;
        font-size: .88rem;
        padding: 12px 14px;
    }

    .image-text,
    .image-text.reverse {
        grid-template-columns: 1fr;
    }

    .image-card {
        min-height: 220px;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #101318;
    }

    .main-nav.is-open {
        display: flex;
    }

    .hero {
        padding: 24px 0 18px;
    }

    .hero h1 {
        margin-bottom: 10px;
        font-size: 2.15rem;
    }

    .hero .lead {
        max-width: 340px;
        font-size: .94rem;
        line-height: 1.45;
    }

    .hero-actions {
        margin-top: 16px;
    }

    .hero .btn-primary {
        width: 100%;
        min-width: 0;
        min-height: 48px;
    }

    .offers-section {
        padding: 46px 0;
    }

    .casino-row {
        grid-template-columns: 38px 132px minmax(0, 1fr);
        grid-template-areas:
            "rank logo rating"
            "main main main"
            "cta cta cta";
        align-items: center;
        column-gap: 8px;
        row-gap: 12px;
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
    }

    .rank {
        width: 34px;
        height: 34px;
        justify-self: start;
        align-self: center;
        font-size: .88rem;
    }

    .casino-logo {
        width: 132px;
        height: 70px;
        justify-self: start;
        padding: 8px;
        border-radius: 14px;
    }

    .casino-logo img {
        max-width: 108px;
        max-height: 48px;
    }

    .casino-rating {
        justify-self: end;
        min-width: 72px;
        gap: 4px;
    }

    .casino-rating .stars {
        font-size: .88rem;
        letter-spacing: .01em;
    }

    .casino-rating strong {
        font-size: .84rem;
    }

    .casino-main {
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .09);
        text-align: center;
    }

    .casino-main h3 {
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .bonus-label {
        margin-bottom: 5px;
        font-size: .72rem;
        text-align: center;
    }

    .casino-bonus {
        margin: 0 auto 12px;
        text-align: center;
        font-size: .96rem;
        line-height: 1.32;
    }

    .casino-main ul {
        justify-content: center;
        gap: 6px;
    }

    .casino-main li {
        min-height: 23px;
        padding: 4px 7px;
        font-size: .72rem;
    }

    .casino-cta {
        width: 100%;
        justify-content: stretch;
    }

    .casino-row .btn-offer {
        width: 100%;
        max-width: none;
        min-height: 52px;
        border-radius: 14px;
        font-size: .95rem;
    }

    .toc-card,
    .pros-cons,
    .bonus-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .responsible-box,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Small mobile */

@media (max-width: 420px) {
    h1 {
        font-size: 2.05rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .brand-text small {
        display: none;
    }

    .casino-row {
        grid-template-columns: 36px 118px minmax(0, 1fr);
        padding: 13px;
    }

    .casino-logo {
        width: 118px;
        height: 66px;
    }

    .casino-logo img {
        max-width: 98px;
        max-height: 44px;
    }

    .casino-rating .stars {
        font-size: .8rem;
    }

    .casino-rating strong {
        font-size: .78rem;
    }

    .casino-bonus {
        font-size: .92rem;
    }

    .article-content p {
        font-size: 1rem;
    }
}

.responsible-section {
    padding: 58px 0;
    background:
            radial-gradient(circle at 12% 0%, rgba(215, 170, 95, .08), transparent 340px),
            var(--bg);
}

.responsible-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 26px;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
            #171d27;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 22px;
}

.responsible-content h2 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.responsible-content p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
}

.age-badge {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    border-radius: 22px;
    border: 1px solid rgba(231, 107, 107, .42);
    background:
            linear-gradient(180deg, rgba(231, 107, 107, .16), rgba(231, 107, 107, .07));
    color: #ffd0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 1000;
}

.responsible-points {
    display: grid;
    gap: 12px;
}

.responsible-points div {
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(10, 15, 22, .55);
}

.responsible-points strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: .98rem;
}

.responsible-points span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .responsible-box {
        grid-template-columns: 1fr;
    }

    .responsible-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .responsible-section {
        padding: 42px 0;
    }

    .responsible-box {
        padding: 20px;
        border-radius: 22px;
    }

    .responsible-content {
        align-items: flex-start;
        gap: 16px;
    }

    .age-badge {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        border-radius: 18px;
        font-size: 1.35rem;
    }

    .responsible-content h2 {
        font-size: 1.55rem;
    }

    .responsible-content p {
        font-size: .95rem;
    }

    .responsible-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .responsible-content {
        display: grid;
        justify-items: start;
    }

    .age-badge {
        margin-bottom: 2px;
    }
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-about p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer h3 {
        text-align: center;
    }

    .site-footer ul {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 19, 24, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    position: relative;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    min-width: 0;
}

.brand-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 13px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    color: var(--text);
    font-size: 1rem;
    white-space: nowrap;
}

.brand-text small {
    color: var(--muted);
    font-size: .78rem;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--muted);
    padding: 9px 12px;
    border-radius: 10px;
    font-size: .94rem;
    transition: .18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
    transform: translateX(-50%);
    transition: top .2s ease, transform .2s ease, opacity .16s ease;
}

.nav-toggle span:nth-child(1) {
    top: 13px;
}

.nav-toggle span:nth-child(2) {
    top: 20px;
}

.nav-toggle span:nth-child(3) {
    top: 27px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}
@media (max-width: 760px) {
    .header-inner {
        min-height: 68px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-text strong {
        font-size: .96rem;
    }

    .brand-text small {
        font-size: .74rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #151922;
        box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px 14px;
        border-radius: 12px;
        color: var(--text);
        background: rgba(255, 255, 255, .045);
        border: 1px solid rgba(255, 255, 255, .06);
        font-weight: 800;
    }

    .main-nav a:hover,
    .main-nav a[aria-current="page"] {
        color: #12100c;
        background: var(--accent);
        border-color: rgba(240, 201, 121, .45);
    }
}

@media (max-width: 420px) {
    .brand-text small {
        display: none;
    }
}
/* Clean header logo + burger fix */

.brand-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    object-fit: contain;
}

.brand-mark {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    flex: 0 0 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: #191f2a;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
    transform-origin: center;
    transition: transform .2s ease, opacity .16s ease;
}

.nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-7px);
}

.nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 0 0 18px 18px;
        background: #101318;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .34);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 14px;
        border-radius: 12px;
        color: var(--text);
        background: #1a202b;
        border: 1px solid rgba(255, 255, 255, .08);
        font-weight: 900;
    }

    .main-nav a:hover,
    .main-nav a[aria-current="page"] {
        color: #ffffff;
        background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
        border-color: rgba(134, 239, 172, .45);
    }
}

/* Clean burger + mobile menu final fix */

.nav-toggle {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 14px !important;
    background: #1a202b !important;
    cursor: pointer !important;
    flex: 0 0 44px !important;
    line-height: 0 !important;
}

.nav-toggle span {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #f6f1e8 !important;
    transform-origin: center !important;
    transition: transform .2s ease, opacity .15s ease !important;
}

.nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-7px) !important;
}

.nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%) !important;
}

.nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) translateY(7px) !important;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block !important;
    }

    .main-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        display: none !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 12px !important;
        border: 1px solid rgba(255, 255, 255, .1) !important;
        border-radius: 0 0 18px 18px !important;
        background: #101318 !important;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .34) !important;
    }

    .main-nav.is-open {
        display: flex !important;
    }

    .main-nav a {
        min-height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
        color: var(--text) !important;
        background: #1a202b !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        font-weight: 900 !important;
        text-align: center !important;
    }

    .main-nav a:hover,
    .main-nav a[aria-current="page"] {
        color: #fff !important;
        background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
        border-color: rgba(134, 239, 172, .45) !important;
    }
}
/* Info / SEO block */

.info-section {
    padding: 66px 0;
    background:
            radial-gradient(circle at 90% 0%, rgba(215, 170, 95, .08), transparent 360px),
            #0d1016;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.info-shell {
    display: grid;
    gap: 28px;
}

/* Text block */

.info-block {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 26px;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
            var(--card);
}

.info-center {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.info-center p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.info-center p:last-child {
    margin-bottom: 0;
}

/* Big image between blocks - no cropping */

.info-wide-photo {
    margin: 0;
    padding: 12px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: var(--card-2);
}

.info-wide-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* Highlight */

.info-highlight {
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(215, 170, 95, .28);
    background: rgba(215, 170, 95, .09);
    color: #e8dfd1;
}

.info-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
    font-size: 1.05rem;
}

.info-highlight span {
    color: #e8dfd1;
}

/* Cards */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: var(--card);
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    margin-bottom: 0;
    font-size: .96rem;
}

/* Pros / cons */

.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pros,
.cons {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
}

.pros {
    border-color: rgba(66, 201, 135, .3);
}

.cons {
    border-color: rgba(231, 107, 107, .3);
}

.pros ul,
.cons ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pros li,
.cons li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--muted);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.cons li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}

/* Bottom block */

.info-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: var(--card);
}

.info-bottom p:last-child {
    margin-bottom: 0;
}

.payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.payment-tags span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: var(--card-2);
    font-weight: 800;
    font-size: .9rem;
}

/* FAQ */

.info-faq {
    display: grid;
    gap: 12px;
}

.info-faq h2 {
    margin-bottom: 6px;
    text-align: center;
}

.info-faq details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    overflow: hidden;
}

.info-faq summary {
    cursor: pointer;
    padding: 17px 18px;
    font-weight: 900;
}

.info-faq details p {
    padding: 0 18px 18px;
    margin: 0;
}

/* Adaptive */

@media (max-width: 1020px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .info-section {
        padding: 46px 0;
    }

    .info-shell {
        gap: 18px;
    }

    .info-block,
    .info-card,
    .pros,
    .cons,
    .info-bottom {
        padding: 20px;
        border-radius: 20px;
    }

    .info-center {
        text-align: left;
    }

    .info-wide-photo {
        padding: 8px;
        border-radius: 20px;
    }

    .info-wide-photo img {
        border-radius: 12px;
    }

    .info-columns {
        grid-template-columns: 1fr;
    }

    .info-highlight {
        padding: 18px;
        border-radius: 18px;
    }

    .info-block h2,
    .info-bottom h2,
    .info-faq h2 {
        font-size: 1.55rem;
    }
}

@media (max-width: 420px) {
    .payment-tags span {
        font-size: .82rem;
    }
}
.info-wide-photo-small {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 760px) {
    .hero-copy,
    .offers-section .section-title,
    .info-block,
    .info-card h3,
    .pros h3,
    .cons h3,
    .info-bottom h2,
    .info-faq h2,
    .responsible-content h2,
    .footer-col h3 {
        text-align: center;
    }

    .info-center {
        text-align: center;
    }

    .info-card p,
    .info-bottom p,
    .info-faq p,
    .responsible-content p {
        text-align: center;
    }

    .pros ul,
    .cons ul {
        text-align: left;
    }

    .payment-tags {
        justify-content: center;
    }
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.check-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card-2);
}

.check-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
}

.check-grid span {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

@media (max-width: 1020px) {
    .check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .check-grid {
        grid-template-columns: 1fr;
    }

    .check-grid div {
        text-align: center;
    }
}
/* Center section headings */

.info-block h2,
.info-card h3,
.pros h3,
.cons h3,
.info-bottom h2,
.info-faq h2,
.responsible-content h2 {
    text-align: center;
}
/* Subpage hero */

.subpage-hero {
    padding: 54px 0;
    background:
            radial-gradient(circle at 85% 20%, rgba(66, 201, 135, .12), transparent 360px),
            linear-gradient(180deg, #11151c 0%, #0d1016 100%);
    border-bottom: 1px solid var(--line);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted-2);
    font-size: .9rem;
}

.breadcrumbs a {
    color: var(--accent-2);
}

.breadcrumbs span::before {
    content: "/";
    margin-right: 8px;
    color: var(--muted-2);
}

.subpage-copy h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.6vw, 4.1rem);
}

.subpage-copy p {
    max-width: 720px;
    color: #ddd6cb;
    font-size: 1.08rem;
}

.subpage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.subpage-facts {
    display: grid;
    gap: 12px;
}

.subpage-facts div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background:
            linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
            var(--card);
}

.subpage-facts span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-2);
    font-weight: 1000;
    font-size: .82rem;
    letter-spacing: .08em;
}

.subpage-facts strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.05rem;
}

.subpage-facts p {
    margin: 0;
    font-size: .9rem;
}

/* Guide layout */

.guide-section {
    padding: 66px 0;
    background: #0d1016;
}

.guide-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.guide-side {
    position: sticky;
    top: 96px;
}

.guide-side-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--card);
}

.guide-side-card span {
    margin-bottom: 6px;
    color: var(--accent-2);
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.guide-side-card a {
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--muted);
    background: rgba(255,255,255,.035);
}

.guide-side-card a:hover {
    color: var(--text);
    background: rgba(255,255,255,.07);
}

.guide-content {
    display: grid;
    gap: 24px;
}

.guide-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
            var(--card);
}

.guide-card-dark {
    background:
            linear-gradient(135deg, rgba(215,170,95,.06), rgba(255,255,255,.018)),
            #151922;
}

.guide-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c1017;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--accent-2);
    font-weight: 1000;
}

.guide-card h2 {
    margin-bottom: 14px;
}

.guide-card p:last-child {
    margin-bottom: 0;
}

.compare-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #101620;
}

.compare-table th,
.compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
    color: var(--muted);
}

.compare-table th {
    color: var(--text);
    background: rgba(255,255,255,.04);
}

.guide-photo {
    margin: 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card-2);
}

.guide-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.guide-photo-small {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.mini-grid,
.check-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mini-grid {
    grid-template-columns: repeat(3, 1fr);
}

.check-list {
    grid-template-columns: repeat(2, 1fr);
}

.mini-grid div,
.check-list div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card-2);
}

.mini-grid strong,
.check-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
}

.mini-grid span,
.check-list p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

/* Responsive */

@media (max-width: 1020px) {
    .subpage-hero-grid,
    .guide-layout {
        grid-template-columns: 1fr;
    }

    .guide-side {
        position: static;
    }

    .guide-side-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .guide-side-card span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .subpage-hero {
        padding: 34px 0;
    }

    .subpage-copy {
        text-align: center;
    }

    .subpage-copy p {
        font-size: .96rem;
    }

    .subpage-actions {
        justify-content: center;
    }

    .subpage-actions .btn {
        width: 100%;
    }

    .subpage-facts {
        gap: 10px;
    }

    .guide-section {
        padding: 46px 0;
    }

    .guide-side-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guide-card {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .guide-number {
        margin: 0 auto;
    }

    .mini-grid,
    .check-list {
        grid-template-columns: 1fr;
    }

    .guide-photo {
        padding: 8px;
        border-radius: 20px;
    }

    .guide-photo img {
        border-radius: 12px;
    }
}
/* FINAL FIX: guide-section mobile/tablet overflow */

.guide-section,
.guide-layout,
.guide-content,
.guide-card,
.guide-card > div,
.compare-table-wrap,
.compare-table,
.mini-grid,
.check-list {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.guide-section {
    overflow-x: hidden;
}

.guide-card h2,
.guide-card p,
.compare-table td,
.compare-table th {
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Tablet */
@media (max-width: 1020px) {
    .guide-layout {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .guide-side {
        position: static;
        width: 100%;
    }

    .guide-side-card {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .guide-side-card span {
        grid-column: 1 / -1;
        text-align: center;
    }

    .guide-content {
        width: 100%;
    }

    .guide-card {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .guide-section {
        padding: 38px 0;
    }

    .guide-layout {
        width: 100%;
        display: block !important;
    }

    .guide-side {
        margin-bottom: 18px;
    }

    .guide-side-card {
        display: grid;
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 18px;
        text-align: center;
    }

    .guide-side-card a {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .guide-content {
        display: grid;
        gap: 18px;
        width: 100%;
    }

    .guide-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        padding: 18px;
        border-radius: 20px;
        text-align: center;
        overflow: hidden;
    }

    .guide-card > div {
        width: 100%;
    }

    .guide-number {
        width: 42px;
        height: 42px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .guide-card h2 {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.42rem;
        line-height: 1.18;
        text-align: center;
    }

    .guide-card p {
        width: 100%;
        max-width: 100%;
        font-size: .94rem;
        line-height: 1.55;
        text-align: center;
    }

    .mini-grid,
    .check-list {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .mini-grid div,
    .check-list div {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .guide-photo {
        width: 100%;
        padding: 8px;
        border-radius: 20px;
    }

    .guide-photo img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .guide-photo-small {
        max-width: 100%;
    }

    /* compare table as mobile cards */
    .compare-table-wrap {
        width: 100%;
        overflow: visible !important;
        border: 0;
        background: transparent;
    }

    .compare-table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        background: transparent;
    }

    .compare-table thead {
        display: none !important;
    }

    .compare-table tbody {
        display: grid !important;
        width: 100%;
        gap: 10px;
    }

    .compare-table tr {
        display: grid !important;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--card-2);
        box-sizing: border-box;
    }

    .compare-table td {
        display: block !important;
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        border: 0 !important;
        text-align: center;
        font-size: .92rem;
        line-height: 1.45;
        box-sizing: border-box;
    }

    .compare-table td:first-child {
        color: var(--accent-2);
        font-weight: 1000;
        font-size: 1rem;
    }

    .compare-table td:nth-child(2)::before {
        content: "Casino ohne OASIS:";
        display: block;
        margin-bottom: 4px;
        color: var(--text);
        font-weight: 900;
    }

    .compare-table td:nth-child(3)::before {
        content: "Deutsche Anbieter:";
        display: block;
        margin-bottom: 4px;
        color: var(--text);
        font-weight: 900;
    }
}

@media (max-width: 420px) {
    .guide-card {
        padding: 16px;
    }

    .guide-card h2 {
        font-size: 1.32rem;
    }

    .guide-card p {
        font-size: .92rem;
    }

    .compare-table tr {
        padding: 13px;
    }
}

/* Offshore Casinos page */

.offshore-hero {
    padding: 56px 0;
    background:
            radial-gradient(circle at 82% 20%, rgba(215, 170, 95, .14), transparent 380px),
            radial-gradient(circle at 8% 0%, rgba(66, 201, 135, .09), transparent 340px),
            linear-gradient(180deg, #11151c 0%, #0d1016 100%);
    border-bottom: 1px solid var(--line);
}

.offshore-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 34px;
    align-items: center;
}

.offshore-hero-copy h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.8vw, 4.25rem);
}

.offshore-hero-copy p {
    max-width: 730px;
    color: #ddd6cb;
    font-size: 1.08rem;
}

.offshore-hero-panel {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(215, 170, 95, .24);
    background:
            linear-gradient(135deg, rgba(215, 170, 95, .10), rgba(255, 255, 255, .025)),
            var(--card);
}

.offshore-hero-panel > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(215, 170, 95, .12);
    color: var(--accent-2);
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.offshore-hero-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1.15;
}

.offshore-hero-panel p {
    margin-bottom: 18px;
}

.offshore-panel-tags,
.offshore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offshore-panel-tags span,
.offshore-tags span {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card-2);
    color: var(--text);
    font-size: .86rem;
    font-weight: 800;
}

.offshore-section {
    padding: 66px 0;
    background: #0d1016;
}

.offshore-intro {
    max-width: 960px;
    margin: 0 auto 28px;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .1);
    background:
            linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
            var(--card);
    text-align: center;
}

.offshore-intro p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.offshore-intro p:last-child {
    margin-bottom: 0;
}

.offshore-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.offshore-feature-grid article {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: var(--card);
}

.offshore-feature-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-2);
    font-weight: 1000;
    font-size: .82rem;
    letter-spacing: .08em;
}

.offshore-feature-grid h3 {
    margin-bottom: 10px;
}

.offshore-feature-grid p {
    margin: 0;
    font-size: .94rem;
}

.offshore-wide-photo {
    margin: 28px 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card-2);
}

.offshore-wide-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.offshore-photo-small {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.offshore-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    margin-bottom: 28px;
}

.offshore-text-card,
.license-block,
.offshore-payment-section,
.offshore-warning {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: var(--card);
}

.offshore-text-card p:last-child {
    margin-bottom: 0;
}

.offshore-compare {
    display: grid;
    gap: 14px;
}

.offshore-compare div {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--card);
}

.offshore-compare strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-2);
    font-size: 1.05rem;
}

.offshore-compare ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.offshore-compare li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 22px;
    color: var(--muted);
}

.offshore-compare li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.license-block {
    margin-bottom: 28px;
}

.license-heading {
    max-width: 860px;
    margin: 0 auto 22px;
    text-align: center;
}

.license-heading p {
    margin-bottom: 0;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.license-grid article {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card-2);
}

.license-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
}

.license-grid span {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.offshore-payment-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.offshore-payment-section p:last-child {
    margin-bottom: 0;
}

.offshore-warning {
    max-width: 960px;
    margin: 0 auto 32px;
    border-color: rgba(215, 170, 95, .28);
    background: rgba(215, 170, 95, .09);
    text-align: center;
}

.offshore-warning p {
    max-width: 820px;
    margin: 0 auto;
}

/* Offshore responsive */

@media (max-width: 1080px) {
    .offshore-hero-grid,
    .offshore-split,
    .offshore-payment-section {
        grid-template-columns: 1fr;
    }

    .offshore-hero-copy,
    .offshore-hero-panel {
        text-align: center;
    }

    .offshore-hero-copy h1,
    .offshore-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .subpage-actions,
    .offshore-panel-tags,
    .offshore-tags {
        justify-content: center;
    }

    .offshore-feature-grid,
    .license-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .offshore-hero {
        padding: 34px 0;
    }

    .offshore-hero-copy h1 {
        font-size: 2rem;
    }

    .offshore-hero-copy p {
        font-size: .95rem;
        line-height: 1.5;
    }

    .offshore-hero-panel,
    .offshore-intro,
    .offshore-text-card,
    .license-block,
    .offshore-payment-section,
    .offshore-warning {
        padding: 20px;
        border-radius: 20px;
    }

    .offshore-feature-grid,
    .license-grid {
        grid-template-columns: 1fr;
    }

    .offshore-feature-grid article,
    .license-grid article,
    .offshore-compare div {
        text-align: center;
    }

    .offshore-wide-photo {
        padding: 8px;
        border-radius: 20px;
    }

    .offshore-wide-photo img {
        border-radius: 12px;
    }

    .offshore-section {
        padding: 46px 0;
    }

    .offshore-intro {
        text-align: center;
    }

    .offshore-text-card,
    .offshore-payment-section {
        text-align: center;
    }

    .offshore-compare li {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .offshore-hero-copy h1 {
        font-size: 1.82rem;
    }

    .offshore-hero-panel strong {
        font-size: 1.25rem;
    }

    .offshore-feature-grid article,
    .license-grid article {
        padding: 16px;
    }
}
/* Offshore audit page */

.audit-hero {
    padding: 62px 0;
    background:
            linear-gradient(135deg, rgba(16, 19, 24, .98), rgba(13, 16, 22, .98)),
            radial-gradient(circle at 85% 10%, rgba(66, 201, 135, .18), transparent 380px);
    border-bottom: 1px solid var(--line);
}

.audit-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 36px;
    align-items: center;
}

.audit-hero-copy h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.audit-hero-copy p {
    max-width: 760px;
    color: #ddd6cb;
    font-size: 1.08rem;
}

.audit-panel {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(66, 201, 135, .26);
    background:
            linear-gradient(180deg, rgba(66, 201, 135, .1), rgba(255, 255, 255, .025)),
            #121821;
}

.audit-panel-top span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(66, 201, 135, .12);
    color: var(--green);
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.audit-panel-top strong {
    display: block;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1.15;
}

.audit-score-list {
    display: grid;
    gap: 10px;
}

.audit-score-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .07);
}

.audit-score-list b {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #0b1017;
    color: var(--accent-2);
}

.audit-score-list span {
    color: var(--text);
    font-weight: 800;
}

.audit-section {
    padding: 68px 0;
    background: #0d1016;
}

.audit-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.audit-intro > div:first-child,
.audit-intro-note,
.audit-card,
.audit-process,
.red-flags-board,
.player-fit,
.audit-warning {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card);
}

.audit-intro-note {
    border-color: rgba(215, 170, 95, .26);
    background: rgba(215, 170, 95, .08);
}

.audit-intro-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-2);
    font-size: 1.1rem;
}

.audit-intro-note span {
    color: var(--muted);
}

.audit-board {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.audit-board article {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.1);
    background:
            linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
            var(--card);
}

.audit-board span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(66, 201, 135, .1);
    color: var(--green);
    font-size: .78rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.audit-board p {
    margin-bottom: 0;
}

.audit-wide-photo {
    margin: 28px 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card-2);
}

.audit-wide-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.audit-photo-small {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.audit-process {
    margin-bottom: 28px;
}

.audit-process h2 {
    text-align: center;
    margin-bottom: 22px;
}

.audit-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.audit-timeline div {
    position: relative;
    padding: 17px;
    border-radius: 18px;
    background: var(--card-2);
    border: 1px solid var(--line);
}

.audit-timeline span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-2);
    font-weight: 1000;
}

.audit-timeline strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.audit-timeline p {
    margin: 0;
    font-size: .9rem;
}

.red-flags-board {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 28px;
    border-color: rgba(231, 107, 107, .26);
    background:
            linear-gradient(135deg, rgba(231, 107, 107, .08), rgba(255, 255, 255, .018)),
            var(--card);
}

.red-flags-head p {
    margin-bottom: 0;
}

.red-flags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.red-flags-grid div {
    padding: 14px;
    border-radius: 14px;
    background: rgba(231, 107, 107, .08);
    border: 1px solid rgba(231, 107, 107, .2);
    color: #ffd0d0;
    font-weight: 800;
}

.audit-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.audit-card ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.audit-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: var(--muted);
}

.audit-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.audit-card-accent {
    border-color: rgba(215, 170, 95, .26);
}

.audit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.audit-tags span {
    padding: 9px 11px;
    border-radius: 999px;
    background: var(--card-2);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 800;
    font-size: .88rem;
}

.player-fit {
    margin-bottom: 28px;
}

.player-fit h2 {
    text-align: center;
    margin-bottom: 22px;
}

.player-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.player-fit-grid article {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--card-2);
}

.player-fit-grid p {
    margin-bottom: 0;
}

.audit-warning {
    max-width: 980px;
    margin: 0 auto 32px;
    text-align: center;
    border-color: rgba(215, 170, 95, .28);
    background: rgba(215, 170, 95, .09);
}

.audit-warning p {
    max-width: 820px;
    margin: 0 auto;
}

/* Responsive audit page */

@media (max-width: 1080px) {
    .audit-hero-grid,
    .audit-intro,
    .red-flags-board {
        grid-template-columns: 1fr;
    }

    .audit-hero-copy,
    .audit-panel,
    .audit-intro,
    .red-flags-head {
        text-align: center;
    }

    .audit-hero-copy h1,
    .audit-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .subpage-actions {
        justify-content: center;
    }

    .audit-board {
        grid-template-columns: 1fr;
    }

    .audit-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .player-fit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .audit-hero {
        padding: 34px 0;
    }

    .audit-hero-copy {
        text-align: center;
    }

    .audit-hero-copy h1 {
        font-size: 2rem;
    }

    .audit-hero-copy p {
        font-size: .95rem;
        line-height: 1.5;
    }

    .audit-panel,
    .audit-intro > div:first-child,
    .audit-intro-note,
    .audit-card,
    .audit-process,
    .red-flags-board,
    .player-fit,
    .audit-warning {
        padding: 20px;
        border-radius: 20px;
    }

    .audit-section {
        padding: 46px 0;
    }

    .audit-board article,
    .player-fit-grid article {
        text-align: center;
    }

    .audit-timeline,
    .red-flags-grid,
    .audit-split {
        grid-template-columns: 1fr;
    }

    .audit-timeline div,
    .red-flags-grid div {
        text-align: center;
    }

    .audit-wide-photo {
        padding: 8px;
        border-radius: 20px;
    }

    .audit-wide-photo img {
        border-radius: 12px;
    }

    .audit-score-list div {
        justify-content: flex-start;
        text-align: left;
    }

    .audit-tags {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .audit-hero-copy h1 {
        font-size: 1.82rem;
    }

    .audit-panel-top strong {
        font-size: 1.25rem;
    }

    .audit-board article,
    .player-fit-grid article {
        padding: 16px;
    }
}
.audit-photo-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.audit-photo-link .audit-wide-photo {
    transition: transform .18s ease, border-color .18s ease, opacity .18s ease;
}

.audit-photo-link:hover .audit-wide-photo {
    transform: translateY(-2px);
    border-color: rgba(66, 201, 135, .35);
    opacity: .96;
}

.audit-photo-link-small {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
/* Casino bonus page - different layout */

.bonus-hero-v2 {
    padding: 56px 0;
    background:
            radial-gradient(circle at 50% -20%, rgba(215, 170, 95, .22), transparent 420px),
            linear-gradient(180deg, #11151c 0%, #0d1016 100%);
    border-bottom: 1px solid var(--line);
}

.bonus-breadcrumbs {
    justify-content: center;
    margin-bottom: 18px;
}

.bonus-ticket-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 32px;
    border: 1px dashed rgba(215, 170, 95, .42);
    background:
            linear-gradient(135deg, rgba(215, 170, 95, .12), rgba(255, 255, 255, .025)),
            #121821;
    overflow: hidden;
}

.bonus-ticket-hero::before,
.bonus-ticket-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d1016;
    border: 1px solid rgba(215, 170, 95, .28);
    transform: translateY(-50%);
}

.bonus-ticket-hero::before {
    left: -22px;
}

.bonus-ticket-hero::after {
    right: -22px;
}

.bonus-ticket-left {
    text-align: center;
}

.bonus-ticket-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(215, 170, 95, .13);
    color: var(--accent-2);
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bonus-ticket-left h1 {
    max-width: 820px;
    margin: 0 auto 16px;
    font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.bonus-ticket-left p {
    max-width: 760px;
    margin: 0 auto;
    color: #ddd6cb;
    font-size: 1.05rem;
}

.bonus-ticket-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bonus-ticket-right {
    display: grid;
    gap: 12px;
}

.bonus-ticket-right div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.bonus-ticket-right strong {
    display: block;
    color: var(--accent-2);
    font-size: 2rem;
    line-height: 1;
}

.bonus-ticket-right span {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-weight: 800;
}

.bonus-checkout-section {
    padding: 66px 0;
    background: #0d1016;
}

.bonus-formula {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    align-items: center;
    margin-bottom: 26px;
}

.bonus-formula > div:first-child,
.formula-box,
.bonus-good,
.bonus-bad,
.bonus-types-strip,
.bonus-check-steps,
.bonus-final-note {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card);
}

.formula-box {
    text-align: center;
    border-color: rgba(215, 170, 95, .3);
    background: rgba(215, 170, 95, .08);
}

.formula-box span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-2);
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.formula-box strong {
    display: block;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.3;
}

.bonus-rules-table {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.rule-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--line);
}

.rule-row span {
    color: var(--muted);
}

.rule-row span:first-child {
    color: var(--accent-2);
    font-weight: 900;
}

.rule-head {
    background: #151b25;
}

.rule-head span {
    color: var(--text);
    font-weight: 1000;
}

.bonus-photo-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.bonus-wide-photo {
    margin: 28px 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--card-2);
    transition: transform .18s ease, border-color .18s ease, opacity .18s ease;
}

.bonus-wide-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.bonus-photo-link:hover .bonus-wide-photo {
    transform: translateY(-2px);
    border-color: rgba(66, 201, 135, .35);
    opacity: .96;
}

.bonus-photo-small,
.bonus-photo-link-small {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-good-bad {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.bonus-good {
    border-color: rgba(66, 201, 135, .28);
    background:
            linear-gradient(135deg, rgba(66, 201, 135, .08), rgba(255,255,255,.018)),
            var(--card);
}

.bonus-bad {
    border-color: rgba(231, 107, 107, .28);
    background:
            linear-gradient(135deg, rgba(231, 107, 107, .08), rgba(255,255,255,.018)),
            var(--card);
}

.bonus-good ul,
.bonus-bad ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.bonus-good li,
.bonus-bad li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: var(--muted);
}

.bonus-good li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 1000;
}

.bonus-bad li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 1000;
}

.bonus-types-strip {
    margin-bottom: 28px;
}

.bonus-types-strip h2,
.bonus-check-steps h2 {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.bonus-strip div {
    padding: 16px;
    border-radius: 16px;
    background: var(--card-2);
    border: 1px solid var(--line);
}

.bonus-strip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-2);
}

.bonus-strip span {
    color: var(--muted);
    font-size: .9rem;
}

.bonus-check-steps {
    margin-bottom: 28px;
}

.bonus-check-steps ol {
    counter-reset: bonusSteps;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bonus-check-steps li {
    counter-increment: bonusSteps;
    display: grid;
    grid-template-columns: 54px minmax(0, 220px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--card-2);
}

.bonus-check-steps li::before {
    content: counter(bonusSteps, decimal-leading-zero);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #0b1017;
    color: var(--accent-2);
    font-weight: 1000;
}

.bonus-check-steps strong {
    color: var(--text);
}

.bonus-check-steps span {
    color: var(--muted);
}

.bonus-final-note {
    max-width: 980px;
    margin: 0 auto 32px;
    text-align: center;
    border-color: rgba(215, 170, 95, .28);
    background: rgba(215, 170, 95, .09);
}

.bonus-final-note p {
    max-width: 820px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .bonus-ticket-hero,
    .bonus-formula {
        grid-template-columns: 1fr;
    }

    .bonus-ticket-right {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonus-good-bad {
        grid-template-columns: 1fr;
    }

    .rule-row {
        grid-template-columns: 180px minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .bonus-hero-v2 {
        padding: 34px 0;
    }

    .bonus-ticket-hero {
        padding: 22px;
        border-radius: 24px;
    }

    .bonus-ticket-left h1 {
        font-size: 2rem;
    }

    .bonus-ticket-left p {
        font-size: .95rem;
        line-height: 1.5;
    }

    .bonus-ticket-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bonus-ticket-actions .btn {
        width: 100%;
    }

    .bonus-ticket-right {
        grid-template-columns: 1fr;
    }

    .bonus-checkout-section {
        padding: 46px 0;
    }

    .bonus-formula > div:first-child,
    .formula-box,
    .bonus-good,
    .bonus-bad,
    .bonus-types-strip,
    .bonus-check-steps,
    .bonus-final-note {
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .rule-head {
        display: none;
    }

    .rule-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-wide-photo {
        padding: 8px;
        border-radius: 20px;
    }

    .bonus-wide-photo img {
        border-radius: 12px;
    }

    .bonus-check-steps li {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-check-steps li::before {
        margin: 0 auto;
    }
}

@media (max-width: 420px) {
    .bonus-ticket-left h1 {
        font-size: 1.82rem;
    }

    .bonus-ticket-right strong {
        font-size: 1.65rem;
    }
}

/* Policy pages */

.policy-hero {
    padding: 46px 0 34px;
    background:
            radial-gradient(circle at 50% -20%, rgba(66, 201, 135, .12), transparent 420px),
            linear-gradient(180deg, #11151c 0%, #0d1016 100%);
    border-bottom: 1px solid var(--line);
}

.policy-breadcrumbs {
    justify-content: center;
    margin-bottom: 18px;
}

.policy-hero-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.policy-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(66, 201, 135, .12);
    color: var(--green);
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.policy-hero-box h1 {
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.policy-hero-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #ddd6cb;
    font-size: 1.05rem;
}

.policy-text-section {
    padding: 54px 0 66px;
    background: #0d1016;
}

.policy-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: var(--card);
}

.policy-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 1.65rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.policy-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
    color: var(--muted);
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.policy-content a {
    color: var(--accent-2);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-updated {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: .9rem;
    color: var(--muted-2);
}

@media (max-width: 760px) {
    .policy-hero {
        padding: 34px 0 28px;
    }

    .policy-hero-box h1 {
        font-size: 2rem;
    }

    .policy-hero-box p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .policy-text-section {
        padding: 38px 0 48px;
    }

    .policy-content {
        padding: 22px;
        border-radius: 20px;
    }

    .policy-content h2 {
        margin-top: 28px;
        font-size: 1.35rem;
        text-align: left;
    }

    .policy-content p,
    .policy-content li {
        font-size: .95rem;
    }
}