@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* === ЦВЕТОВАЯ СИСТЕМА (из файла 2) === */
    --coral-50: #fff1ee;
    --coral-100: #ffd5ca;
    --coral-200: #ffb09f;
    --coral-300: #ff8a73;
    --coral-400: #ff6a4e;
    --coral-500: #ff5035;
    --coral-600: #e03520;
    --coral-700: #b5230f;
    --coral-800: #8a1508;
    --coral-900: #5c0b03;

    --blue-50: #edf0ff;
    --blue-100: #c8d0ff;
    --blue-200: #9facff;
    --blue-300: #7085ff;
    --blue-400: #4660ff;
    --blue-500: #1b3fff;
    --blue-600: #1230d6;
    --blue-700: #0b22aa;
    --blue-800: #061680;
    --blue-900: #030c55;

    --lime-50: #f4ffd1;
    --lime-100: #e3ff9a;
    --lime-200: #cbff55;
    --lime-300: #b3f000;
    --lime-400: #96cb00;
    --lime-500: #78a500;
    --lime-600: #5c7f00;
    --lime-700: #435c00;

    --amber-50: #fffbf0;
    --amber-100: #fff3c7;
    --amber-200: #ffe48a;
    --amber-300: #ffd166;
    --amber-400: #f5bb30;
    --amber-500: #e0a000;
    --amber-600: #b07a00;
    --amber-700: #7d5500;

    --gray-0: #ffffff;
    --gray-50: #fafaf8;
    --gray-100: #f4f3ef;
    --gray-200: #e8e6e0;
    --gray-300: #d0cec5;
    --gray-400: #a8a69e;
    --gray-500: #807e78;
    --gray-600: #5c5a54;
    --gray-700: #3e3c38;
    --gray-800: #252420;
    --gray-900: #0d0c0a;

    /* === МАППИНГ ПЕРЕМЕННЫХ === */
    --bg-dark: var(--amber-50);

    --card-bg: var(--gray-0);
    --card-hover: var(--gray-50);

    --purple-deep: var(--blue-50);

    --purple-bright: var(--blue-500);
    --violet-glow: var(--blue-400);

    --cta-gold: var(--lime-300);
    --cta-orange: var(--lime-500);

    --text-main: var(--gray-900);
    --text-muted: var(--gray-500);

    --border-light: var(--gray-200);

    --glass-blur: blur(0px);

    /* === ТИПОГРАФИКА === */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--amber-50);
    background-image:
            radial-gradient(circle at 10% 20%, rgba(255, 80, 53, 0.06) 0%, transparent 45%),
            radial-gradient(circle at 90% 80%, rgba(27, 63, 255, 0.06) 0%, transparent 45%),
            radial-gradient(circle at 50% 50%, rgba(255, 251, 240, 1) 0%, transparent 100%);
    color: var(--text-main);
}

/* --- BACKGROUND CROWNS --- */
.background-crowns-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.08;
}

.bg-crown {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 80, 53, 0.25));
    transition: 0.5s ease;
}

/* --- DESKTOP POSITIONS --- */
.crown-1 { top: -2%; left: -2%; width: 18%; transform: rotate(-15deg); }
.crown-2 { top: 2%; right: -2%; width: 16%; transform: rotate(20deg); }
.crown-3 { top: 45%; left: -4%; width: 14%; transform: translateY(-50%) rotate(-10deg); }
.crown-4 { top: 45%; right: -3%; width: 15%; transform: translateY(-50%) rotate(15deg); }
.crown-5 { bottom: -2%; left: 5%; width: 20%; transform: rotate(-5deg); }
.crown-6 { bottom: 0%; right: 2%; width: 18%; transform: rotate(25deg); }
.crown-7 { top: 15%; left: 50%; width: 10%; transform: translateX(-50%) rotate(5deg); opacity: 0.5; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER SECTION --- */
.header-section {
    position: relative;
    text-align: center;
    padding: 80px 20px 20px;
    margin-bottom: 20px;
}

.header-overlay img {
    width: 120px;
    filter: drop-shadow(0 4px 12px rgba(255, 80, 53, 0.25));
}

.header-overlay img:hover {
    transform: scale(1.05);
}

.header-section h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: -5px;
    background: linear-gradient(110deg, var(--coral-700) 30%, var(--coral-500) 50%, var(--blue-600) 70%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3.5s linear infinite;
}

@keyframes textShimmer {
    0% { background-position: 0% center; }
    40% { background-position: 100% center; }
    100% { background-position: 100% center; }
}

/* --- UPDATE STATUS --- */
.update-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue-50);
    color: var(--blue-700);
    border: 1px solid var(--blue-200);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-container {
    max-width: 1400px;
    margin: 10px auto;
}

.intro-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 12px;
}

.intro-1 {
    font-size: 1.2rem !important;
    color: var(--gray-900) !important;
    font-family: var(--font-display);
}

/* FEATURE BADGES */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-0);
    border: 1px solid var(--gray-200);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(13, 12, 10, 0.06);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.badge-item:hover {
    transform: translateY(-2px);
    border-color: var(--coral-300);
    box-shadow: 0 4px 16px rgba(255, 80, 53, 0.12);
}

.badge-item span {
    background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

/* --- OFFERS LIST --- */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.offer-row {
    display: grid;
    grid-template-columns: 260px 1fr 400px;
    background: var(--gray-0);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 12, 10, 0.06);
    position: relative;
}

.offer-row:hover {
    border-color: var(--coral-300);
    box-shadow: 0 8px 32px rgba(255, 80, 53, 0.12);
    transform: translateY(-2px);
}

.brand-col {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blue-200);
    border-right: 1px solid var(--gray-200);
}

.brand-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.offer-row:hover .brand-logo {
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.pros-col {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pros-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.pros-list li {
    font-size: 0.95rem;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.offer-row:hover .pros-list li {
    color: var(--gray-900);
}

.pros-list li::before {
    content: "✓";
    color: var(--lime-600);
    margin-right: 12px;
    font-weight: 800;
    background: rgba(179, 240, 0, 0.18);
    min-width: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    margin-top: 2px;
}

.action-col {
    padding: 30px;
    background: var(--gray-50);
    border-left: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-tag {
    background: var(--blue-50);
    color: var(--blue-700);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--blue-200);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.welcome-label {
    color: var(--blue-600);
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.8;
}

.offer-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.35;
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.payment-box {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 4px 8px;
    width: 55px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.offer-row:hover .payment-box {
    opacity: 1;
}

.pay-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pay-pill {
    font-size: 0.7rem;
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--gray-600);
}

.claim-btn {
    background: linear-gradient(180deg, var(--coral-500) 0%, var(--coral-600) 100%);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255, 80, 53, 0.3);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.claim-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.offer-row:hover .claim-btn::after {
    left: 100%;
}

.claim-btn:hover {
    background: linear-gradient(180deg, var(--coral-400) 0%, var(--coral-500) 100%);
    box-shadow: 0 6px 24px rgba(255, 80, 53, 0.4);
}

/* --- CARD DISCLAIMER --- */
.card-disclaimer {
    grid-column: 1 / -1;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 12px 20px;
    font-size: 0.7rem;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.4;
}

/* --- INFO SECTION --- */
.info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.info-card {
    background: var(--gray-0);
    border: 1px solid var(--gray-200);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(13, 12, 10, 0.05);
}

.info-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--coral-600);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 8px;
    margin-bottom: 18px;
}

.info-card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- REVIEW CARD --- */
.rc {
    position: relative;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(13, 12, 10, 0.08);
    background: var(--gray-0);
}

.rc::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 80, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.rc::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(27, 63, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.rc-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    z-index: 3;
}

.rc-ribbon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

.rc-hero {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 84px 40px 40px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--gray-200);
}

.rc-brand-logo-wrap {
    position: relative;
    background: var(--blue-200);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 44px 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    overflow: visible;
}

.rc-brand-logo {
    max-width: 70%;
    max-height: 100px;
    display: block;
}

.rc-review-stamp {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70px;
    max-width: 75%;
    height: auto;
    transform: translate(-50%, -50%) rotate(-3deg);
    transform-origin: center center;
    filter: drop-shadow(0 4px 8px rgba(13, 12, 10, 0.2));
    pointer-events: none;
    z-index: 4;
    animation: rc-stamp-float 4s ease-in-out infinite;
}

@keyframes rc-stamp-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
    50% { transform: translate(-50%, -54%) rotate(-1.5deg); }
}

.info-card:has(> .rc-section-banner) {
    position: relative;
    padding-top: 90px;
}

.rc-section-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    pointer-events: none;
}

.rc-section-banner::before,
.rc-section-banner::after {
    content: "";
    width: 80px;
    height: 1px;
}

.rc-section-banner img {
    width: 150px;
    max-width: 60vw;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(13, 12, 10, 0.15));
}

.rc-brand-info {
    min-width: 0;
}

.rc-bonus-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-700);
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.rc-bonus-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral-600);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.rc-bonus-title .highlight {
    color: var(--coral-500);
    font-weight: 800;
}

/* Circular score */
.rc-score {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 80, 53, 0.25);
    position: relative;
}

.rc-score::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.35);
}

.rc-score-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rc-score-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Feature chips */
.rc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 40px 0;
}

.rc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.rc-chip-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--lime-300), var(--lime-500));
    color: var(--lime-800, #2d3d00);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}

.rc-chip-dot::before {
    content: "✓";
}

/* Description */
.rc-body {
    padding: 28px 40px;
}

.rc-body p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.rc-pullquote {
    border-left: 3px solid var(--coral-400);
    padding: 12px 16px;
    margin: 20px 0;
    background: var(--coral-50);
    border-radius: 0 10px 10px 0;
    font-weight: 600 !important;
    color: var(--gray-800) !important;
    font-size: 0.95rem !important;
}

.rc-fineprint {
    font-size: 0.72rem !important;
    color: var(--gray-400) !important;
    line-height: 1.6 !important;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-200);
}

/* Pros/Cons */
.rc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.rc-split-col {
    padding: 28px 32px;
}

.rc-split-col.pros {
    background: rgba(179, 240, 0, 0.06);
    border-top: 1px solid rgba(179, 240, 0, 0.3);
}

.rc-split-col.cons {
    background: rgba(255, 80, 53, 0.04);
    border-top: 1px solid rgba(255, 80, 53, 0.2);
    border-left: 1px solid var(--gray-200);
}

.rc-split-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rc-split-col.pros .rc-split-title { color: var(--lime-600); }
.rc-split-col.cons .rc-split-title { color: var(--coral-600); }

.rc-split-title-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 900;
}

.rc-split-col.pros .rc-split-title-icon {
    background: rgba(179, 240, 0, 0.15);
    color: var(--lime-600);
}

.rc-split-col.cons .rc-split-title-icon {
    background: rgba(255, 80, 53, 0.12);
    color: var(--coral-600);
}

.rc-split-col ul { list-style: none; padding: 0; margin: 0; }

.rc-split-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--gray-600);
    padding: 7px 0;
}

.rc-split-col li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rc-split-col.pros li::before { background: var(--lime-500); }
.rc-split-col.cons li::before { background: var(--coral-500); }

/* Footer CTA */
.rc-footer {
    padding: 28px 40px 36px;
    text-align: center;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.rc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--coral-500) 0%, var(--coral-600) 120%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 48px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 80, 53, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 80, 53, 0.4);
}

.rc-cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.rc-cta:hover .rc-cta-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
    .rc-hero { grid-template-columns: 1fr; gap: 18px; padding: 70px 20px 28px; text-align: center; }
    .rc-brand-logo { max-width: 70%; }
    .rc-brand-logo-wrap { padding: 20px; min-height: 120px; }
    .rc-brand-logo { max-height: 70px; margin: 0 auto; }
    .rc-review-stamp { width: 60px; }
    .info-card:has(> .rc-section-banner) { padding-top: 60px; }
    .rc-section-banner img { width: 110px; }
    .rc-section-banner { gap: 10px; }
    .rc-section-banner::before, .rc-section-banner::after { width: 36px; }
    .rc-bonus-label { margin: 0 auto 12px; }
    .rc-bonus-title { font-size: 1.15rem; }
    .rc-score {
        position: absolute; top: 14px; right: 14px;
        width: auto; height: auto;
        background: rgba(255,255,255,0.92);
        border: 1px solid var(--coral-200);
        border-radius: 10px;
        padding: 6px 10px 6px 8px;
        flex-direction: row; align-items: center; gap: 6px;
        box-shadow: 0 2px 8px rgba(13,12,10,0.1);
        backdrop-filter: blur(4px);
    }
    .rc-score::before { content: "★"; position: static; inset: auto; border: none; border-radius: 0; color: var(--coral-500); font-size: 0.95rem; line-height: 1; display: inline-flex; }
    .rc-score-num { font-size: 0.95rem; font-weight: 700; color: var(--coral-600); line-height: 1; }
    .rc-score-label { display: none; }
    .rc-score-num::after { content: " / 10"; font-size: 0.7rem; font-weight: 600; color: var(--gray-400); margin-left: 2px; }
    .rc-chips { padding: 18px 18px 0; gap: 6px; }
    .rc-chip { font-size: 0.72rem; padding: 6px 10px; gap: 6px; }
    .rc-chip-dot { width: 13px; height: 13px; font-size: 0.55rem; }
    .rc-body { padding: 18px; }
    .rc-body p { font-size: 0.82rem; line-height: 1.65; margin-bottom: 10px; }
    .rc-pullquote { padding: 10px 12px; margin: 14px 0; font-size: 0.82rem !important; }
    .rc-fineprint { font-size: 0.65rem !important; padding-top: 10px; }
    .rc-split { grid-template-columns: 1fr; }
    .rc-split-col { padding: 18px; }
    .rc-split-col.cons { border-left: none; border-top: 1px solid var(--gray-200); }
    .rc-split-title { font-size: 0.65rem; margin-bottom: 12px; gap: 8px; }
    .rc-split-title-icon { width: 22px; height: 22px; font-size: 0.72rem; }
    .rc-split-col li { font-size: 0.78rem; padding: 5px 0; gap: 8px; }
    .rc-split-col li::before { width: 5px; height: 5px; margin-top: 7px; }
    .rc-footer { padding: 18px 18px 24px; }
    .rc-cta { display: flex; width: 100%; padding: 14px 20px; font-size: 0.9rem; letter-spacing: 0.06em; justify-content: center; }
    .rc-cta-arrow { display: none; }
    .rc-ribbon { top: 14px; left: 14px; padding: 5px 10px 5px 8px; font-size: 0.65rem; max-width: calc(100% - 130px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .rc-ribbon-icon { width: 22px; height: 20px; font-size: 0.65rem; flex-shrink: 0; }
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--gray-900);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-disclaimer-title {
    color: var(--coral-400);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-disclaimer-text {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-disclaimer-text strong {
    color: var(--gray-300);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    opacity: 0.6;
}

.footer-logos img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.footer-logos:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-bottom-divider {
    border-top: 1px solid var(--gray-700);
    margin: 40px 0;
}

.footer-copyright {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .offer-row { grid-template-columns: 220px 1fr 320px; }
    .header-section h1 { font-size: 2.8rem; }
    .crown-1 { width: 14%; }
    .crown-2 { width: 14%; }
    .crown-3 { width: 12%; }
    .crown-4 { width: 12%; }
    .crown-5 { width: 15%; }
    .crown-6 { width: 15%; }
}

@media (max-width: 900px) {
    #FUNZCITY { width: 140px; }
    #SPINBLITZ { width: 150px; height: 150px; }
    #SPREE { width: 120px; height: 120px; }
    #CROWNCOINS { width: 140px; height: 140px; }
    #HELLOMILLIONS { width: 150px; height: 150px; }
    #JACKPOTRABBIT { width: 150px; height: 150px; }
    #MCLUCK { width: 150px; height: 150px; max-width: 200px; }
    #NOLIMITCOIN { width: 150px; height: 150px; }
    #MEGABONANZA { width: 150px; height: 150px; }
    #PLAYFAME { height: 140px; width: 140px; }
    #TAOFORTUNE { height: 140px; width: 140px; }
    #FUNRIZE { height: 150px; width: 150px; }
    #FORTUNEWHEELZ { height: 140px; width: 140px; }
    .offer-row { display: flex; flex-direction: column; }
    .brand-col { border: none; border-bottom: 1px solid var(--gray-200); padding: 25px; order: 1; }
    .action-col { background: var(--gray-50); border: none; border-bottom: 1px solid var(--gray-200); padding: 25px; order: 2; }
    .pros-col { border: none; padding: 25px; order: 3; }
    .card-disclaimer { order: 4; padding: 12px 15px; }
    .brand-logo { height: 100px; margin-bottom: 0; }
    .pros-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-section { padding: 80px 40px 15px; }
    .header-section h1 { font-size: 2.2rem; }
    .pros-list { grid-template-columns: 1fr; }
    .feature-badges { gap: 5px; overflow-x: hidden; flex-wrap: nowrap; justify-content: center; width: 100%; }
    .feature-badges::-webkit-scrollbar { display: none; }
    .badge-item { padding: 6px 8px; gap: 5px; font-size: 0.65rem; border-radius: 8px; }
    .badge-item span { width: 16px; height: 16px; font-size: 0.55rem; }
    .intro-content p { font-size: 0.95rem; }
    .info-card { padding: 30px; }
    .info-card h2 { font-size: 1.4rem; }
    .crown-1 { top: 2%; left: -15%; width: 40%; transform: rotate(-20deg); opacity: 0.05; }
    .crown-2 { top: 25%; right: -15%; width: 35%; transform: rotate(20deg); }
    .crown-3 { top: 60%; left: -10%; width: 30%; transform: rotate(-10deg); }
    .crown-4 { top: auto; bottom: 5%; right: -10%; width: 35%; transform: rotate(15deg); }
    .crown-5, .crown-6, .crown-7 { display: none; }
}

@media (max-width: 480px) {
    .payment-box { width: 50px; }
    .info-card { padding: 15px; }
    .info-card p { font-size: 0.8rem; }
    .header-section h1 { font-size: 1.8rem; margin-top: -5px; }
    .offer-text { font-size: 1rem; margin-bottom: 10px; }
    .claim-btn { padding: 14px; font-size: 0.9rem; }
    .brand-logo img { max-height: 80px; }
    .payment-row { margin-bottom: 10px; }
    .header-section { padding: 80px 10px 10px; padding-bottom: 0px; margin-bottom: 5px !important; }
    .intro-content p > strong { font-size: 0.65rem !important; margin-bottom: 5px; }
    .intro-content p { font-size: 0.65rem; margin-bottom: 5px; }
    .intro-container { margin: 10px auto; margin-top: 0px; padding-left: 10px; padding-right: 10px; }
    .feature-badges { margin-top: 5px; }
    .update-status { font-size: 0.65rem; padding: 6px 12px; margin: 5px; }
    .brand-col { padding: 0px; }
    .pros-col { padding: 10px; }
    .pros-list li { font-size: 0.85rem; }
    .badge-tag { font-size: 0.6rem; }
    .brand-logo img { max-height: 110px; }
    .header-overlay img { width: 100px; }
    .badge-item span { width: 11px; height: 11px; }
    .badge-item { padding: 5px 5px; }
    .card-disclaimer { font-size: 0.6rem; }
}

@media (max-width: 414px) {
    .brand-logo img { width: 100px; }
    .badge-item { gap: 3px; font-size: 0.55rem; }
    .update-status { font-size: 0.5rem; padding: 4px 10px; margin: 3px; }
    .badge-tag { margin-bottom: 10px; }
    .pros-list { gap: 5px; }
    .header-section { padding: 80px 5px 0px; margin-bottom: 10px; }
    .action-col { padding: 15px; }
    .intro-content p:first-child { margin-bottom: 0px; }
    .pros-list li { font-size: 0.75rem; }
    .header-overlay img { width: 80px; }
}

/* --- STICKY MOBILE CTA --- */
.sticky-mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 14px 16px 14px;
    background: var(--gray-0);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 24px rgba(13, 12, 10, 0.1);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-mobile-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--coral-500) 30%, var(--blue-500) 50%, var(--coral-500) 70%, transparent 100%);
    background-size: 200% 100%;
    animation: stickyShimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes stickyShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sticky-mobile-cta__logo {
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
}

.sticky-mobile-cta__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--coral-50);
    border: 1px solid var(--coral-200);
    color: var(--coral-700);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.sticky-mobile-cta__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime-500);
    animation: stickyLivePulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes stickyLivePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.sticky-mobile-cta .claim-btn {
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 0.95rem;
    text-align: center;
}

.sticky-mobile-cta .sticky-disclaimer {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.6rem;
    line-height: 1.4;
    margin-top: 8px;
}

@media (min-width: 769px) {
    .sticky-mobile-cta {
        left: 50%;
        right: auto;
        bottom: 18px;
        width: min(1060px, calc(100vw - 32px));
        max-width: none;
        border-radius: 20px;
        border: 1px solid var(--gray-200);
        padding: 18px 28px 14px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(13, 12, 10, 0.12);
        display: block;
        transform: translate(-50%, calc(100% + 40px));
    }
    .sticky-mobile-cta.visible { transform: translate(-50%, 0); }
    .sticky-mobile-cta__head {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 12px;
    }
    .sticky-mobile-cta__logo { height: 38px; }
    .sticky-mobile-cta .claim-btn { width: auto; max-width: 420px; padding: 13px 40px; font-size: 0.95rem; white-space: nowrap; }
    .sticky-mobile-cta .sticky-disclaimer { display: block; text-align: center; margin-top: 8px; font-size: 0.68rem; }
}

/* --- EXIT POPUP --- */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(13, 12, 10, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    position: relative;
    max-width: 440px;
    width: 100%;
    background: var(--gray-0);
    border: 1px solid var(--gray-200);
    border-radius: 28px;
    overflow: hidden;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(13, 12, 10, 0.2);
}

.exit-popup::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--coral-500) 30%, var(--blue-500) 50%, var(--coral-500) 70%, transparent 100%);
    background-size: 200% 100%;
    animation: popupShimmer 3s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes popupShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.exit-popup-overlay.visible .exit-popup {
    transform: translateY(0) scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.exit-popup-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

.exit-popup__inner {
    padding: 38px 32px 28px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.exit-popup__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--amber-50);
    border: 1px solid var(--amber-300);
    color: var(--amber-700);
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.exit-popup__eyebrow::before,
.exit-popup__eyebrow::after {
    content: "\2605";
    font-size: 0.7rem;
    line-height: 1;
}

.exit-popup__logo {
    height: 46px;
    width: auto;
    margin: 0 auto 18px;
    display: block;
}

.exit-popup__headline {
    font-family: var(--font-display);
    color: var(--coral-600);
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.exit-popup__sub {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 22px;
}

.exit-popup__offer {
    position: relative;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: 18px;
    padding: 22px 18px 18px;
    margin-bottom: 22px;
}

.exit-popup__amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.exit-popup__amount-block {
    text-align: center;
}

.exit-popup__amount-value {
    color: var(--coral-600);
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.exit-popup__amount-label {
    color: var(--gray-500);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
    font-weight: 700;
}

.exit-popup__amount-plus {
    color: var(--blue-500);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-top: -10px;
}

.exit-popup__benefits {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.exit-popup__benefits li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 10px;
    text-align: center;
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    background: var(--gray-0);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.exit-popup__benefits li:hover {
    border-color: var(--coral-300);
    transform: translateY(-2px);
}

.exit-popup__benefits li::before {
    content: "\2713";
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 420px) {
    .exit-popup__benefits { grid-template-columns: 1fr; }
    .exit-popup__benefits li { flex-direction: row; justify-content: flex-start; text-align: left; padding: 10px 14px; }
}

.exit-popup .claim-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    text-align: center;
}

.exit-popup-disclaimer {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.6rem;
    line-height: 1.5;
    margin-top: 14px;
}

@media (max-width: 480px) {
    .exit-popup { border-radius: 22px; }
    .exit-popup__inner { padding: 32px 22px 24px; }
    .exit-popup__logo { height: 40px; }
    .exit-popup__sub { font-size: 0.8rem; }
    .exit-popup__amount-value { font-size: 1.55rem; }
    .exit-popup__amount-plus { font-size: 1.3rem; }
    .exit-popup__benefits li { font-size: 0.73rem; }
}