/* ========================================
   COMPOSANT : NO STREAMERS SECTION
   ======================================== 
   
   Extrait de : public/pages/index.php (styles inline)
   Date d'extraction : 2026-04-15
   Utilisé par : index.php (quand aucun streamer)
   Impact : FAIBLE (chargement conditionnel)
   
   REFACTORING CSS - Phase 1
   ======================================== */

.no-streamers-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 111, 177, 0.05), rgba(165, 107, 255, 0.05));
    border-radius: 20px;
    margin: 2rem 0;
}

.no-streamers-content {
    max-width: 800px;
    margin: 0 auto;
}

.no-streamers-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    filter: grayscale(0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.no-streamers-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6FB1, #A56BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-streamers-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.no-streamers-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-streamers-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 111, 177, 0.2), rgba(165, 107, 255, 0.2));
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-streamers-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(165, 107, 255, 0.3);
    border-color: var(--accent);
}

.no-streamers-btn span:first-child {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .no-streamers-title {
        font-size: 1.8rem;
    }
    
    .no-streamers-icon {
        font-size: 3.5rem;
    }
}
