:root {
    
    --bg: #f4f6f9;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --border: #e6e8ec;
    --border-strong: #d3d7de;

    --text: #0f172a;
    --text-muted: #64748b;
    --text-soft: #94a3b8;

    
    --brand: #111827;
    --accent: #fbbf24;      
    --green: #10b981;       

    
    --cta: #dc2626;
    --cta-hover: #b91c1c;
    --cta-shadow: rgba(220, 38, 38, 0.32);

    
    --tag-top:         #f97316;
    --tag-hot:         #ef4444;
    --tag-popular:     #eab308;
    --tag-new:         #3b82f6;
    --tag-exclusive:   #10b981;
    --tag-trusted:     #14b8a6;
    --tag-winner:      #8b5cf6;
    --tag-recommended: #84cc16;
    --tag-default:     #64748b;

    --bonus-bg: #fffbeb;
    --bonus-border: #fde68a;
    --bonus-accent: #b45309;

    --radius: 14px;
    --radius-sm: 8px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-cta: 0 4px 12px var(--cta-shadow);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

.wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 14px;
}

.topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(10px);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}
.topbar__logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--brand);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.01em;
}
.topbar__logo-mark { color: var(--accent); font-size: 15px; line-height: 1; }
.topbar__logo-text span { color: var(--text-muted); font-weight: 600; }
.topbar__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.topbar__updated { color: var(--text-muted); }
.topbar__age {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fee2e2; color: #b91c1c;
    padding: 3px 7px; border-radius: 999px;
    font-weight: 800; font-size: 11px;
}

.hero { padding: 18px 0 10px; }
.hero__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.hero__subtitle {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

.board {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 24px;
}

.card {
    --tab-color: var(--tag-default);
    position: relative;
    background: var(--surface);
    border: 1.5px solid var(--tab-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: box-shadow .2s ease, transform .15s ease;
}
.card:hover {
    box-shadow: var(--shadow-md), 0 0 0 1px var(--tab-color);
}

.card:first-child {
    border-width: 2.5px;
    box-shadow: var(--shadow-md), 0 0 18px rgba(249, 115, 22, 0.18);
}
.card:first-child:hover {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 0 22px rgba(249, 115, 22, 0.28);
}


.card[data-tag="top"]         { --tab-color: var(--tag-top); }
.card[data-tag="hot"]         { --tab-color: var(--tag-hot); }
.card[data-tag="popular"]     { --tab-color: var(--tag-popular); }
.card[data-tag="new"]         { --tab-color: var(--tag-new); }
.card[data-tag="exclusive"]   { --tab-color: var(--tag-exclusive); }
.card[data-tag="trusted"]     { --tab-color: var(--tag-trusted); }
.card[data-tag="winner"]      { --tab-color: var(--tag-winner); }
.card[data-tag="recommended"] { --tab-color: var(--tag-recommended); }
.card[data-tag="best"]        { --tab-color: #8b5cf6; }
.card[data-tag="#1"]          { --tab-color: #6366f1; }


.card__tab {
    flex: 0 0 32px;
    background: var(--tab-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.card__tab::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 40%);
    pointer-events: none;
}
.card__tab-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}


.card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.card__top-left {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.place {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    padding: 0 8px;
    background: #f1f5f9;
    color: var(--text);
    font-weight: 800;
    font-size: 12.5px;
    border-radius: 6px;
    letter-spacing: -0.01em;
}
.nz-flag {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.06));
}

.card__top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
}
.score {
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}
.score__max {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-soft);
    margin-left: 1px;
}
.card__stars { display: inline-flex; gap: 2px; line-height: 1; align-items: center; }
.star { font-size: 11px; line-height: 1; }
.star.full  { color: var(--accent); }
.star.half  { color: var(--accent); }
.star.empty { color: #e5e7eb; }
.card__reviews {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 600;
}


.card__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.card__logo {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card__logo img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}
.card__logo-fallback {
    display: none;
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
    text-align: center;
    font-weight: 800; font-size: 11px;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 0 6px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.card__brand-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card__name {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.1;
}
.card__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}


.bonus {
    background: linear-gradient(135deg, var(--bonus-bg) 0%, #fef3c7 100%);
    border: 1px solid var(--bonus-border);
    border-radius: 10px;
    padding: 11px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    position: relative;
    overflow: hidden;
}
.bonus::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--tab-color);
    opacity: .55;
}
.bonus__label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bonus-accent);
}
.bonus__main {
    font-size: 18px;
    font-weight: 900;
    color: #422006;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 2px;
}
.bonus__extra {
    font-size: 13px;
    font-weight: 700;
    color: var(--bonus-accent);
    line-height: 1.2;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 26px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text);
    background: #f1f5f9;
    border: 1px solid var(--border);
    white-space: nowrap;
}
.badge strong {
    font-weight: 800;
    color: var(--text);
}
.badge--payout {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}
.badge__icon {
    font-size: 11px;
    color: #f59e0b;
    line-height: 1;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    background: var(--cta);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: var(--shadow-cta);
    transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}
.btn-cta__arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform .18s ease;
}
.btn-cta:hover {
    background: var(--cta-hover);
    box-shadow: 0 6px 18px var(--cta-shadow);
}
.btn-cta:hover .btn-cta__arrow { transform: translateX(3px); }
.btn-cta:active { transform: translateY(1px); }


.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: center;
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.2;
}
.social-proof strong {
    color: var(--text);
    font-weight: 800;
}
.social-proof__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .55); }
    50%      { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}


@media (min-width: 760px) {
    .wrap { padding: 0 20px; }

    .topbar__inner { height: 56px; }
    .topbar__logo { font-size: 17px; }

    .hero { padding: 28px 0 14px; }
    .hero__title { font-size: 30px; }
    .hero__subtitle { font-size: 15px; }

    .board { gap: 14px; padding: 16px 0 32px; }

    .card__tab { flex-basis: 38px; }
    .card__tab-text { font-size: 12px; letter-spacing: 0.22em; }

    .card__body {
        padding: 14px 18px;
        display: grid;
        grid-template-columns: 1fr 1.2fr 200px;
        grid-template-areas:
            "top    top    top"
            "brand  bonus  cta"
            "brand  badges proof";
        gap: 10px 16px;
        align-items: center;
    }
    .card__top    { grid-area: top; }
    .card__brand  { grid-area: brand; }
    .bonus        { grid-area: bonus; padding: 12px 14px; }
    .badges       { grid-area: badges; align-self: start; margin-top: 2px; }
    .btn-cta      { grid-area: cta; min-height: 52px; }
    .social-proof { grid-area: proof; align-self: start; justify-self: center; margin-top: 4px; }

    .bonus__main { font-size: 19px; }
    .card__name  { font-size: 18px; }

    .card__logo { width: 96px; height: 96px; flex-basis: 96px; }
}


@media (max-width: 360px) {
    .card__tab { flex-basis: 28px; }
    .card__tab-text { font-size: 10px; letter-spacing: 0.14em; }
    .card__body { padding: 10px 12px 12px; }
    .hero__title { font-size: 20px; }
    .bonus__main { font-size: 16px; }
    .btn-cta { font-size: 15px; min-height: 46px; }
}


@media (prefers-reduced-motion: reduce) {
    .social-proof__dot { animation: none; }
    .btn-cta__arrow { transition: none; }
    .popup__box { animation: none !important; }
}


.info {
    margin: 20px 0 8px;
    padding: 22px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.info__head {
    text-align: center;
    margin-bottom: 18px;
}
.info__title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.15;
}
.info__lead {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.info__item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 14px 14px 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .15s ease, transform .15s ease;
}
.info__item:hover {
    border-color: var(--border-strong);
    transform: translateY(-1px);
}
.info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 16px;
    line-height: 1;
}
.info__item-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
}
.info__item-text {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .info__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
@media (min-width: 960px) {
    .info { padding: 28px 24px; }
    .info__title { font-size: 26px; }
    .info__lead { font-size: 15px; }
    .info__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
    }
}


.footer {
    margin-top: 24px;
    background: #0f172a;
    color: #cbd5e1;
    padding: 28px 0 20px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer__top {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.01em;
    align-self: flex-start;
}
.footer__logo-mark { color: var(--accent); font-size: 16px; line-height: 1; }
.footer__logo-text span { color: #94a3b8; font-weight: 600; }

.footer__tagline {
    margin: 0;
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 380px;
}

.footer__safety {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
}
.footer__safety-link {
    font-size: 12px;
    color: #cbd5e1;
    text-decoration: none;
    border-bottom: 1px dashed rgba(203, 213, 225, 0.35);
    padding-bottom: 1px;
    transition: color .15s ease, border-color .15s ease;
}
.footer__safety-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}
.footer__safety-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b91c1c;
    color: #fff;
    padding: 4px 9px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.02em;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 11.5px;
    line-height: 1.6;
    color: #94a3b8;
}
.disclaimer strong {
    color: #e2e8f0;
    font-weight: 700;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__copy {
    font-size: 11.5px;
    color: #64748b;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.footer__nav a {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: color .15s ease;
}
.footer__nav a:hover { color: #fff; }

@media (min-width: 720px) {
    .footer { padding: 32px 0 24px; }
    .footer__inner { gap: 22px; }
    .footer__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }
    .footer__safety { justify-content: flex-end; align-items: center; }
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}


.popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup.is-open {
    display: flex;
    animation: popupFadeIn .25s ease-out;
}
.popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.popup__box {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 18px;
    border: 2.5px solid var(--tag-top);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(249, 115, 22, 0.2);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    animation: popupSlideIn .35s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
}
.popup__box::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0) 100%);
    pointer-events: none;
}

.popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: var(--text);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .12s ease;
    z-index: 2;
    font-family: inherit;
    padding: 0;
}
.popup__close:hover {
    background: rgba(15, 23, 42, 0.16);
    transform: rotate(90deg);
}

.popup__ribbon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 1;
}

.popup__logo {
    width: 96px;
    height: 96px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.popup__logo img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}
.popup__logo-fallback {
    display: none;
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
    text-align: center;
    font-weight: 800; font-size: 12px;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 0 8px;
}

.popup__title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text);
}

.popup__bonus {
    width: 100%;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1.5px solid #fde68a;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px;
}
.popup__bonus-label {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bonus-accent);
}
.popup__bonus-main {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #422006;
    line-height: 1.1;
}
.popup__bonus-extra {
    font-size: 14px;
    font-weight: 700;
    color: var(--bonus-accent);
}

.popup__cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 22px;
    background: var(--cta);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--cta-shadow);
    transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}
.popup__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}
.popup__cta:hover {
    background: var(--cta-hover);
    box-shadow: 0 8px 22px var(--cta-shadow);
}
.popup__cta:active { transform: translateY(1px); }
.popup__cta-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease;
}
.popup__cta:hover .popup__cta-arrow { transform: translateX(4px); }

.popup__note {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

body.popup-open { overflow: hidden; }

@media (max-width: 360px) {
    .popup__box { padding: 22px 18px 18px; max-width: 100%; }
    .popup__title { font-size: 20px; }
    .popup__bonus-main { font-size: 20px; }
    .popup__cta { font-size: 16px; min-height: 50px; }
}