/* =====================================================
   FLIMMERKISTE CSS MODULE 15: SEASON-SELECTOR
   Version: 1.0
   Beschreibung: Staffel-Auswahl und Season-Navigation
   Optimiert für Serien mit mehreren Staffeln
   Max. 200 Zeilen gemäß Modularisierungsplan
   ===================================================== */

/* === HAUPTCONTAINER === */
.flim-season-selector {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.flim-season-selector::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* === SEASON HEADER === */
.flim-season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.flim-season-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flim-season-title .season-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--flimmer-primary) 0%, var(--flimmer-secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.flim-season-count {
    padding: 5px 12px;
    background: var(--flimmer-primary);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === SEASON GRID === */
.flim-season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.flim-season-btn {
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #636e72;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flim-season-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    transition: width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.flim-season-btn:hover {
    background: white;
    border-color: var(--flimmer-primary);
    color: var(--flimmer-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

.flim-season-btn:hover::before {
    width: 100%;
    height: 100%;
}

.flim-season-btn.active {
    background: linear-gradient(135deg, var(--flimmer-primary) 0%, var(--flimmer-secondary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transform: scale(1.05);
}

.flim-season-btn.special {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: white;
    font-weight: 700;
    position: relative;
}

.flim-season-btn.special::after {
    content: '⭐';
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 0.8rem;
}

/* === SEASON INFO BOX === */
.flim-season-info {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--flimmer-primary);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flim-season-info h4 {
    margin: 0 0 10px 0;
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 700;
}

.flim-season-info p {
    margin: 0 0 8px 0;
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
}

.flim-season-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flim-season-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #636e72;
}

.flim-season-stat strong {
    color: var(--flimmer-primary);
    font-weight: 700;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .flim-season-selector {
        padding: 20px;
        margin: 20px -10px;
    }
    
    .flim-season-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .flim-season-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .flim-season-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .flim-season-stats {
        flex-direction: column;
        gap: 8px;
    }
}

/* Dateiname: 15-season-selector.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/series/15-season-selector.css */
/* Version: 1.0 - CSS-Modularisierung Runde 5 */
/* Zeilen: ~198 (unter 200 Limit) */