/* Top Bonus page styles */
:root {
    --ink: #0b0f14;
    --accent: #16dd00;
    --bg: #ffffff;
    --stroke: rgba(0, 0, 0, .12);
    --container: min(1200px, 92vw);
    --radius: 14px;
    --shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

body {
    background: #fff;
    color: var(--ink)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.bonus-hero {
    background: linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705 209%);
    color: #fff;
    padding: 48px 0 56px
}

.bonus-hero .container {
    width: var(--container);
    margin-inline: auto;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px
}

.hero-content {
    flex: 1 1 500px
}

.hero-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center
}

.hero-image img {
    border-radius: 12px;
    width: 300px;
    box-shadow: var(--shadow)
}

.bonus-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 900
}

.bonus-hero p {
    margin: 0;
    opacity: .95;
    max-width: 920px
}

@media (max-width:768px) {
    .bonus-hero .container {
        flex-direction: column;
        text-align: center
    }

    .hero-image {
        margin-top: 20px
    }
}

.tabs-wrap {
    width: var(--container);
    margin: 40px auto;
    padding: 0 16px;
    position: relative
}

.tabs-slider {
    display: flex;
    align-items: center;
    gap: 8px
}

.tabs {
    display: flex;
    gap: 12px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none
}

.tabs::-webkit-scrollbar {
    display: none
}

.tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--stroke);
    background: #fff;
    color: #111;
    transition: .2s
}

.tab-btn[aria-selected="true"] {
    background: var(--accent);
    color: #0b0f14;
    border-color: transparent
}

.tab-arrow {
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, opacity .2s
}

.tab-arrow:hover {
    background: #f3f3f3
}

.tab-arrow[disabled] {
    opacity: .4;
    cursor: not-allowed
}

.tab-arrow svg {
    width: 16px;
    height: 16px
}

@media (max-width:500px) {
    .tab-arrow {
        display: none
    }
}

.tab-panel {
    display: none;
    margin-top: 28px
}

.tab-panel[aria-hidden="false"] {
    display: block
}

.offer {
    display: grid;
    grid-template-columns: 64px 220px 1fr;
    gap: 16px;
    background: #f6fff4;
    color: #111;
    border: 1px solid #c9f5c1;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    align-items: start
}

.offer+.offer {
    margin-top: 14px
}

.offer .rank {
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.offer .rank span {
    display: inline-block;
    min-width: 44px;
    text-align: center;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px
}

.offer .logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.offer .logo {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden
}

.offer .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.offer .offer-body {
    padding-top: 4px
}

.offer .offer-body h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800
}

.offer .offer-body p {
    margin: 0;
    font-size: 16px;
    color: #374151
}

.offer .offer-body>*+* {
    margin-top: 8px
}

.bpoints {
    margin: 8px 0 0;
    padding-left: 18px
}

.bpoints li {
    margin: 4px 0;
    color: #334155;
    font-size: 14px
}

.stat {
    display: inline-grid;
    place-items: center;
    min-width: 180px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #132f0f;
    color: #fff;
    font-weight: 800
}

.cta {
    display: inline-block;
    background: var(--accent);
    color: #0b0f14;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 10px;
    width: 150px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    text-align: center
}

.cta:hover {
    filter: saturate(1.05) brightness(1.03)
}

.offer[hidden] {
    display: none !important
}

@media (max-width:1200px) {
    .offer {
        grid-template-columns: 56px 200px 1fr
    }

    .offer .logo {
        width: 200px;
        height: 200px
    }
}

@media (max-width:900px) {
    .offer {
        grid-template-columns: 56px 160px 1fr
    }

    .offer .logo {
        width: 160px;
        height: 160px
    }
}

@media (max-width:680px) {
    .offer {
        grid-template-columns: 1fr;
        align-items: start
    }

    .offer .rank {
        justify-content: flex-start
    }

    .offer .logo {
        width: 220px;
        height: 220px
    }
}

.why-choose {
    background: #f9fafb;
    padding: 60px 0
}

.why-choose .container {
    width: var(--container);
    margin-inline: auto;
    padding: 0 16px
}

.why-choose h2 {
    margin: 0 0 28px;
    font-size: clamp(24px, 3vw, 36px);
    text-align: center;
    font-weight: 900;
    color: #111
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.feature-card {
    background: #f6fff4;
    border: 1px solid #16dd00;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
    transition: transform .2s ease
}

.feature-card:hover {
    transform: translateY(-4px)
}

.feature-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a
}

.feature-card p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.5
}

@media (prefers-reduced-motion: reduce) {
    .tabs {
        scroll-behavior: auto
    }

    .tab-arrow,
    .tab-btn {
        transition: none
    }
}