/* =====================================================
   09-STREAMING.CSS - STREAMING CARDS & GRIDS MODULE
   Version: 1.0 - Bereinigt & Optimiert
   Zeilen: ~400
   
   Inhalt:
   - Streaming Section Container
   - Streaming Cards (Netflix, Disney+, etc.)
   - Voice Search Answer
   - Streaming Grid Layout
   - Price Comparison
   - Spartipp Box
   - Responsive Anpassungen
   
   ENTFERNT: Duplikate, veraltete Styles, überflüssige Varianten
   ===================================================== */

/* === ROOT VARIABLEN FÜR STREAMING === */
:root {
    --streaming-card-radius: 16px;
    --streaming-card-shadow: 0 4px 12px rgba(0,0,0,0.08);
    --streaming-card-shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
    --streaming-netflix: #E50914;
    --streaming-disney: #113CCF;
    --streaming-prime: #00A8E1;
    --streaming-wow: #FF6900;
    --streaming-apple: #000000;
    --streaming-paramount: #0064FF;
}

/* === STREAMING HAUPTCONTAINER === */
.flim-streaming-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Gradient Overlay */
.flim-streaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* === STREAMING HEADER === */
.flim-streaming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.flim-streaming-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flim-streaming-title h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flim-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4CAF50;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.flim-live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* === VOICE SEARCH ANSWER BOX === */
.flim-voice-search-answer {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid #2196F3;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    position: relative;
}

.flim-voice-search-answer::before {
    content: '🎙️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.flim-voice-search-answer p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1a1a2e;
}

.flim-voice-search-answer strong {
    color: #2196F3;
    font-weight: 700;
}

/* === STREAMING GRID === */
.flim-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* === STREAMING CARD === */
.flim-streaming-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: var(--streaming-card-radius);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.flim-streaming-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--streaming-card-shadow-hover);
    border-color: transparent;
}

/* Service-spezifische Hover-Farben */
.flim-streaming-card.netflix:hover {
    border-color: var(--streaming-netflix);
    background: linear-gradient(135deg, rgba(229,9,20,0.05) 0%, rgba(229,9,20,0.02) 100%);
}

.flim-streaming-card.disney:hover {
    border-color: var(--streaming-disney);
    background: linear-gradient(135deg, rgba(17,60,207,0.05) 0%, rgba(17,60,207,0.02) 100%);
}

.flim-streaming-card.prime:hover {
    border-color: var(--streaming-prime);
    background: linear-gradient(135deg, rgba(0,168,225,0.05) 0%, rgba(0,168,225,0.02) 100%);
}

/* Service Header */
.flim-streaming-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.flim-service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.flim-service-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Service Details */
.flim-service-details {
    margin-bottom: 20px;
}

.flim-service-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2d3436;
    margin-bottom: 5px;
}

.flim-service-price .currency {
    font-size: 1.2rem;
    color: #636e72;
}

.flim-service-price .period {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 400;
}

.flim-service-type {
    font-size: 0.95rem;
    color: #636e72;
    margin-bottom: 10px;
}

.flim-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.flim-feature-tag {
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #636e72;
}

/* Stream Button */
.flim-stream-button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.flim-stream-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

/* === PRICE COMPARISON TABLE === */
.flim-price-comparison {
    background: #fafafa;
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.flim-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.flim-comparison-table th {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.flim-comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.flim-comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.flim-comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.flim-comparison-table tr:last-child td {
    border-bottom: none;
}

.flim-comparison-table tr:hover {
    background: rgba(78,205,196,0.05);
}

/* === SPARTIPP BOX === */
.flim-spartipp {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 16px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.flim-spartipp::before {
    content: '💡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.flim-spartipp-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flim-spartipp-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.flim-spartipp-highlight {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .flim-streaming-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .flim-streaming-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .flim-streaming-title h2 {
        font-size: 1.5rem;
    }
    
    .flim-streaming-section {
        padding: 20px;
        margin: 20px -10px;
        border-radius: 15px;
    }
    
    .flim-comparison-table {
        font-size: 0.85rem;
    }
    
    .flim-comparison-table th,
    .flim-comparison-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .flim-service-price {
        font-size: 1.5rem;
    }
    
    .flim-streaming-card {
        padding: 15px;
    }
    
    .flim-spartipp {
        padding: 15px 20px;
    }
    
    .flim-voice-search-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
}

/* Dateiname: 09-streaming.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/components/09-streaming.css */