/* Streamer Spotlight — shared between /v2/ and the production landing.
   Rules mirror premium-styles.css (sections around lines 2615–2906 + 3018–3058)
   so both pages render identically. When premium-styles.css is retired at
   cutover, this file becomes the sole source. */

.streamer-spotlight-section {
    margin-top: 2.5rem;
    padding: 2.5rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    position: relative;
}

.streamer-spotlight-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.35), transparent);
}

.spotlight-header {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.spotlight-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F5A623;
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.8);
    animation: spotlightPulse 2s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(245, 166, 35, 0.8); }
    50%      { opacity: 0.4; box-shadow: 0 0 4px rgba(245, 166, 35, 0.4); }
}

.spotlight-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    margin: 0;
    background: linear-gradient(135deg, #F5A623, #FFD054);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 80px;
}

.spotlight-coming-soon {
    background: linear-gradient(135deg, #161929, rgba(13, 15, 26, 0.95));
    border: 1px solid #252A3A;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.spotlight-coming-soon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, #E53935 30%, #F5A623 70%, transparent 95%);
    opacity: 0.6;
}

.spotlight-coming-soon-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.spotlight-coming-soon-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 1.25rem;
}

.spotlight-coming-soon-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 10px;
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
}

.spotlight-cta:hover {
    background: rgba(245, 166, 35, 0.18);
    border-color: #F5A623;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.15);
}

.spotlight-cta:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.spotlight-card {
    background: linear-gradient(135deg, #161929, rgba(13, 15, 26, 0.95));
    border: 1px solid #252A3A;
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, #E53935 30%, #F5A623 70%, transparent 95%);
    opacity: 0.6;
}

.spotlight-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}

.spotlight-card.active:hover {
    border-color: rgba(245, 166, 35, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 166, 35, 0.06);
    transform: scale(1) translateY(-2px);
}

.spotlight-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(229, 57, 53, 0.4);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.25);
}

.spotlight-avatar.twitch  { border-color: rgba(145, 70, 255, 0.6); box-shadow: 0 0 15px rgba(145, 70, 255, 0.25); }
.spotlight-avatar.youtube { border-color: rgba(255, 0, 0, 0.5);    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.spotlight-avatar.kick    { border-color: rgba(83, 252, 24, 0.5);  box-shadow: 0 0 15px rgba(83, 252, 24, 0.2); }

.spotlight-info {
    flex: 1;
    min-width: 0;
}

.spotlight-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

.spotlight-platform-badge {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 0.7rem;
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.6;
}

.spotlight-platform-badge.twitch  { background: rgba(145, 70, 255, 0.2); color: #b98aff; }
.spotlight-platform-badge.youtube { background: rgba(255, 0, 0, 0.15);   color: #ff6666; }
.spotlight-platform-badge.kick    { background: rgba(83, 252, 24, 0.15);  color: #53fc18; }

.spotlight-quote {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-style: italic;
    margin-top: 0.4rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
    max-width: 420px;
}

.spotlight-watch {
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    background: #F5A623;
    border: 1px solid #F5A623;
    border-radius: 10px;
    color: #0D0F1A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.spotlight-watch:hover {
    background: #FFD054;
    border-color: #FFD054;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.spotlight-watch:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.spotlight-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spotlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.spotlight-dot.active {
    background: #F5A623;
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
    transform: scale(1.25);
}

.spotlight-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

.spotlight-submit {
    margin-top: 1rem;
    font-size: 0.68rem;
    color: #6B7194;
    letter-spacing: 0.03em;
}

.spotlight-submit a {
    color: #C8CCD8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.spotlight-submit a:hover {
    color: #F5A623;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .streamer-spotlight-section {
        padding: 2rem 0.75rem 1.5rem;
    }

    .spotlight-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .spotlight-name {
        justify-content: center;
        flex-wrap: wrap;
    }

    .spotlight-quote {
        max-width: none;
    }

    .spotlight-avatar {
        width: 56px;
        height: 56px;
    }

    .spotlight-watch {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        min-height: 44px;
    }

    .spotlight-coming-soon {
        padding: 1.5rem 1rem;
    }

    .spotlight-coming-soon-text {
        font-size: 0.85rem;
    }
}
