:root {
    --bg: #f4f5f8;
    --text: #151923;
    --muted: #606a7a;
    --card: #fff;
    --brand: #4d18ff;
    --brand2: #7b2cff;
    --dark: #18004a;
    --dark2: #280071;
    --accent: rgb(52, 252, 252);
    --line: #e4e7ee;
    --shadow: 0 18px 50px rgba(18, 0, 70, .14);
    --radius: 18px;
}

.hero-image-block {
    margin: 24px 0 40px;
}

.hero-banner {
    margin-top: 20px;
}

.hero-banner-img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1160px;
    margin: auto;
    padding: 0 22px;
}

a {
    color: inherit;
}

#header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .06);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    color: #222;
}

.mobile-menu {
    display: none;
    border: 0;
    background: var(--dark);
    color: #fff;
    border-radius: 12px;
    padding: 10px 13px;
    font-weight: 900;
}

.hero {
    padding: 54px 0 42px;
    background: linear-gradient(
        135deg,
        #fbfbff 0%,
        #f0efff 55%,
        #e9fff9 100%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 30px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    background: #eafff9;
    color: #006b55;
    border: 1px solid #b9fff0;
    border-radius: 999px;
    padding: 7px 13px;
    font-weight: 800;
    font-size: 13px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.08;
    margin: 18px 0 14px;
    letter-spacing: -1px;
}

.lead {
    font-size: 18px;
    color: #333;
    max-width: 760px;
}

.author {
    display: flex;
    gap: 13px;
    align-items: center;
    margin: 22px 0;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--brand),
        var(--accent)
    );
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: underline;
    transition: .2s;
    min-width: 160px;
}

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

.btn-primary {
    background: var(--accent);
    color: #061035;
}

.btn-secondary {
    background: var(--dark);
    color: #fff;
    text-decoration: none;
}

.hero-card {
    background: linear-gradient(
        145deg,
        var(--dark),
        var(--brand2)
    );
    color: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(56, 242, 199, .18);
    right: -90px;
    top: -70px;
}

.bonus-big {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.12;
}

.mini-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.mini-list li {
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

section {
    padding: 36px 0;
}

.section-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 22px;
}

.ranking {
    display: grid;
    gap: 14px;
}

.rank-card {
    display: grid;
    grid-template-columns: 84px 1.15fr 1fr 190px;
    align-items: center;
    gap: 22px;
    background: linear-gradient(
        90deg,
        #190052,
        #26006e
    );
    color: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
}

.rank-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6b31d6;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #0a001d;
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
}

.stars {
    color: #32e77d;
    letter-spacing: 2px;
    font-size: 18px;
}

.offer {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 21px;
    font-weight: 900;
}

.content-card,
.info-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .04);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.bonus-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 35px rgba(38, 0, 110, .08);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--brand),
        var(--accent)
    );
}

.bonus-card h3 {
    margin: 10px 0;
    font-size: 22px;
}

.bonus-value {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--brand);
}

.pill {
    display: inline-flex;
    margin-top: 12px;
    background: #f0edff;
    color: #35009b;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 800;
}

.table-wrap {
    overflow: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

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

th {
    background: #18004a;
    color: #fff;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.list-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
}

.list-box h3 {
    margin-top: 0;
}

.list-box li {
    margin: 10px 0;
}

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

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
}

.faq-arrow {
    transition: .25s;
    color: var(--brand);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: #414b5d;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.footer {
    padding: 34px 0;
    background: #0b0620;
    color: #fff;
    margin-top: 36px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--dark);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media(max-width:900px) {

    .hero-grid,
    .grid-2,
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rank-card {
        grid-template-columns: 60px 1fr;
    }

    .offer,
    .rank-card .btn {
        grid-column: 1 / -1;
    }

    .nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 18px 22px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media(max-width:620px) {

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .rank-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero h1 {
        font-size: 31px;
    }

    .logo {
        font-size: 24px;
    }

    .btn {
        width: 100%;
    }
}

.header-auth {
    display: flex !important;
    gap: 16px;
    margin-left: auto;
}

.header-login,
.header-register {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 62px;
    padding: 0 28px;
    border-radius: 18px;
    text-decoration: none !important;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-primary,
.header-register {
    background: var(--accent);
}

.header-login {
    background: #18004a;
    color: #fff !important;
}

.header-register {
    background: var(--accent);
    color: #061035 !important;
}

@media(max-width:900px) {

    .logo {
        display: none;
    }

    .header-auth {
        margin-right: auto;
        margin-left: 0;
        gap: 10px;
    }

    .header-login,
    .header-register {
        min-width: 105px;
        height: 57px;
        padding: 0 16px;
        font-size: 14px;
        text-decoration: underline;
    }
}