:root {
    color-scheme: dark;
    --bg: #090912;
    --bg-deep: #05060c;
    --band: #10111d;
    --band-2: #171827;
    --card: #121422;
    --card-soft: #181a2a;
    --ink: #fff7ec;
    --muted: #9b9bb9;
    --muted-2: #747592;
    --orange: #ff7a00;
    --orange-soft: #ff9a2c;
    --yellow: #ffd647;
    --teal: #1ec8b6;
    --green: #23ba76;
    --red: #e35d5d;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 122, 0, 0.55);
    --shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(120deg, rgba(255, 122, 0, 0.08), transparent 44%),
        linear-gradient(300deg, rgba(30, 200, 182, 0.08), transparent 48%),
        var(--bg);
    content: "";
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    min-height: 66px;
    padding: 10px max(24px, calc((100vw - 1180px) / 2));
    background: rgba(6, 7, 14, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

.brand {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    display: block;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 8px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1.12rem;
}

.nav {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.nav a {
    padding: 8px 0;
}

.nav a:hover,
.nav a.is-active,
.text-link:hover,
.footer-links a:hover {
    color: var(--yellow);
}

.header-cta,
.btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-weight: 900;
}

.header-cta {
    gap: 7px;
    min-width: 112px;
    padding: 10px 18px;
    color: #130b03;
    background: linear-gradient(180deg, var(--orange-soft), var(--orange));
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(255, 122, 0, 0.36);
}

.btn {
    gap: 8px;
    min-width: 174px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(255, 122, 0, 0.16);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.btn-primary {
    color: #130b03;
    background: linear-gradient(180deg, var(--yellow), var(--orange-soft) 55%, var(--orange));
}

.btn-secondary {
    color: var(--ink);
    background: rgba(255, 122, 0, 0.08);
    border-color: var(--line-strong);
}

.btn-telegram {
    color: #041515;
    background: linear-gradient(180deg, #63efe5, var(--teal));
}

.text-link {
    color: var(--yellow);
}

.hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(9, 9, 18, 0.98) 0%, rgba(9, 9, 18, 0.82) 45%, rgba(9, 9, 18, 0.22) 100%),
        url("/assets/images/luckybear-banner.jpg") right center / contain no-repeat;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 96px;
    background: linear-gradient(180deg, transparent, var(--bg));
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 122, 0, 0.1), rgba(9, 9, 18, 0.56)),
        linear-gradient(90deg, rgba(9, 9, 18, 0.88), transparent 62%);
}

.hero-inner,
.section-inner,
.footer-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: inherit;
    padding: 22px 0 48px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    color: var(--muted-2);
    font-size: 0.82rem;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--yellow);
}

.hero-copy {
    width: min(760px, 100%);
}

.hero-badge,
.eyebrow,
.card-kicker {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 15px;
    padding: 6px 12px;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 999px;
}

.eyebrow,
.card-kicker {
    display: block;
    margin: 0 0 10px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: 3.55rem;
    line-height: 0.98;
}

h2 {
    margin-bottom: 16px;
    font-size: 2.35rem;
    line-height: 1.1;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
    line-height: 1.18;
}

.hero-lead,
.section-heading p,
.content-block p,
.verdict-card p,
.deal-card p,
.feature-card p,
.step-card p,
.review-card p,
.faq-answer p,
.site-footer p,
.mirror-row span,
.promo-strip span {
    color: var(--muted);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 24px;
    overflow: hidden;
    background: rgba(13, 14, 27, 0.9);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.hero-stats div {
    min-height: 86px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    color: var(--yellow);
    font-size: 1.44rem;
    line-height: 1.05;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.82rem;
}

.section {
    padding: 72px 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.section:nth-of-type(even) {
    background: var(--band);
}

.section-heading {
    max-width: 860px;
    margin: 0 0 34px;
}

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

.verdict-layout,
.bonus-layout,
.split-layout,
.faq-layout,
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.verdict-card,
.feature-card,
.step-card,
.review-card,
.faq-item,
.deal-card,
.mirror-row,
.provider-table,
.promo-strip,
.media-frame {
    background: rgba(18, 20, 34, 0.86);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.verdict-card {
    min-height: 188px;
    padding: 24px;
}

.verdict-card-main {
    border-color: rgba(255, 214, 71, 0.24);
}

.verdict-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.verdict-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.verdict-brand h3 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 1.38rem;
}

.verdict-card .verdict-score {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    color: var(--ink);
    font-size: 1.06rem;
    font-weight: 900;
}

.verdict-score .score-stars,
.verdict-score strong {
    color: var(--yellow);
    text-shadow: 0 0 18px rgba(255, 214, 71, 0.32);
}

.verdict-score em {
    color: var(--ink);
    font-style: normal;
}

.accent-card {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.26), rgba(18, 20, 34, 0.9));
    border-color: var(--line-strong);
}

.accent-card h3 {
    color: var(--yellow);
    font-size: 2rem;
}

.tag-row,
.vip-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag-row span,
.vip-perks span {
    padding: 7px 10px;
    color: var(--teal);
    background: rgba(30, 200, 182, 0.1);
    border: 1px solid rgba(30, 200, 182, 0.26);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 900;
}

.rating-panel {
    display: grid;
    gap: 14px;
    max-width: 700px;
    margin-top: 34px;
}

.rating-row {
    display: grid;
    grid-template-columns: 190px 1fr 38px;
    gap: 18px;
    align-items: center;
    color: var(--muted);
    font-weight: 800;
}

.rating-row div {
    height: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.rating-row i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: inherit;
}

.rate-92 {
    width: 92%;
}

.rate-90 {
    width: 90%;
}

.rate-94 {
    width: 94%;
}

.rate-96 {
    width: 96%;
}

.rate-100 {
    width: 100%;
}

.rating-row strong {
    color: var(--yellow);
}

.bonus-layout {
    grid-template-columns: 0.82fr 1fr;
    align-items: center;
}

.media-frame {
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.deal-card {
    min-height: 180px;
    padding: 22px;
}

.deal-card.is-hot {
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.25), rgba(18, 20, 34, 0.9));
    border-color: var(--line-strong);
}

.deal-card span {
    color: var(--ink);
    font-weight: 900;
}

.deal-card strong {
    display: block;
    margin: 10px 0;
    color: var(--yellow);
    font-size: 2.1rem;
    line-height: 1;
}

.promo-strip {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 22px 26px;
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.24), rgba(255, 214, 71, 0.1));
    border-color: var(--line-strong);
}

.promo-strip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--yellow);
    font-size: 1.35rem;
}

.slot-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.slot-tile {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.slot-tile::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 6, 12, 0.02) 0%, rgba(5, 6, 12, 0.08) 46%, rgba(5, 6, 12, 0.86) 100%),
        linear-gradient(90deg, rgba(255, 122, 0, 0.12), transparent 42%);
    content: "";
}

.slot-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.slot-tile:hover img {
    transform: scale(1.045);
}

.slot-tile span,
.slot-tile strong {
    position: absolute;
    left: 14px;
    z-index: 2;
}

.slot-tile span {
    top: 14px;
    width: fit-content;
    padding: 4px 7px;
    color: #130b03;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.slot-tile strong {
    right: 14px;
    bottom: 14px;
    font-size: 1.02rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.feature-grid,
.step-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card,
.step-card,
.review-card {
    padding: 22px;
}

.feature-card {
    min-height: 190px;
}

.feature-card > span {
    display: block;
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.provider-table {
    margin-top: 28px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr 0.6fr;
    gap: 16px;
    padding: 15px 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.table-row:first-child {
    border-top: 0;
}

.table-head {
    color: var(--ink);
    background: rgba(255, 122, 0, 0.1);
    font-weight: 900;
    text-transform: uppercase;
}

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

.step-card {
    min-height: 220px;
}

.step-card > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    color: #130b03;
    background: linear-gradient(180deg, var(--yellow), var(--orange));
    border-radius: 50%;
    font-weight: 900;
}

.center-action {
    display: grid;
    place-items: center;
    margin-top: 30px;
    text-align: center;
}

.mirror-list {
    display: grid;
    gap: 14px;
}

.mirror-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
}

.mirror-row.is-active {
    border-color: var(--line-strong);
}

.mirror-row strong,
.mirror-row span {
    display: block;
}

.mirror-row em {
    padding: 6px 10px;
    color: #d7ffec;
    background: rgba(35, 186, 118, 0.2);
    border-radius: 6px;
    font-style: normal;
    font-weight: 900;
}

.reverse-layout .content-block {
    order: 1;
}

.reverse-layout .media-frame {
    order: 2;
}

.content-block {
    align-self: center;
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--teal);
    font-weight: 900;
    content: "✓";
}

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

.stars {
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: 1.08rem;
}

.review-card strong {
    display: block;
    margin-top: 18px;
}

.pros-cons {
    margin-top: 28px;
}

.pros-cons article {
    padding: 24px;
    background: rgba(18, 20, 34, 0.88);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.pros-cons article:first-child {
    border-color: rgba(35, 186, 118, 0.35);
}

.pros-cons article:last-child {
    border-color: rgba(227, 93, 93, 0.35);
}

.pros-cons ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.faq-layout {
    align-items: start;
}

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

.faq-question {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 900;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.faq-question span {
    display: grid;
    flex: 0 0 28px;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #130b03;
    background: var(--orange-soft);
    border-radius: 50%;
}

.faq-question[aria-expanded="true"] span {
    background: var(--teal);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 0;
}

.final-action {
    gap: 8px;
}

.final-action span {
    display: block;
    margin-top: 8px;
    color: var(--muted-2);
    font-size: 0.82rem;
}

.site-footer {
    padding: 46px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.9fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .brand-mark {
    width: 34px;
    height: 34px;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
}

.redirect-page {
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(30, 200, 182, 0.08)),
        var(--bg);
}

.redirect-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 24px;
}

.redirect-card {
    width: min(420px, 100%);
    padding: 30px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.redirect-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    color: #130b03;
    font-weight: 900;
    background: var(--yellow);
    border-radius: 8px;
}

.redirect-card h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.15;
}

.redirect-card p {
    color: var(--muted);
}

.redirect-card .btn {
    margin-top: 10px;
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
        padding: 10px 24px;
    }

    .nav {
        gap: 14px;
        overflow-x: auto;
        white-space: nowrap;
    }

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .feature-grid,
    .step-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-layout,
    .split-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

    .reverse-layout .content-block,
    .reverse-layout .media-frame {
        order: initial;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 12px 16px;
        padding: 10px 18px;
    }

    .nav {
        display: none;
    }

    .header-cta {
        grid-column: 2;
        grid-row: 1;
        min-width: 116px;
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .hero {
        min-height: 700px;
        background:
            linear-gradient(180deg, rgba(9, 9, 18, 0.95) 0%, rgba(9, 9, 18, 0.78) 58%, rgba(9, 9, 18, 0.46) 100%),
            url("/assets/images/luckybear-banner.jpg") right center / cover no-repeat;
    }

    .hero-inner,
    .section-inner,
    .footer-inner {
        width: min(100% - 32px, 1180px);
    }

    .hero-inner {
        padding: 18px 0 38px;
    }

    .breadcrumbs {
        margin-bottom: 24px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions,
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .text-link {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats div {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .hero-stats div:nth-child(2n) {
        border-right: 0;
    }

    .hero-stats div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .section {
        padding: 56px 0;
    }

    .verdict-layout,
    .bonus-cards,
    .feature-grid,
    .step-grid,
    .review-grid,
    .pros-cons,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .slot-strip {
        grid-template-columns: 1fr 1fr;
    }

    .table-row {
        grid-template-columns: 1fr 0.6fr;
    }

    .table-row span:nth-child(3),
    .table-row span:nth-child(4) {
        display: none;
    }

    .mirror-row {
        grid-template-columns: 1fr;
    }

    .promo-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .rating-row {
        grid-template-columns: 1fr 38px;
        gap: 8px 12px;
    }

    .rating-row div {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .redirect-card h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2.18rem;
    }

    .slot-strip {
        grid-template-columns: 1fr;
    }

    .hero-stats strong {
        font-size: 1.2rem;
    }
}
