/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #007aff;
    --blue-glow: rgba(0, 122, 255, 0.45);
    --blue-dim: rgba(0, 122, 255, 0.15);
    --gold: #f0b429;
    --red: #ff3b30;
    --green: #30d158;
    --dark: #0a0a0f;
    --dark2: #111118;
    --dark3: #18181f;
    --card-bg: #1c1c26;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5f5f7;
    --sub: rgba(255, 255, 255, 0.5);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

/* Sub-strip exclusivo dentro del header */
.header-sub-strip {
    width: 100%;
    background: rgba(0, 122, 255, 0.12);
    border-top: 1px solid rgba(0, 122, 255, 0.25);
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 4px 16px;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.header-sub-strip strong {
    color: #fff;
    font-weight: 700;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.header-extra-btns {
    display: flex;
    gap: 12px;
}

.head-icon-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.head-icon-btn svg {
    width: 16px;
    height: 16px;
}

.head-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.promo-head {
    color: #f5b041;
    border-color: rgba(245, 176, 65, 0.3);
}

.promo-head:hover {
    background: rgba(245, 176, 65, 0.15);
    border-color: #f5b041;
}

.help-head {
    color: var(--blue);
    border-color: rgba(0, 122, 255, 0.3);
}

.help-head:hover {
    background: rgba(0, 122, 255, 0.15);
    border-color: var(--blue);
}

.whatsapp-head {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-head:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
}

.site-logo {
    display: block;
    text-decoration: none;
    transition: transform 0.2s;
}

.site-logo:hover {
    transform: scale(1.05);
}

.main-logo {
    height: 54px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.3));
}

.register-btn {
    background: linear-gradient(135deg, #0088ff 0%, #005ce6 100%);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid #005ce6;
}

.register-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1a94ff 0%, #0066ff 100%);
}

/* ── Section Block ───────────────────────────────────── */
.section-block {
    padding: 4px 0 6px;
    position: relative;
}

.section-block:first-of-type {
    padding-top: 6px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    margin-bottom: 4px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 8px var(--blue);
    flex-shrink: 0;
}

.label-dot.live-dot {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.label-dot.mini-dot {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.label-cat {
    font-size: 18px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.5px;
}

.label-cat+.label-main {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.live-badge {
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .6;
    }
}

.ver-todo {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--blue-dim);
    padding: 6px 16px;
    border-radius: 50px;
    transition: background .2s, box-shadow .2s;
}

.ver-todo:hover {
    background: var(--blue-dim);
    box-shadow: 0 0 12px var(--blue-glow);
}

/* ── Ticker ──────────────────────────────────────────── */
.ticker-wrap {
    overflow: hidden;
    background: rgba(0, 122, 255, 0.06);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid rgba(0, 122, 255, 0.25);
    padding: 5px 0;
    margin-bottom: 8px;
}

.ticker-wrap.ticker-red {
    background: rgba(255, 59, 48, 0.06);
    border-bottom-color: rgba(255, 59, 48, 0.3);
}

.ticker-wrap.ticker-gold {
    background: rgba(240, 180, 41, 0.06);
    border-bottom-color: rgba(240, 180, 41, 0.3);
}

.ticker-tape {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
}

.ticker-tape span {
    padding: 0 48px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Cards Carousel Wrapper ──────────────────────────── */
.cards-carousel {
    position: relative;
    padding: 0 28px;
}

.cards-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}

.cards-track::-webkit-scrollbar {
    display: none;
}

/* ── Arrow Buttons ───────────────────────────────────── */
.carr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.carr-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 18px var(--blue-glow);
    transform: translateY(-50%) scale(1.08);
}

.carr-left {
    left: -4px;
}

.carr-right {
    right: -4px;
}

/* ── Game Card (base) ────────────────────────────────── */
.game-card {
    position: relative;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1),
        box-shadow .28s cubic-bezier(.4, 0, .2, 1),
        border-color .28s;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--blue);
    border-color: var(--blue);
}

.game-card:hover .card-hover-overlay {
    opacity: 1;
}

.game-card:hover .card-img {
    transform: scale(1.06);
}

/* Card sizes per section */
.card-slots {
    width: 246px;
    height: 419px;
    /* 246×419 */
    background: none;
    border: none;
    box-shadow: none;
}

.card-slots:hover {
    transform: scale(1.05);
    box-shadow: none;
    border-color: transparent;
}

.card-live {
    width: 253px;
    height: 327px;
    /* 253×327 */
}

.card-mini {
    width: 317px;
    height: 215px;
    /* 317×215 */
    background: none;
    border: none;
    box-shadow: none;
}

.card-mini .card-footer {
    display: none;
}

.card-mini:hover {
    transform: scale(1.05);
    box-shadow: none;
    border-color: transparent;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    transform: scale(1.02);
    /* Evita líneas blancas por renderizado subpixel */
}

/* Card footer label */
.card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-provider {
    font-size: 10px;
    font-weight: 500;
    color: var(--sub);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Hover overlay with play button */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    backdrop-filter: blur(2px);
}

.card-play-btn {
    background: var(--blue);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px var(--blue-glow);
    transition: transform .2s, box-shadow .2s;
    letter-spacing: 0.3px;
}

.card-play-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 28px var(--blue-glow);
}

/* Live indicator badge on cards */
.live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    animation: pulse-badge 2s ease-in-out infinite;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 36px 24px 28px;
    text-align: center;
    margin-top: 16px;
}

.footer-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.foot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid;
    transition: transform .2s, box-shadow .2s;
}

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

.promo-foot {
    color: #f5b041;
    border-color: #f5b041;
}

.promo-foot:hover {
    box-shadow: 0 6px 24px rgba(245, 176, 65, 0.35);
    background: rgba(245, 176, 65, 0.1);
}

.help-foot {
    color: var(--blue);
    border-color: var(--blue);
}

.help-foot:hover {
    box-shadow: 0 6px 24px var(--blue-glow);
    background: rgba(0, 122, 255, 0.1);
}

.whatsapp-foot {
    color: #25d366;
    border-color: #25d366;
}

.whatsapp-foot:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
    background: rgba(37, 211, 102, 0.1);
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: .4px;
}

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 32px 30px;
    max-width: 520px;
    width: 100%;
    position: relative;
    max-height: 88vh;
    overflow-y: auto;
    animation: modalIn .25s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--blue-dim);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.95);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    margin-bottom: 14px;
}

.modal-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-box .modal-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 22px;
}

.modal-box .tc-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.modal-box .tc-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 12px;
}

.modal-cta {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 34px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.modal-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px var(--blue-glow);
}

/* ── Hero CTA ────────────────────────────────────────── */
.hero-cta {
    padding: 12px 28px 0;
    background: linear-gradient(0deg, rgba(0, 122, 255, 0.1) 0%, transparent 100%);
    border-top: 1px solid rgba(0, 122, 255, 0.15);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: var(--blue-dim);
    border: 1px solid rgba(0, 122, 255, 0.4);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #fff;
}

.hero-title strong {
    color: var(--blue);
}

.hero-sub {
    font-size: 14px;
    color: var(--sub);
    max-width: 480px;
}

/* ── Urgency Styles ── */
.urgency-cta {
    background: linear-gradient(135deg, rgba(30, 20, 20, 0.9) 0%, rgba(20, 20, 30, 0.95) 100%);
    border-top: 1px solid rgba(255, 50, 50, 0.2);
}

.urgency-badge {
    background: rgba(255, 50, 50, 0.1) !important;
    color: #ff4d4d !important;
    border-color: rgba(255, 50, 50, 0.3) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-text {
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-text strong {
    font-size: 15px;
}

.pulse-btn {
    animation: pulse-btn-anim 2s infinite;
    background: linear-gradient(90deg, #009EE3 0%, #0056b3 100%) !important;
    border: none;
}

@keyframes pulse-btn-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 158, 227, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(0, 158, 227, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 158, 227, 0);
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 32px var(--blue-glow);
    transition: transform .22s, box-shadow .22s;
    animation: hero-pulse 3s ease-in-out infinite;
}

.hero-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px var(--blue-glow);
}

@keyframes hero-pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px var(--blue-glow);
    }

    50% {
        box-shadow: 0 8px 48px rgba(0, 122, 255, 0.7);
    }
}

/* ── Section order ────────────────────────────────────── */
#main-content {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    /* offset del header lo maneja margin-top en live-counter-bar */
}

/* hero primero, luego juegos, FAQ al fondo */
.hero-main {
    order: 0;
}

#minigames {
    order: 1;
}

#slots {
    order: 2;
}

#live {
    order: 3;
}

.providers-section {
    order: 4;
}

.payment-ar {
    order: 5;
}

.urgency-cta {
    order: 6;
}

.faq-section {
    order: 7;
}


.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1) brightness(1.5);
    transition: opacity 0.3s, filter 0.3s;
}

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

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
    .section-header {
        padding: 0 16px;
    }

    .cards-carousel {
        padding: 0 16px;
    }

    .label-cat,
    .label-cat+.label-main {
        font-size: 18px;
    }

    .carr-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .card-slots {
        width: 200px;
        height: 342px;
    }

    .card-live {
        width: 200px;
        height: 258px;
    }

    .card-mini {
        width: 260px;
        height: 176px;
    }

    /* Hero CTA mobile */
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0 24px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        font-size: 17px;
        padding: 18px;
    }

    /* Footer buttons – big WhatsApp style on mobile */
    .site-footer {
        padding: 24px 16px 20px;
    }

    .footer-btns {
        flex-direction: column;
        gap: 12px;
    }

    .foot-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 800;
        border-radius: 16px;
        border-width: 2px;
        letter-spacing: 0.2px;
    }

    .help-foot {
        background: rgba(0, 122, 255, 0.1);
    }

    .whatsapp-foot {
        background: rgba(37, 211, 102, 0.1);
        font-size: 18px;
        padding: 20px 24px;
    }
}

/* ── Help Page ────────────────────────────────────────── */
.help-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 28px;
}

.help-title {
    margin-bottom: 40px;
    text-align: center;
}

.help-title h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.help-title p {
    color: var(--text-dim);
    font-size: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform .22s, border-color .22s, box-shadow .22s;
}

.faq-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
}

.contact-box {
    margin-top: 60px;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.contact-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.contact-box p {
    color: var(--text-dim);
    margin-bottom: 32px;
}

/* ── Mercado Pago ARS Section ──────────────────────────── */
.payment-ar {
    padding: 0 0 40px 0;
}

.payment-ar-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 158, 227, 0.08) 0%, rgba(13, 15, 23, 1) 100%);
    border: 1px solid rgba(0, 158, 227, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.payment-ar-header {
    text-align: center;
    margin-bottom: 40px;
}

.ar-badge {
    display: inline-block;
    background: #009EE3;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 158, 227, 0.4);
}

.payment-ar-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.payment-ar-title strong {
    color: #009EE3;
}

.payment-ar-sub {
    font-size: 16px;
    color: var(--text-dim);
}

.payment-ar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-ar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
}

.payment-ar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.payment-ar-card p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.ar-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-steps li {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.ar-steps li .step-num {
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #009EE3;
}

.ar-details summary {
    cursor: pointer;
    background: rgba(0, 158, 227, 0.1);
    color: #009EE3;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    list-style: none;
    transition: background 0.3s;
    margin-bottom: 24px;
}

.ar-details summary::-webkit-details-marker {
    display: none;
}

.ar-details summary:hover {
    background: rgba(0, 158, 227, 0.2);
}

.ar-details[open] summary {
    background: rgba(0, 158, 227, 0.15);
}

.ar-highlight {
    background: rgba(0, 158, 227, 0.1);
    border-left: 4px solid #009EE3;
    padding: 16px;
    border-radius: 4px 12px 12px 4px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ar-cta-btn {
    display: inline-block;
    background: #009EE3;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s;
    box-shadow: 0 8px 25px rgba(0, 158, 227, 0.3);
}

.ar-cta-btn:hover {
    background: #008cc9;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 158, 227, 0.4);
}

/* ── Providers Section ───────────────────────────────────── */
.providers-section {
    padding: 0 0 20px 0;
}

.providers-details {
    max-width: 1200px;
    margin: 0 auto;
}

.providers-details summary {
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.15) 0%, rgba(0, 92, 230, 0.25) 100%);
    color: #66b3ff;
    border: 1px solid rgba(0, 136, 255, 0.3);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.providers-details summary:hover {
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.2) 0%, rgba(0, 92, 230, 0.35) 100%);
    border-color: rgba(0, 136, 255, 0.5);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.2);
}

.providers-details[open] summary {
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.15) 0%, rgba(0, 92, 230, 0.25) 100%);
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.providers-container {
    padding: 0;
}

.by-provider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 136, 255, 0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin: 0;
}

.by-provider li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
    cursor: default;
    padding: 8px;
    border-radius: 8px;
}

.by-provider li:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.vendor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 25px;
}

.vendor-icon img {
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .payment-ar-grid {
        grid-template-columns: 1fr;
    }

    .payment-ar-title {
        font-size: 26px;
    }

    .header-inner {
        padding: 0 16px;
        grid-template-columns: auto 1fr;
    }

    .header-left {
        display: none;
    }

    .header-right {
        gap: 10px;
    }

    .header-extra-btns {
        gap: 8px;
    }

    .head-icon-btn .btn-text {
        display: none;
    }

    .head-icon-btn {
        padding: 8px;
        border-radius: 50%;
    }

    .register-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .header-sub-strip {
        font-size: 10px;
        padding: 3px 12px;
    }

    .live-counter-bar {
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .payment-ar-inner {
        padding: 24px;
    }
}

/* ── NUEVOS ESTILOS (HERO, FAQ, STICKY BANNER, WHATSAPP, SOCIAL PROOF) ── */

/* Hero Main — al fondo de la página */
.hero-main {
    padding: 40px 20px 30px;
    background: radial-gradient(circle at top center, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-main-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-main-badge {
    display: inline-block;
    background: rgba(255, 59, 48, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}

.hero-main-title strong {
    color: var(--blue);
}

.hero-main-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-main-sub strong {
    color: #fff;
}

.hero-main-urgency {
    font-size: 14px;
    color: #ff4d4d;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
}

.hero-main-urgency strong {
    font-size: 16px;
}

.hero-main-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0088ff 0%, #005ce6 100%);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 32px;
    width: 100%;
    max-width: 350px;
}

.hero-main-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.7);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

.hero-payment-logos {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* FAQ Section */
.faq-section {
    padding: 40px 28px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--blue);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 998;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    pointer-events: none;
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-icon {
    font-size: 24px;
}

.social-proof-text {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.social-proof-text strong {
    color: #fff;
}

.sp-amount {
    color: #30d158;
    font-weight: 800;
}

/* Sticky Mobile Banner */
.sticky-mobile-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 122, 255, 0.3);
    padding: 12px 20px;
    z-index: 997;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.smb-text {
    display: flex;
    flex-direction: column;
}

.smb-text strong {
    font-size: 15px;
    color: #fff;
}

.smb-text span {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
}

.smb-btn {
    background: linear-gradient(135deg, #0088ff 0%, #005ce6 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}

@media (max-width: 768px) {
    .sticky-mobile-banner {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 90px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    .social-proof-popup {
        bottom: 90px;
        left: 16px;
        right: 16px;
        justify-content: center;
    }

    .hero-main {
        padding: 40px 16px 30px;
    }
}

/* ══════════════════════════════════════════════════
   NUEVAS FEATURES: contador, banner exclusivo,
   popups, sticky bar, 3D cards, lazy skeleton, ARS
   ══════════════════════════════════════════════════ */

/* ── ARS tag ────────────────────────────────────── */
.ars-tag {
    display: inline-block;
    background: rgba(48, 209, 88, 0.12);
    border: 1px solid rgba(48, 209, 88, 0.35);
    color: #30d158;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ── Banner exclusivo ───────────────────────────── */
.exclusive-banner {
    background: linear-gradient(90deg, rgba(0, 122, 255, 0.15) 0%, rgba(0, 92, 230, 0.2) 100%);
    border-bottom: 1px solid rgba(0, 122, 255, 0.3);
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 72px;
    /* debajo del header fijo */
    animation: shimmerBanner 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmerBanner {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.exc-lock {
    font-size: 16px;
}

.exc-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.exc-text strong {
    color: #fff;
}

.exc-btn {
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px var(--blue-glow);
}

.exc-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--blue-glow);
}

/* ── Contador jugadores activos ─────────────────── */
.live-counter-bar {
    background: rgba(48, 209, 88, 0.06);
    border-bottom: 1px solid rgba(48, 209, 88, 0.2);
    padding: 5px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 1px;
    /* debajo del header fijo (72px nav + 24px sub-strip) */
}

.live-counter-bar strong {
    color: #30d158;
    font-size: 15px;
    font-weight: 800;
}

.live-counter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30d158;
    animation: pulse-green 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 209, 88, .7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(48, 209, 88, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0);
    }
}

/* ── Sticky CTA Bar (desktop) ───────────────────── */
.sticky-cta-bar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 190;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 122, 255, 0.35);
    padding: 10px 28px;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.scb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.scb-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.scb-text strong {
    color: #fff;
}

.scb-ars {
    color: #30d158;
    font-weight: 700;
}

.scb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.scb-live {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-dot-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #30d158;
    animation: pulse-green 1.5s ease-in-out infinite;
    display: inline-block;
}

.scb-btn {
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--blue-glow);
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
}

.scb-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 22px var(--blue-glow);
}

@media (max-width: 600px) {
    .sticky-cta-bar {
        display: none;
    }

    /* mobile usa sticky-mobile-banner */
    .scb-ars,
    .scb-sep,
    .scb-live {
        display: none;
    }
}

/* ── Welcome Popup ──────────────────────────────── */
.welcome-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-overlay.open {
    display: flex;
}

.welcome-box {
    background: linear-gradient(145deg, #111118 0%, #1a1a2e 100%);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 24px;
    padding: 40px 32px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 122, 255, 0.15);
    animation: modalIn .3s ease;
}

.welcome-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.welcome-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.wp-tag {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.wp-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wp-amounts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.wp-usd {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.wp-usd strong {
    color: var(--blue);
}

.wp-ars {
    font-size: 14px;
    font-weight: 700;
    color: #30d158;
    background: rgba(48, 209, 88, 0.1);
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(48, 209, 88, 0.25);
}

.wp-ars strong {
    color: #30d158;
}

.wp-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

.wp-timer-row {
    font-size: 14px;
    color: #ff4d4d;
    font-weight: 700;
    margin-bottom: 20px;
    background: rgba(255, 59, 48, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
}

.wp-timer-row strong {
    font-size: 18px;
}

.wp-btn {
    display: block;
    background: linear-gradient(135deg, #0088ff, #005ce6);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 14px;
    box-shadow: 0 8px 28px var(--blue-glow);
    transition: transform .2s, box-shadow .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.wp-btn:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 12px 36px var(--blue-glow);
}

.wp-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
}

/* ── Exit-Intent Popup ──────────────────────────── */
.exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 850;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-overlay.open {
    display: flex;
}

.exit-box {
    background: linear-gradient(145deg, #111118, #1c0a0a);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 24px;
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 59, 48, 0.1);
    animation: modalIn .3s ease;
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.exit-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.ep-emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

.ep-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ep-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.ep-bonus strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.ep-ars {
    font-size: 14px;
    font-weight: 700;
    color: #30d158;
    background: rgba(48, 209, 88, 0.1);
    padding: 3px 12px;
    border-radius: 50px;
}

.ep-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}

.ep-btn {
    display: block;
    background: linear-gradient(135deg, #ff4500, #cc2200);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
    transition: transform .2s, box-shadow .2s;
    text-transform: uppercase;
}

.ep-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(255, 69, 0, .5);
}

.ep-dismiss {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    transition: color .2s;
}

.ep-dismiss:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ── 3D Card Tilt ───────────────────────────────── */
.game-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* El JS aplica el tilt via style inline en mousemove */

/* Lazy loading skeleton ────────────────────────── */
.card-img {
    background: linear-gradient(90deg, #1c1c26 25%, #252535 50%, #1c1c26 75%);
    background-size: 400% 100%;
    animation: skeleton 1.4s ease-in-out infinite;
}

.card-img.loaded {
    background: none;
    animation: none;
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}