/**
 * =====================================================
 * STREAMERS PAGE - DISEÃ‘O ULTRA PREMIUM
 * =====================================================
 * Sistema visual con efectos neon intensos, partÃ­culas,
 * elementos decorativos flotantes y animaciones que
 * hacen resaltar a cada streamer como algo especial.
 */

/* Variables de diseÃ±o */
.page-streamers-premium {
    --neon-purple: #9d4edd;
    --neon-pink: #ff007f;
    --neon-cyan: #00f3ff;
    --neon-gold: #ffd700;
    --neon-magenta: #ff00ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);

    background: linear-gradient(180deg, #0a0015 0%, #1a0525 30%, #0f0020 60%, #050010 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* =====================================================
   EFECTOS DE FONDO ANIMADOS
   ===================================================== */

/* Orbes de luz flotantes */
.page-streamers-premium::before {
    content: '';
    position: fixed;
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb-1 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.page-streamers-premium::after {
    content: '';
    position: fixed;
    bottom: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-orb-2 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-orb-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

@keyframes float-orb-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-80px, -60px) scale(1.2);
    }
}

/* Capa de partÃ­culas/estrellas */
.particles-layer {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(157, 78, 221, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 127, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0, 243, 255, 0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, white, transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(255, 215, 0, 0.5), transparent),
        radial-gradient(1px 1px at 40px 120px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 80px 150px, rgba(157, 78, 221, 0.4), transparent),
        radial-gradient(1px 1px at 120px 140px, rgba(255, 0, 127, 0.3), transparent),
        radial-gradient(2px 2px at 180px 130px, rgba(0, 243, 255, 0.5), transparent);
    background-size: 200px 160px;
    animation: twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Grid de fondo con neon */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(157, 78, 221, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* =====================================================
   GATITA MASCOTA FLOTANTE
   ===================================================== */
.streamer-mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: auto;
    z-index: 100;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5)) drop-shadow(0 0 40px rgba(255, 0, 127, 0.3));
    animation: mascot-float 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.streamer-mascot:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.8)) drop-shadow(0 0 60px rgba(255, 0, 127, 0.5));
}

@keyframes mascot-float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Gatita decorativa en el hero */
.hero-mascot {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.15;
    filter: blur(1px);
    pointer-events: none;
    animation: hero-mascot-pulse 5s ease-in-out infinite;
}

@keyframes hero-mascot-pulse {

    0%,
    100% {
        opacity: 0.1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1.05);
    }
}

/* =====================================================
   HERO SECTION - ULTRA IMPACTANTE
   ===================================================== */
.streamers-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 7rem 2rem 3rem;
    overflow: hidden;
}

/* Resplandor central */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(157, 78, 221, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Badge animado con brillo */
.streamers-hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3) 0%, rgba(255, 0, 127, 0.2) 100%);
    border: 2px solid rgba(157, 78, 221, 0.6);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: badge-glow 3s ease-in-out infinite;
}

.streamers-hero__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.5), 0 0 40px rgba(157, 78, 221, 0.3), inset 0 0 20px rgba(157, 78, 221, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 0, 127, 0.6), 0 0 60px rgba(255, 0, 127, 0.4), inset 0 0 30px rgba(255, 0, 127, 0.1);
    }
}

.streamers-hero__badge i {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* TÃ­tulo con efecto neon */
.streamers-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    position: relative;
}

.streamers-hero__title-main {
    display: block;
    color: #fff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
}

.streamers-hero__title-accent {
    display: block;
    background: linear-gradient(90deg, var(--neon-purple) 0%, var(--neon-pink) 30%, var(--neon-magenta) 60%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.8)) drop-shadow(0 0 60px rgba(255, 0, 127, 0.5));
    animation: neon-flicker 4s ease-in-out infinite;
}

@keyframes neon-flicker {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.8)) drop-shadow(0 0 60px rgba(255, 0, 127, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(157, 78, 221, 1)) drop-shadow(0 0 80px rgba(255, 0, 127, 0.8));
    }
}

.streamers-hero__subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* LÃ­neas decorativas neon */
.hero-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-pink), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-pink);
}

.hero-diamond {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    transform: rotate(45deg);
    box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-purple);
    animation: diamond-pulse 2s ease-in-out infinite;
}

@keyframes diamond-pulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(45deg) scale(1.3);
    }
}

/* =====================================================
   ESTADÃSTICAS CON EFECTO NEON
   ===================================================== */
.streamers-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.streamers-stats__item {
    text-align: center;
    padding: 1.8rem 2.5rem;
    background: linear-gradient(145deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 0, 127, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.streamers-stats__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.streamers-stats__item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--neon-purple);
    box-shadow:
        0 0 20px rgba(157, 78, 221, 0.4),
        0 0 40px rgba(157, 78, 221, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.streamers-stats__item:hover::before {
    opacity: 1;
}

.streamers-stats__icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

.streamers-stats__icon--purple {
    color: var(--neon-purple);
}

.streamers-stats__icon--pink {
    color: var(--neon-pink);
}

.streamers-stats__icon--cyan {
    color: var(--neon-cyan);
}

.streamers-stats__number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--neon-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.streamers-stats__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

/* =====================================================
   SECCIÃ“N TÃTULO STREAMERS
   ===================================================== */
.streamers-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.section-label i {
    font-size: 1.2rem;
    animation: star-spin 4s linear infinite;
}

@keyframes star-spin {
    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.section-divider__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple));
    border-radius: 2px;
}

.section-divider__line:last-child {
    background: linear-gradient(90deg, var(--neon-pink), transparent);
}

.section-divider__star {
    color: var(--neon-gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-gold));
    animation: pulse-icon 2s ease-in-out infinite;
}

/* =====================================================
   GRID DE STREAMERS
   ===================================================== */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3.5rem;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 10;
}

/* =====================================================
   TARJETA DE STREAMER - DISEÃ‘O COMPACTO ESPECTACULAR
   ===================================================== */
.streamer-card {
    position: relative;
    background: linear-gradient(160deg, rgba(157, 78, 221, 0.08) 0%, rgba(255, 0, 127, 0.05) 50%, rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 400px;
    margin: 0 auto;
}

/* Efecto de borde brillante */
.streamer-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-purple));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: border-rotate 4s linear infinite;
    background-size: 300% 300%;
}

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Efecto de brillo interno */
.streamer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.streamer-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: transparent;
    box-shadow:
        0 0 30px rgba(157, 78, 221, 0.5),
        0 0 60px rgba(255, 0, 127, 0.3),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

.streamer-card:hover::before {
    opacity: 1;
}

.streamer-card:hover::after {
    opacity: 1;
}

/* Header con imagen - compacto */
.streamer-card__header {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.streamer-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
}

.streamer-card:hover .streamer-card__cover {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.2);
}

/* Overlay con gradiente - mas transparente para ver mejor la imagen */
.streamer-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 0, 20, 1) 0%,
            rgba(10, 0, 20, 0.85) 15%,
            rgba(10, 0, 20, 0.3) 40%,
            rgba(10, 0, 20, 0.1) 60%,
            transparent 100%);
    z-index: 2;
}

/* Efectos de luz en las esquinas */
.streamer-card__corner-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.streamer-card__corner-glow--top {
    top: -50px;
    right: -50px;
    background: var(--neon-pink);
}

.streamer-card__corner-glow--bottom {
    bottom: 50px;
    left: -50px;
    background: var(--neon-purple);
}

.streamer-card:hover .streamer-card__corner-glow {
    opacity: 0.8;
}

/* Badge de plataforma con brillo */
.streamer-card__platform {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.95), rgba(100, 50, 200, 0.9));
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: platform-pulse 3s ease-in-out infinite;
}

@keyframes platform-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(145, 70, 255, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(145, 70, 255, 0.9), 0 5px 20px rgba(0, 0, 0, 0.4);
    }
}

.streamer-card__platform i {
    font-size: 1.2rem;
}

/* Badge especial "OFICIAL" */
.streamer-card__official {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--neon-gold), #ff9500);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: official-shine 2s ease-in-out infinite;
}

@keyframes official-shine {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 1);
    }
}

/* Cuerpo de la tarjeta */
.streamer-card__body {
    position: relative;
    z-index: 5;
    padding: 2rem 2rem 2.5rem;
    margin-top: -100px;
}

/* Nombre con efecto */
.streamer-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.streamer-card__verified {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.8);
    animation: verified-pulse 2s ease-in-out infinite;
}

@keyframes verified-pulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(157, 78, 221, 0.8);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 127, 1);
        transform: scale(1.1);
    }
}

.streamer-card__bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Tags con neon */
.streamer-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.streamer-card__tag {
    padding: 0.5rem 1.2rem;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

.streamer-card__tag:hover {
    background: rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    transform: translateY(-2px);
}

.streamer-card__tag--pink {
    background: rgba(255, 0, 127, 0.15);
    border-color: rgba(255, 0, 127, 0.4);
    color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.streamer-card__tag--pink:hover {
    background: rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}

.streamer-card__tag--cyan {
    background: rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.4);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.streamer-card__tag--cyan:hover {
    background: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* EstadÃ­sticas con brillo */
.streamer-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.8rem;
}

.streamer-card__stat {
    text-align: center;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.streamer-card__stat:hover {
    background: rgba(157, 78, 221, 0.1);
}

.streamer-card__stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.streamer-card__stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}

/* BotÃ³n espectacular */
.streamer-card__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, #7b2cbf 50%, var(--neon-pink) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
    animation: btn-gradient 4s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes btn-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.streamer-card__action:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(157, 78, 221, 0.5),
        0 0 30px rgba(255, 0, 127, 0.4);
}

.streamer-card__action i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.streamer-card__action:hover i:last-child {
    transform: translateX(5px);
}

/* Efectos decorativos en la tarjeta */
.streamer-card__sparkles {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.streamer-card:hover .streamer-card__sparkles {
    opacity: 1;
}

.sparkle {
    width: 8px;
    height: 8px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle-twinkle 1.5s ease-in-out infinite;
}

.sparkle:nth-child(2) {
    animation-delay: 0.3s;
}

.sparkle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes sparkle-twinkle {

    0%,
    100% {
        transform: scale(0.5);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* =====================================================
   SECCIÃ“N CTA PREMIUM
   ===================================================== */
.streamers-cta {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 4rem auto 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 0, 127, 0.05) 50%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 40px;
    text-align: center;
    overflow: hidden;
}

/* Efecto de brillo rotativo */
.streamers-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(157, 78, 221, 0.15), transparent, rgba(255, 0, 127, 0.1), transparent);
    animation: rotate-cta 15s linear infinite;
    z-index: 0;
}

@keyframes rotate-cta {
    100% {
        transform: rotate(360deg);
    }
}

.streamers-cta__content {
    position: relative;
    z-index: 1;
}

.streamers-cta__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow:
        0 20px 40px rgba(157, 78, 221, 0.5),
        0 0 50px rgba(255, 0, 127, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.streamers-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.streamers-cta__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.streamers-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a0520;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.streamers-cta__btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3);
}

/* =====================================================
   BOTÃ“N VOLVER
   ===================================================== */
.streamers-back {
    display: flex;
    justify-content: center;
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.streamers-back__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.streamers-back__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-purple);
    color: white;
    transform: translateX(-10px);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

/* =====================================================
   RESPONSIVE - DISEÃ‘O ADAPTATIVO COMPLETO
   ===================================================== */

/* Tablets grandes y laptops pequeÃ±as */
@media (max-width: 1200px) {
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 1.5rem;
    }

    .streamer-card {
        max-width: 100%;
    }

    .streamers-cta {
        max-width: 90%;
        padding: 3rem 2.5rem;
    }

    .streamers-hero__title {
        font-size: clamp(3rem, 10vw, 6rem);
    }
}

/* Tablets */
@media (max-width: 900px) {
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
    }

    .streamer-card {
        max-width: 100%;
    }

    .streamer-card__header {
        height: 240px;
    }

    .streamer-card__body {
        padding: 1.5rem;
        margin-top: -60px;
    }

    .streamer-card__name {
        font-size: 1.6rem;
    }

    .streamer-card__bio {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .streamer-card__stats {
        padding: 1rem;
    }

    .streamer-card__stat-value {
        font-size: 1.2rem;
    }

    .hero-mascot {
        display: none;
    }

    .streamer-mascot {
        width: 120px;
        bottom: 10px;
        right: 10px;
    }

    .streamers-stats {
        gap: 1.5rem;
    }

    .streamers-stats__item {
        padding: 1.2rem 1.5rem;
        min-width: 130px;
    }

    .streamers-stats__number {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .streamers-hero__subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Tablets pequeÃ±as y mÃ³viles grandes */
@media (max-width: 768px) {
    .streamers-hero {
        padding: 6rem 1.5rem 2.5rem;
    }

    .streamers-hero__badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .streamers-hero__title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .streamers-hero__subtitle {
        font-size: 1rem;
    }

    .hero-decorations {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-line {
        width: 80px;
    }

    .streamers-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .streamers-stats__item {
        min-width: 100px;
        padding: 1rem 1.2rem;
    }

    .streamers-stats__icon {
        font-size: 1.5rem;
    }

    .streamers-stats__number {
        font-size: 1.8rem;
    }

    .streamers-stats__label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .streamers-section-header {
        margin-bottom: 2.5rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .streamers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 1.5rem 3rem;
    }

    .streamer-card__header {
        height: 260px;
    }

    .streamer-card__tags {
        gap: 0.4rem;
    }

    .streamer-card__tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .streamer-card__action {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .streamers-cta {
        margin: 2rem 1.5rem 3rem;
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .streamers-cta__icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .streamers-cta__title {
        font-size: 1.8rem;
    }

    .streamers-cta__text {
        font-size: 1rem;
    }

    .streamers-cta__btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .streamers-back {
        padding-bottom: 4rem;
    }

    .streamers-back__btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* MÃ³viles */
@media (max-width: 600px) {
    .streamers-hero {
        padding: 5rem 1rem 2rem;
    }

    .streamers-hero__badge {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
        gap: 0.5rem;
    }

    .streamers-hero__badge i {
        font-size: 1rem;
    }

    .streamers-hero__title {
        font-size: clamp(2rem, 14vw, 3.5rem);
        letter-spacing: -1px;
    }

    .streamers-hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-decorations {
        gap: 0.8rem;
    }

    .hero-line {
        width: 60px;
        height: 2px;
    }

    .hero-diamond {
        width: 12px;
        height: 12px;
    }

    .streamers-stats {
        gap: 0.8rem;
        margin-bottom: 3rem;
    }

    .streamers-stats__item {
        min-width: 90px;
        padding: 0.8rem 1rem;
        border-radius: 14px;
    }

    .streamers-stats__icon {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .streamers-stats__number {
        font-size: 1.5rem;
    }

    .streamers-stats__label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .section-label {
        font-size: 0.65rem;
        gap: 0.5rem;
    }

    .section-label i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-divider__line {
        width: 50px;
    }

    .section-divider__star {
        font-size: 1.2rem;
    }

    .streamers-grid {
        padding: 0 1rem 2.5rem;
        max-width: 100%;
    }

    .streamer-card {
        border-radius: 20px;
        max-width: 100%;
    }

    .streamer-card__header {
        height: 240px;
    }

    .streamer-card__platform,
    .streamer-card__official {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .streamer-card__platform {
        top: 1rem;
        left: 1rem;
    }

    .streamer-card__official {
        top: 1rem;
        right: 1rem;
    }

    .streamer-card__body {
        padding: 1.2rem;
        margin-top: -50px;
    }

    .streamer-card__name {
        font-size: 1.5rem;
        gap: 0.6rem;
    }

    .streamer-card__verified {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }

    .streamer-card__bio {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .streamer-card__tags {
        margin-bottom: 1.2rem;
    }

    .streamer-card__stats {
        padding: 1rem;
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }

    .streamer-card__stat-value {
        font-size: 1.1rem;
    }

    .streamer-card__stat-label {
        font-size: 0.6rem;
    }

    .streamer-card__action {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 12px;
        gap: 0.6rem;
    }

    .streamer-card__action i {
        font-size: 1.1rem;
    }

    .streamer-mascot {
        width: 100px;
        bottom: 8px;
        right: 8px;
    }

    .streamers-cta {
        margin: 1.5rem 1rem 2.5rem;
        padding: 2rem 1.2rem;
        border-radius: 20px;
    }

    .streamers-cta__icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .streamers-cta__title {
        font-size: 1.5rem;
    }

    .streamers-cta__text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .streamers-cta__btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .streamers-back {
        padding-bottom: 3rem;
    }

    .streamers-back__btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

/* MÃ³viles pequeÃ±os */
@media (max-width: 400px) {
    .streamers-hero__title {
        font-size: 2rem;
    }

    .streamers-stats__item {
        min-width: 80px;
        padding: 0.7rem 0.8rem;
    }

    .streamers-stats__number {
        font-size: 1.3rem;
    }

    .streamer-card__header {
        height: 200px;
    }

    .streamer-card__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .streamer-mascot {
        width: 80px;
    }
}

/* AnimaciÃ³n de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.streamer-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.streamer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.streamer-card:nth-child(2) {
    animation-delay: 0.25s;
}

.streamer-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* =====================================================
   TEMA CLARO - LIGHT MODE
   ===================================================== 
   Versión alternativa con colores vibrantes sobre fondo claro,
   manteniendo el estilo premium y llamativo.
*/

/* Detectar preferencia de tema claro */
@media (prefers-color-scheme: light) {
    .page-streamers-premium {
        --light-bg: #f8f5ff;
        --light-bg-alt: #fff0f8;
        --light-card: rgba(255, 255, 255, 0.95);
        --light-text: #1a0525;
        --light-text-soft: #4a3a5a;
        --neon-purple-light: #8b3fd9;
        --neon-pink-light: #e6006b;
        --neon-cyan-light: #00c4d4;
        
        background: linear-gradient(180deg, 
            var(--light-bg) 0%, 
            var(--light-bg-alt) 30%, 
            #fff5fa 60%, 
            var(--light-bg) 100%);
    }
    
    /* Orbes de fondo más sutiles */
    .page-streamers-premium::before {
        background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
        filter: blur(100px);
    }
    
    .page-streamers-premium::after {
        background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 70%);
        filter: blur(80px);
    }
    
    /* Partículas más sutiles */
    .particles-layer {
        background-image:
            radial-gradient(2px 2px at 20px 30px, rgba(157, 78, 221, 0.3), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(157, 78, 221, 0.4), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 127, 0.3), transparent),
            radial-gradient(2px 2px at 130px 80px, rgba(0, 196, 212, 0.3), transparent),
            radial-gradient(1px 1px at 160px 30px, rgba(157, 78, 221, 0.5), transparent),
            radial-gradient(2px 2px at 200px 60px, rgba(255, 215, 0, 0.4), transparent);
        opacity: 0.7;
    }
    
    /* Grid overlay más sutil */
    .grid-overlay {
        background-image:
            linear-gradient(rgba(157, 78, 221, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(157, 78, 221, 0.03) 1px, transparent 1px);
    }
    
    /* Hero badge claro */
    .streamers-hero__badge {
        background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 127, 0.1) 100%);
        border: 2px solid rgba(157, 78, 221, 0.4);
        color: var(--neon-purple-light);
        box-shadow: 
            0 4px 20px rgba(157, 78, 221, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    }
    
    .streamers-hero__badge i {
        color: var(--neon-cyan-light);
    }
    
    /* Título claro */
    .streamers-hero__title-main {
        color: var(--light-text);
        text-shadow: 
            0 2px 10px rgba(157, 78, 221, 0.2),
            0 0 30px rgba(255, 0, 127, 0.1);
    }
    
    .streamers-hero__title-accent {
        filter: drop-shadow(0 4px 15px rgba(157, 78, 221, 0.4)) 
                drop-shadow(0 0 30px rgba(255, 0, 127, 0.3));
    }
    
    .streamers-hero__subtitle {
        color: var(--light-text-soft);
        text-shadow: none;
    }
    
    /* Hero glow claro */
    .hero-glow {
        background: radial-gradient(ellipse, rgba(157, 78, 221, 0.08) 0%, transparent 60%);
    }
    
    /* Líneas decorativas */
    .hero-line {
        background: linear-gradient(90deg, transparent, var(--neon-purple-light), var(--neon-pink-light), transparent);
        box-shadow: 0 2px 15px rgba(157, 78, 221, 0.3);
    }
    
    .hero-diamond {
        background: linear-gradient(135deg, var(--neon-cyan-light), var(--neon-purple-light));
        box-shadow: 0 4px 20px rgba(0, 196, 212, 0.4);
    }
    
    /* Estadísticas claras */
    .streamers-stats__item {
        background: var(--light-card);
        border: 1px solid rgba(157, 78, 221, 0.2);
        box-shadow: 
            0 8px 32px rgba(157, 78, 221, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    }
    
    .streamers-stats__item:hover {
        box-shadow: 
            0 12px 40px rgba(157, 78, 221, 0.25),
            0 0 30px rgba(255, 0, 127, 0.15),
            0 0 0 1px rgba(255, 255, 255, 1) inset;
    }
    
    .streamers-stats__number {
        background: linear-gradient(135deg, var(--neon-purple-light) 0%, var(--neon-pink-light) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        text-shadow: none;
    }
    
    .streamers-stats__label {
        color: var(--light-text-soft);
    }
    
    /* Sección título claro */
    .section-label {
        color: var(--neon-purple-light);
    }
    
    .section-title {
        color: var(--light-text);
        text-shadow: 0 2px 10px rgba(157, 78, 221, 0.15);
    }
    
    .section-divider__line {
        background: linear-gradient(90deg, transparent, var(--neon-purple-light));
    }
    
    .section-divider__line:last-child {
        background: linear-gradient(90deg, var(--neon-pink-light), transparent);
    }
    
    /* Tarjeta de streamer clara */
    .streamer-card {
        background: var(--light-card);
        border: 2px solid rgba(157, 78, 221, 0.15);
        box-shadow: 
            0 10px 40px rgba(157, 78, 221, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    }
    
    .streamer-card::before {
        background: linear-gradient(45deg, var(--neon-purple-light), var(--neon-pink-light), var(--neon-cyan-light), var(--neon-purple-light));
    }
    
    .streamer-card:hover {
        box-shadow: 
            0 20px 60px rgba(157, 78, 221, 0.25),
            0 0 40px rgba(255, 0, 127, 0.15),
            0 0 0 1px rgba(255, 255, 255, 1) inset;
    }
    
    /* Overlay de imagen claro */
    .streamer-card__overlay {
        background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 10%,
            rgba(255, 255, 255, 0.4) 40%,
            transparent 70%);
    }
    
    /* Corner glows claros */
    .streamer-card__corner-glow--top {
        background: rgba(255, 0, 127, 0.3);
    }
    
    .streamer-card__corner-glow--bottom {
        background: rgba(157, 78, 221, 0.3);
    }
    
    /* Body de la tarjeta */
    .streamer-card__body {
        background: var(--light-card);
    }
    
    .streamer-card__name {
        color: var(--light-text);
        text-shadow: none;
    }
    
    .streamer-card__verified {
        box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    }
    
    .streamer-card__bio {
        color: var(--light-text-soft);
    }
    
    /* Tags claros */
    .streamer-card__tag {
        background: rgba(157, 78, 221, 0.1);
        border-color: rgba(157, 78, 221, 0.3);
        color: var(--neon-purple-light);
    }
    
    .streamer-card__tag--pink {
        background: rgba(255, 0, 127, 0.1);
        border-color: rgba(255, 0, 127, 0.3);
        color: var(--neon-pink-light);
    }
    
    .streamer-card__tag--cyan {
        background: rgba(0, 196, 212, 0.1);
        border-color: rgba(0, 196, 212, 0.3);
        color: var(--neon-cyan-light);
    }
    
    /* Stats claros */
    .streamer-card__stats {
        background: rgba(157, 78, 221, 0.05);
        border-color: rgba(157, 78, 221, 0.15);
    }
    
    .streamer-card__stat-value {
        color: var(--neon-purple-light);
        text-shadow: none;
    }
    
    .streamer-card__stat-label {
        color: var(--light-text-soft);
    }
    
    /* Botón de acción claro */
    .streamer-card__action {
        background: linear-gradient(135deg, var(--neon-purple-light), var(--neon-pink-light));
        box-shadow: 
            0 8px 25px rgba(157, 78, 221, 0.35),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
    
    .streamer-card__action:hover {
        box-shadow: 
            0 12px 35px rgba(157, 78, 221, 0.5),
            0 0 30px rgba(255, 0, 127, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    }
    
    /* CTA claro */
    .streamers-cta {
        background: var(--light-card);
        border: 2px solid rgba(157, 78, 221, 0.2);
        box-shadow: 
            0 15px 50px rgba(157, 78, 221, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    }
    
    .streamers-cta__icon {
        background: linear-gradient(135deg, var(--neon-purple-light), var(--neon-pink-light));
        box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    }
    
    .streamers-cta__title {
        color: var(--light-text);
    }
    
    .streamers-cta__text {
        color: var(--light-text-soft);
    }
    
    .streamers-cta__btn {
        background: linear-gradient(135deg, var(--light-text) 0%, #2a1535 100%);
        color: white;
    }
    
    /* Botón volver claro */
    .streamers-back__btn {
        background: rgba(157, 78, 221, 0.08);
        border: 1px solid rgba(157, 78, 221, 0.2);
        color: var(--neon-purple-light);
    }
    
    .streamers-back__btn:hover {
        background: rgba(157, 78, 221, 0.15);
        border-color: var(--neon-purple-light);
        color: var(--light-text);
    }
    
    /* Mascota con sombra más suave */
    .streamer-mascot {
        filter: drop-shadow(0 10px 30px rgba(157, 78, 221, 0.3)) 
                drop-shadow(0 5px 15px rgba(255, 0, 127, 0.2));
    }
    
    .streamer-mascot:hover {
        filter: drop-shadow(0 15px 40px rgba(157, 78, 221, 0.5)) 
                drop-shadow(0 8px 25px rgba(255, 0, 127, 0.3));
    }
    
    /* Hero mascot más visible en tema claro */
    .hero-mascot {
        opacity: 0.08;
        filter: none;
    }
}

/* CLASE MANUAL PARA TEMA CLARO (data-theme="light")
   ===================================================== */
:root[data-theme="light"] .page-streamers-premium,
[data-theme="light"] .page-streamers-premium {
    --light-bg: #f8f5ff;
    --light-bg-alt: #fff0f8;
    --light-card: rgba(255, 255, 255, 0.95);
    --light-text: #1a0525;
    --light-text-soft: #4a3a5a;
    --neon-purple-light: #8b3fd9;
    --neon-pink-light: #e6006b;
    --neon-cyan-light: #00c4d4;
    
    background: linear-gradient(180deg, 
        var(--light-bg) 0%, 
        var(--light-bg-alt) 30%, 
        #fff5fa 60%, 
        var(--light-bg) 100%) !important;
}

/* Los mismos estilos que en prefers-color-scheme: light */
:root[data-theme="light"] .page-streamers-premium::before,
[data-theme="light"] .page-streamers-premium::before {
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    filter: blur(100px);
}

:root[data-theme="light"] .page-streamers-premium::after,
[data-theme="light"] .page-streamers-premium::after {
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 70%);
    filter: blur(80px);
}

:root[data-theme="light"] .particles-layer,
[data-theme="light"] .particles-layer {
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(157, 78, 221, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(157, 78, 221, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 127, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0, 196, 212, 0.3), transparent);
    opacity: 0.7;
}

:root[data-theme="light"] .streamers-hero__badge,
[data-theme="light"] .streamers-hero__badge {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(255, 0, 127, 0.1) 100%);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: #8b3fd9;
}

:root[data-theme="light"] .streamers-hero__title-main,
[data-theme="light"] .streamers-hero__title-main {
    color: #1a0525;
    text-shadow: 0 2px 10px rgba(157, 78, 221, 0.2);
}

:root[data-theme="light"] .streamers-hero__subtitle,
[data-theme="light"] .streamers-hero__subtitle {
    color: #4a3a5a;
    text-shadow: none;
}

:root[data-theme="light"] .streamers-stats__item,
[data-theme="light"] .streamers-stats__item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.1);
}

:root[data-theme="light"] .streamers-stats__number,
[data-theme="light"] .streamers-stats__number {
    background: linear-gradient(135deg, #8b3fd9 0%, #e6006b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

:root[data-theme="light"] .streamers-stats__label,
[data-theme="light"] .streamers-stats__label {
    color: #4a3a5a;
}

:root[data-theme="light"] .section-title,
[data-theme="light"] .section-title {
    color: #1a0525;
}

:root[data-theme="light"] .section-label,
[data-theme="light"] .section-label {
    color: #8b3fd9;
}

:root[data-theme="light"] .streamer-card,
[data-theme="light"] .streamer-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(157, 78, 221, 0.15);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.1);
}

:root[data-theme="light"] .streamer-card__overlay,
[data-theme="light"] .streamer-card__overlay {
    background: linear-gradient(to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 10%,
        rgba(255, 255, 255, 0.4) 40%,
        transparent 70%);
}

:root[data-theme="light"] .streamer-card__name,
[data-theme="light"] .streamer-card__name {
    color: #1a0525;
    text-shadow: none;
}

:root[data-theme="light"] .streamer-card__bio,
[data-theme="light"] .streamer-card__bio {
    color: #4a3a5a;
}

:root[data-theme="light"] .streamer-card__tag,
[data-theme="light"] .streamer-card__tag {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
    color: #8b3fd9;
}

:root[data-theme="light"] .streamer-card__tag--pink,
[data-theme="light"] .streamer-card__tag--pink {
    background: rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.3);
    color: #e6006b;
}

:root[data-theme="light"] .streamer-card__tag--cyan,
[data-theme="light"] .streamer-card__tag--cyan {
    background: rgba(0, 196, 212, 0.1);
    border-color: rgba(0, 196, 212, 0.3);
    color: #00c4d4;
}

:root[data-theme="light"] .streamer-card__stats,
[data-theme="light"] .streamer-card__stats {
    background: rgba(157, 78, 221, 0.05);
    border-color: rgba(157, 78, 221, 0.15);
}

:root[data-theme="light"] .streamer-card__stat-value,
[data-theme="light"] .streamer-card__stat-value {
    color: #8b3fd9;
}

:root[data-theme="light"] .streamer-card__stat-label,
[data-theme="light"] .streamer-card__stat-label {
    color: #4a3a5a;
}

:root[data-theme="light"] .streamers-cta,
[data-theme="light"] .streamers-cta {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(157, 78, 221, 0.2);
}

:root[data-theme="light"] .streamers-cta__title,
[data-theme="light"] .streamers-cta__title {
    color: #1a0525;
}

:root[data-theme="light"] .streamers-cta__text,
[data-theme="light"] .streamers-cta__text {
    color: #4a3a5a;
}

:root[data-theme="light"] .streamers-cta__btn,
[data-theme="light"] .streamers-cta__btn {
    background: linear-gradient(135deg, #1a0525 0%, #2a1535 100%);
    color: white;
}

:root[data-theme="light"] .streamers-back__btn,
[data-theme="light"] .streamers-back__btn {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.2);
    color: #8b3fd9;
}

:root[data-theme="light"] .streamer-mascot,
[data-theme="light"] .streamer-mascot {
    filter: drop-shadow(0 10px 30px rgba(157, 78, 221, 0.3)) 
            drop-shadow(0 5px 15px rgba(255, 0, 127, 0.2));
}

:root[data-theme="light"] .hero-mascot,
[data-theme="light"] .hero-mascot {
    opacity: 0.08;
    filter: none;
}
