:root {
    --bg-dark: #050b14;

    --card-bg: rgba(10, 20, 35, 0.72);
    --card-hover: rgba(15, 30, 52, 0.92);

    --purple-deep: #071525;

    --purple-bright: #00d4ff;
    --violet-glow: #22d3ee;

    --cta-gold: #34d399;
    --cta-orange: #059669;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --border-light: rgba(148, 163, 184, 0.16);

    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #050b14;

    background-image:
            radial-gradient(
                    circle at 10% 20%,
                    rgba(0, 212, 255, 0.15) 0%,
                    transparent 45%
            ),
            radial-gradient(
                    circle at 90% 80%,
                    rgba(52, 211, 153, 0.12) 0%,
                    transparent 45%
            ),
            radial-gradient(circle at 50% 50%, rgba(5, 11, 20, 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.15;
}

.bg-crown {
    position: absolute;
    object-fit: contain;

    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.45))
    drop-shadow(0 0 45px rgba(52, 211, 153, 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;
}

/* UPDATED: IMMERSIVE LOGO GLOW */
.header-overlay img {
    width: 120px;

    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.6))
    drop-shadow(0 0 40px rgba(52, 211, 153, 0.35));
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    }
    100% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.8))
        drop-shadow(0 0 40px rgba(192, 132, 252, 0.4));
    }
}

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

/* UPDATED: IMMERSIVE H1 SHIMMER & GLOW */
.header-section h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1px;
    margin-top: -5px;
    /* Sharper metallic gradient */
    background: linear-gradient(
            110deg,
            #b4f4fe 30%,
            #ffffff 45%,
            #ffffff 55%,
            #b4fdfe 70%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Outer Glow added via filter since text-shadow doesn't work well with transparent text */
    filter: drop-shadow(0 0 15px rgba(58, 237, 228, 0.6));
    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 (Static Gold) --- */
.update-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(
            90deg,
            rgba(36, 251, 222, 0.1),
            rgba(11, 233, 245, 0.15)
    );
    color: #24fbe2;
    border: 1px solid rgba(36, 237, 251, 0.4);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
            0 0 20px rgba(36, 251, 197, 0.2),
            inset 0 0 10px rgba(251, 191, 36, 0.05);
    backdrop-filter: blur(5px);
}

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

.intro-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 12px;
}

.intro-1 {
    font-size: 1.2rem !important;
    color: #fff !important;
}

/* 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-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(36, 222, 251, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.badge-item:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 251, 247, 0.8);
    box-shadow: 0 8px 25px rgba(36, 251, 219, 0.15);
    background: rgba(40, 40, 40, 0.8);
}

.badge-item span {
    background: linear-gradient(135deg, #24fbd0, #06d96c);
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(36, 251, 229, 0.4);
}

/* --- 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(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition:
            transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.4s ease,
            border-color 0.3s ease,
            background 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.offer-row:hover {
    border-color: rgba(52, 211, 153, 0.6);

    box-shadow:
            0 25px 70px rgba(0, 212, 255, 0.18),
            0 0 0 1px rgba(52, 211, 153, 0.25) inset;
}

.brand-col {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.brand-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none; /* added to ensure the link has no underline */
}

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

.brand-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.pros-col {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

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

.pros-list li {
    font-size: 0.95rem;
    color: #d1d5db;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.offer-row:hover .pros-list li {
    color: #fff;
}

.pros-list li::before {
    content: "✓";
    color: #4ade80;
    margin-right: 12px;
    font-weight: 800;
    background: rgba(74, 222, 128, 0.15);
    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: rgba(255, 255, 255, 0.02);
    border-left: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge-tag {
    background: linear-gradient(90deg, var(--purple-bright), var(--violet-glow));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(58, 210, 237, 0.4);
}

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

.offer-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    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: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    width: 55px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    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: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.claim-btn {
    background: linear-gradient(
            180deg,
            var(--cta-gold) 0%,
            var(--cta-orange) 100%
    );
    color: #0f0a1d;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(11, 245, 245, 0.4);
    transition: all 0.3s 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.4),
            transparent
    );
    transition: 0.5s;
}

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

/* --- CARD DISCLAIMER SECTION (NEW) --- */
.card-disclaimer {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    font-size: 0.7rem;
    color: #9ca3af;
    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: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 50px;
    border-radius: 24px;
}

.info-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #24fbf0, #0bf5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 18px;
}

.info-card p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- REVIEW CARD (Editorial Design) --- */
.rc {
    position: relative;
    border: 1px solid rgba(36, 251, 215, 0.2);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.rc::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
            circle,
            rgba(36, 237, 251, 0.12) 0%,
            transparent 70%
    );
    pointer-events: none;
}
.rc::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(
            circle,
            rgba(58, 195, 237, 0.12) 0%,
            transparent 70%
    );
    pointer-events: none;
}

/* Top ribbon rank */
.rc-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #24dbfb, #06c7d9);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(36, 251, 222, 0.3);
    z-index: 3;
}
.rc-ribbon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #000;
    color: #24fbdb;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

/* Hero zone */
.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 rgba(255, 255, 255, 0.06);
}
.rc-brand-logo-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    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 0 18px rgba(36, 251, 208, 0.55))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
    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);
    }
}
/* .rc-brand-logo-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 90px;
            background: radial-gradient(ellipse at center, rgba(251,191,36,0.22) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        } */
/* Section masthead banner — overlaps the top edge of its parent card */
.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 0 24px rgba(36, 251, 240, 0.55))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.6));
}
.rc-brand-info {
    min-width: 0;
}
.rc-bonus-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b5f7fd;
    background: rgba(85, 244, 247, 0.12);
    border: 1px solid rgba(85, 236, 247, 0.3);
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.rc-bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #24fbc2;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.rc-bonus-title .highlight {
    color: #24fbd7;
    font-weight: 800;
}

/* Circular score */
.rc-score {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #24e2fb, #06ced9 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
            0 0 0 6px rgba(36, 233, 251, 0.15),
            0 10px 30px rgba(36, 247, 251, 0.3);
    position: relative;
}
.rc-score::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.25);
}
.rc-score-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}
.rc-score-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Features as chips */
.rc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 40px 0;
    position: relative;
    z-index: 2;
}
.rc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 251, 226, 0.08);
    border: 1px solid rgba(36, 229, 251, 0.25);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e0e0e0;
}
.rc-chip-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #24fbde, #06d9c0);
    color: #000;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}
.rc-chip-dot::before {
    content: "✓";
}

/* Description with pullquote */
.rc-body {
    padding: 28px 40px;
    position: relative;
    z-index: 2;
}
.rc-body p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.rc-pullquote {
    border-left: 3px solid #24fbde;
    padding: 12px 16px;
    margin: 20px 0;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 0 10px 10px 0;
    font-weight: 600 !important;
    color: #fff !important;
    font-size: 0.95rem !important;
}
.rc-fineprint {
    font-size: 0.72rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Pros/Cons as split bars */
.rc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
}
.rc-split-col {
    padding: 28px 32px;
}
.rc-split-col.pros {
    background: rgba(34, 197, 94, 0.04);
    border-top: 1px solid rgba(34, 197, 94, 0.15);
}
.rc-split-col.cons {
    background: rgba(68, 228, 239, 0.04);
    border-top: 1px solid rgba(68, 208, 239, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.rc-split-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.rc-split-col.pros .rc-split-title {
    color: #22c55e;
}
.rc-split-col.cons .rc-split-title {
    color: #ef4444;
}
.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(34, 197, 94, 0.15);
    color: #22c55e;
}
.rc-split-col.cons .rc-split-title-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.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: #e0e0e0;
    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: #22c55e;
}
.rc-split-col.cons li::before {
    background: #ef4444;
}

/* Footer CTA */
.rc-footer {
    padding: 28px 40px 36px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.04));
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #44ff7f 0%, #018408 120%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 48px;
    border-radius: 999px;
    border: 1px solid rgba(77, 255, 134, 0.6);
    text-shadow: 0 0 3px rgba(2, 83, 9, 0.8);
    text-decoration: none;
    box-shadow:
            0 10px 30px rgba(1, 132, 8, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
            transform 0.2s,
            box-shadow 0.2s;
}
.rc-cta:hover {
    transform: translateY(-2px);
    box-shadow:
            0 14px 40px rgba(1, 132, 8, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.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-firesevens .rc-brand-logo,
    .rc-mrgoodwin .rc-brand-logo,
    .rc-sweepshark .rc-brand-logo,
    .rc-stormrush .rc-brand-logo,
    .rc-vegasway .rc-brand-logo,
    .rc-funrize .rc-brand-logo,
    .rc-sweepico .rc-brand-logo,
    .rc-funzcity .rc-brand-logo {
        margin-top: 18px;
    }
    .rc-review-stamp {
        width: 60px;
    }
    .rc-brand-logo-wrap::before {
        width: 150px;
        height: 70px;
        top: 0;
    }
    .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;
    }
    /* Score becomes a dark tile with star + rating at top-right */
    .rc-score {
        position: absolute;
        top: 14px;
        right: 14px;
        width: auto;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(251, 191, 36, 0.4);
        border-radius: 10px;
        padding: 6px 10px 6px 8px;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
        z-index: 3;
        backdrop-filter: blur(4px);
    }
    .rc-score::before {
        content: "★";
        position: static;
        inset: auto;
        border: none;
        border-radius: 0;
        color: #24fbde;
        font-size: 0.95rem;
        line-height: 1;
        display: inline-flex;
    }
    .rc-score-num {
        font-size: 0.95rem;
        font-weight: 900;
        color: #24fbde;
        line-height: 1;
    }
    .rc-score-label {
        display: none;
    }
    .rc-score-num::after {
        content: " / 10";
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        margin-left: 2px;
    }
    .rc-bonus-label {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
    .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 rgba(255, 255, 255, 0.06);
    }
    .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: #000;
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}
.footer-disclaimer-title {
    color: var(--cta-gold);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-disclaimer-text {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.footer-disclaimer-text strong {
    color: #d1d5db;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    opacity: 0.7;
}
.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(--border-light);
    margin: 40px 0;
}
.footer-copyright {
    text-align: center;
    color: #4b5563;
    font-size: 0.85rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@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;
    }
    #NOLIMITCOIN {
        width: 150px;
        height: 150px;
    }
    #MEGABONANZA {
        width: 150px;
        height: 150px;
    }
    #MCLUCK {
        max-width: 200px;
    }
    #PLAYFAME {
        height: 140px;
        width: 140px;
    }
    #TAOFORTUNE {
        height: 140px;
        width: 140px;
    }
    #FUNRIZE {
        height: 150px;
        width: 150px;
    }
    #FORTUNEWHEELZ {
        height: 140px;
        width: 140px;
    }
    /* UPDATED: SWAP PROS AND ACTION COL */
    .offer-row {
        display: flex; /* Changed from grid to flex for easy reordering */
        flex-direction: column;
    }
    .brand-col {
        border: none;
        border-bottom: 1px solid var(--border-light);
        padding: 25px;
        order: 1; /* Brand First */
    }
    .action-col {
        background: rgba(30, 20, 54, 0.4);
        border: none;
        border-bottom: 1px solid var(--border-light);
        padding: 25px;
        order: 2; /* Action (Button) Second */
    }
    .pros-col {
        border: none;
        padding: 25px;
        order: 3; /* Pros Last */
    }
    .card-disclaimer {
        order: 4; /* Appears after pros-col in mobile */
        border-top: none; /* Already has top border from pros-col above conceptually, or can keep it */
        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.1;
    }
    .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;
    }
    .claim-btn {
        padding: 14px;
        font-size: 0.9rem;
    }
    .brand-logo img {
        max-height: 80px;
    }
    .offer-text {
        margin-bottom: 10px;
    }
    .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:
            radial-gradient(
                    circle at 0% 0%,
                    rgba(168, 85, 247, 0.18) 0%,
                    transparent 55%
            ),
            linear-gradient(
                    180deg,
                    rgba(45, 30, 75, 0.97) 0%,
                    rgba(22, 14, 40, 0.98) 100%
            );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.55);
    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(--cta-gold) 30%,
            var(--cta-orange) 50%,
            var(--cta-gold) 70%,
            transparent 100%
    );
    background-size: 200% 100%;
    animation: stickyShimmer 3s linear infinite;
    opacity: 0.9;
    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;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5));
}
.sticky-mobile-cta__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: var(--cta-gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-mobile-cta__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
    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;
    box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
    animation: stickyCtaGlow 2.5s ease-in-out infinite;
}
@keyframes stickyCtaGlow {
    0%,
    100% {
        box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
    }
    50% {
        box-shadow: 0 2px 22px rgba(245, 158, 11, 0.6);
    }
}
.sticky-mobile-cta .sticky-disclaimer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.6rem;
    line-height: 1.4;
    margin-top: 8px;
}
@media (max-width: 360px) {
    .sticky-mobile-cta__pill {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
}
.sticky-mobile-cta__chevrons {
    display: none;
}
.sticky-mobile-cta__chev {
    display: block;
    flex-shrink: 0;
}
.sticky-mobile-cta__chevrons
.sticky-mobile-cta__chev
+ .sticky-mobile-cta__chev {
    margin-left: -4px;
}
.sticky-mobile-cta__chev--xs {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    animation: chevWave 1.6s ease-in-out 0s infinite;
}
.sticky-mobile-cta__chev--sm {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    animation: chevWave 1.6s ease-in-out 0.15s infinite;
}
.sticky-mobile-cta__chev--md {
    width: 22px;
    height: 22px;
    opacity: 0.78;
    animation: chevWave 1.6s ease-in-out 0.3s infinite;
}
.sticky-mobile-cta__chev--lg {
    width: 26px;
    height: 26px;
    opacity: 0.9;
    animation: chevWave 1.6s ease-in-out 0.45s infinite;
}
.sticky-mobile-cta__chev--xl {
    width: 32px;
    height: 32px;
    opacity: 1;
    animation: chevWave 1.6s ease-in-out 0.6s infinite;
}
.sticky-mobile-cta__cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
@keyframes chevWave {
    0%,
    70%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
    }
    25% {
        transform: translateY(-1px) scale(1.1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 10px rgba(168, 85, 247, 0.95));
    }
}
@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: none;
        padding: 18px 28px 14px;
        overflow: hidden;
        box-shadow:
                0 18px 50px rgba(0, 0, 0, 0.55),
                0 0 32px rgba(168, 85, 247, 0.2);
        display: block;
        transform: translate(-50%, calc(100% + 40px));
    }
    .sticky-mobile-cta.visible {
        transform: translate(-50%, 0);
    }
    .sticky-mobile-cta::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        padding: 2px;
        border-radius: inherit;
        background: linear-gradient(
                90deg,
                var(--cta-gold) 0%,
                var(--cta-orange) 25%,
                var(--violet-glow) 50%,
                var(--cta-orange) 75%,
                var(--cta-gold) 100%
        );
        background-size: 200% 100%;
        -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
        mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 1;
    }
    .sticky-mobile-cta__chevrons {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }
    .sticky-mobile-cta__chevrons--right {
        transform: scaleX(-1);
    }
    .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__pill {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    .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(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    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:
            radial-gradient(
                    circle at 50% -10%,
                    rgba(168, 85, 247, 0.32) 0%,
                    transparent 55%
            ),
            linear-gradient(
                    180deg,
                    rgba(38, 26, 66, 0.98) 0%,
                    rgba(15, 10, 29, 0.98) 100%
            );
    border: 1px solid rgba(168, 85, 247, 0.35);
    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 30px 80px rgba(0, 0, 0, 0.7),
            0 0 80px rgba(168, 85, 247, 0.2);
}
.exit-popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
            90deg,
            transparent 0%,
            var(--cta-gold) 30%,
            var(--cta-orange) 50%,
            var(--cta-gold) 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: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #d1d5db;
    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;
    font-family: "Inter", sans-serif;
    z-index: 5;
}
.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    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: linear-gradient(
            90deg,
            rgba(251, 191, 36, 0.16) 0%,
            rgba(245, 158, 11, 0.16) 100%
    );
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: var(--cta-gold);
    font-size: 0.62rem;
    font-weight: 800;
    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;
    filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.45));
    display: block;
}
.exit-popup__headline {
    background: linear-gradient(
            90deg,
            var(--violet-glow) 0%,
            #ffffff 30%,
            var(--cta-gold) 55%,
            var(--cta-orange) 80%,
            var(--violet-glow) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--cta-gold);
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    animation: popupHeadlineGradient 4.5s linear infinite;
}
@keyframes popupHeadlineGradient {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.exit-popup__sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 22px;
}
.exit-popup__offer {
    position: relative;
    background: linear-gradient(
            135deg,
            rgba(251, 191, 36, 0.1) 0%,
            rgba(124, 58, 237, 0.08) 100%
    );
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 18px;
    padding: 22px 18px 18px;
    margin-bottom: 22px;
    overflow: hidden;
}
.exit-popup__offer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -40%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.07),
            transparent
    );
    transform: rotate(20deg);
    animation: popupOfferSweep 4.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes popupOfferSweep {
    0%,
    100% {
        left: -50%;
    }
    55%,
    100% {
        left: 130%;
    }
}
.exit-popup__amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.exit-popup__amount-block {
    text-align: center;
}
.exit-popup__amount-value {
    background: linear-gradient(
            180deg,
            var(--cta-gold) 0%,
            var(--cta-orange) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--cta-gold);
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.exit-popup__amount-label {
    color: #9ca3af;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
    font-weight: 700;
}
.exit-popup__amount-plus {
    color: var(--violet-glow);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-top: -10px;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}
.exit-popup__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
    z-index: 2;
}
.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: #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    transition:
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease;
}
.exit-popup__benefits li:hover {
    background: rgba(168, 85, 247, 0.14);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}
.exit-popup__benefits li::before {
    content: "\2713";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-gold), var(--cta-orange));
    color: #0f0a1d;
    font-size: 0.75rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}
@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;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: popupCtaGlow 2.4s ease-in-out infinite;
}
@keyframes popupCtaGlow {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 28px rgba(245, 158, 11, 0.65);
    }
}
.exit-popup-disclaimer {
    text-align: center;
    color: #6b7280;
    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;
    }
}
