/* =====================================================
   FLIMMERKISTE REVIEWS_2.CSS - PREMIUM CARDS DESIGN
   Version: 1.0
   Beschreibung: Erweiterung für Premium Cards Layout
   Optimiert für Filme & Serien mit Staffel-Support
   ===================================================== */

/* === ROOT VARIABLEN FÜR PREMIUM CARDS === */
:root {
    --card-radius: 16px;
    --card-shadow: 0 4px 6px rgba(0,0,0,0.05);
    --card-shadow-hover: 0 12px 24px rgba(0,0,0,0.1);
    --gradient-soft: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.1) 100%);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* === FLOATING HEADER BAR === */
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 10px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.header-logo {
    font-weight: 900;
    font-size: 1.1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.nav-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

.nav-dot:hover:not(.active) {
    background: #9ca3af;
    transform: scale(1.2);
}

/* === HERO COMPACT SECTION === */
.hero-compact {
    margin-top: 100px;
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: center;
}

/* 3D Poster Effect */
.poster-3d {
    width: 200px;
    height: 300px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: 
        20px 20px 60px rgba(139,92,246,0.3),
        -20px -20px 60px rgba(255,255,255,0.5);
    transition: all var(--transition-normal);
}

.poster-3d:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 
        30px 30px 80px rgba(139,92,246,0.4),
        -30px -30px 80px rgba(255,255,255,0.6);
}

.poster-3d::after {
    content: 'HD';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Badge Styles */
.badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    padding: 5px 12px;
    background: var(--gradient-soft);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(139,92,246,0.2);
    transition: all var(--transition-fast);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139,92,246,0.2);
}

.badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Hero Info */
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Meta Pills */
.meta-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-pill {
    padding: 8px 14px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.meta-pill:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139,92,246,0.3);
}

/* Rating Card */
.rating-card {
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        10px 10px 30px rgba(0,0,0,0.05),
        -10px -10px 30px rgba(255,255,255,0.8);
    transition: all var(--transition-normal);
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-stars {
    font-size: 1.2rem;
    margin: 10px 0;
}

.rating-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === MASONRY GRID LAYOUT === */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.masonry-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.masonry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.masonry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.masonry-card:hover::before {
    transform: scaleX(1);
}

.masonry-card.card-large {
    grid-column: span 2;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.card-content {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === STORY LAYOUT MIT SIDEBAR === */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    margin-bottom: 40px;
}

.story-main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.story-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.story-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
}

.story-text p {
    margin-bottom: 20px;
}

/* === QUOTE MODERN === */
.quote-modern {
    background: var(--gradient-soft);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.quote-modern::before {
    content: '„';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    color: #6b7280;
    font-size: 0.95rem;
}

/* === SIDEBAR WIDGETS === */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: white;
    border-radius: var(--card-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
}

.widget:hover {
    box-shadow: var(--card-shadow-hover);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1f2937;
}

.widget-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

/* === STAFFEL SELECTOR FÜR SERIEN === */
.season-selector {
    background: white;
    border-radius: var(--card-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.season-title {
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-count {
    padding: 4px 8px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.season-btn {
    padding: 12px;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.season-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139,92,246,0.3);
}

.season-btn.active {
    background: var(--gradient);
    color: white;
    border-color: var(--primary);
}

.season-btn.special {
    grid-column: span 2;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

/* Staffel Info Box */
.season-info {
    margin-top: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.85rem;
}

.season-info-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.season-info-label {
    color: #6b7280;
}

.season-info-value {
    font-weight: 600;
    color: #1f2937;
}

/* === PROGRESS BARS WIDGET === */
.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.progress-label {
    color: #6b7280;
    min-width: 80px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    margin: 0 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width var(--transition-normal);
}

.progress-value {
    min-width: 30px;
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

/* === FACT LIST WIDGET === */
.fact-list {
    list-style: none;
}

.fact-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-label {
    color: #6b7280;
}

.fact-value {
    font-weight: 600;
    color: #1f2937;
}

/* === CAST SECTION FULL WIDTH === */
.cast-section {
    background: linear-gradient(135deg, #fafbfc 0%, white 100%);
    padding: 60px 0;
    margin: 40px -40px;
}

.cast-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cast-header {
    text-align: center;
    margin-bottom: 40px;
}

.cast-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.cast-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.cast-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    box-shadow: var(--card-shadow);
}

.cast-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.cast-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.cast-card:hover::after {
    opacity: 0.05;
}

.cast-card > * {
    position: relative;
    z-index: 1;
}

.cast-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(139,92,246,0.3);
}

.cast-name {
    font-weight: 700;
    margin-bottom: 4px;
    color: #1f2937;
    font-size: 0.95rem;
}

.cast-role {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.cast-voice {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* === STREAMING COMPACT === */
.streaming-compact {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
}

.streaming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.streaming-title {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.streaming-badge {
    padding: 6px 12px;
    background: var(--success);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

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

.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.stream-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.stream-card:hover {
    border-color: var(--primary);
    background: var(--gradient-soft);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139,92,246,0.2);
}

.stream-logo {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.stream-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1f2937;
}

.stream-price {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.stream-unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.stream-unavailable:hover {
    transform: none;
    border-color: #e5e7eb;
    background: #f9fafb;
}

/* === FAZIT COMPACT === */
.fazit-compact {
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fazit-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.fazit-content {
    position: relative;
    z-index: 1;
}

.fazit-score {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.fazit-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.action-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.action-btn {
    padding: 12px 24px;
    border: 2px solid white;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Floating Header Mobile */
    .floating-header {
        top: 10px;
        padding: 8px 20px;
        gap: 15px;
        width: calc(100% - 40px);
    }
    
    /* Hero Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .poster-3d {
        margin: 0 auto;
        transform: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Masonry Mobile */
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-card.card-large {
        grid-column: span 1;
    }
    
    /* Story Layout Mobile */
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    /* Cast Mobile */
    .cast-section {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Streaming Mobile */
    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Season Grid Mobile */
    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .season-btn.special {
        grid-column: span 1;
    }
    
    /* Fazit Mobile */
    .fazit-score {
        font-size: 3rem;
    }
    
    .action-row {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .hero-container {
        padding: 0 20px;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
    
    .story-main {
        padding: 25px;
    }
    
    .cast-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

/* === PRINT STYLES === */
@media print {
    .floating-header {
        display: none;
    }
    
    .hero-compact {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .poster-3d {
        transform: none;
        box-shadow: none;
    }
    
    .masonry-card,
    .widget,
    .cast-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .action-row {
        display: none;
    }
    
    @page {
        margin: 2cm;
    }
}

/* === DARK MODE SUPPORT (Optional) === */
@media (prefers-color-scheme: dark) {
    /* Kann später ergänzt werden */
}

/* === ANIMATIONEN FÜR LAZY LOADING === */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* === ENDE REVIEWS_2.CSS === */

/* Dateiname: reviews_2.css */
/* Pfad: /wp-content/themes/Newspaper-child/reviews_2.css */

/* =====================================================
   STREAMING PREMIUM CARDS - ERWEITERUNG FÜR REVIEWS_2.CSS
   Version: 1.0
   Datum: Februar 2025
   Beschreibung: Premium Streaming-Integration für Flimmerkiste
   ===================================================== */

/* === STREAMING SECTION HAUPTCONTAINER === */
.flim-streaming-section {
    background: linear-gradient(135deg, rgba(255,107,107,0.03) 0%, rgba(78,205,196,0.03) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Anpassung */
@media (max-width: 767px) {
    .flim-streaming-section {
        padding: 25px 20px;
        margin: 30px -20px;
        border-radius: 0;
    }
}

/* === STREAMING HEADER === */
.flim-streaming-header {
    margin-bottom: 35px;
}

.flim-streaming-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.flim-streaming-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

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

.flim-streaming-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

/* === VOICE SEARCH ANSWER BOX === */
.flim-voice-search-answer {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.flim-voice-search-answer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.05));
}

.flim-voice-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
    animation: voicePulse 2s infinite;
}

@keyframes voicePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

/* Responsive Grid */
@media (max-width: 1200px) {
    .flim-streaming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .flim-streaming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .flim-streaming-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* === STREAMING CARD === */
.flim-streaming-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
}

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

/* Verfügbar Status */
.flim-streaming-card.available {
    border-color: rgba(16, 185, 129, 0.3);
}

.flim-streaming-card.available:hover {
    border-color: rgb(16, 185, 129);
}

/* Coming Soon Status */
.flim-streaming-card.coming-soon {
    opacity: 0.7;
    border-color: rgba(156, 163, 175, 0.3);
}

/* === AVAILABILITY BADGE === */
.flim-availability-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--success);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
    z-index: 2;
}

.flim-availability-badge.limited {
    background: var(--warning);
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.flim-availability-badge.coming {
    background: var(--gray-400);
    box-shadow: 0 2px 8px rgba(156,163,175,0.3);
}

.flim-availability-badge.exclusive {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 2px 8px rgba(139,92,246,0.3);
}

/* === SERVICE LOGOS === */
.flim-service-logo {
    height: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flim-service-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* Logo Fallback mit Emoji */
.flim-service-logo.netflix::before { content: '🟥'; font-size: 2rem; }
.flim-service-logo.prime::before { content: '🟦'; font-size: 2rem; }
.flim-service-logo.disney::before { content: '🟣'; font-size: 2rem; }
.flim-service-logo.apple::before { content: '⚪'; font-size: 2rem; }
.flim-service-logo.sky::before { content: '🟨'; font-size: 2rem; }
.flim-service-logo.paramount::before { content: '🔵'; font-size: 2rem; }

/* === SERVICE INFO === */
.flim-service-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.flim-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.flim-service-price {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
}

.flim-price-period {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.flim-service-type {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 15px;
    min-height: 20px;
}

/* === QUALITY BADGES === */
.flim-quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    min-height: 30px;
}

.flim-quality-badge {
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flim-quality-badge.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.flim-quality-badge.hdr {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.flim-quality-badge.atmos {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* === EXTRA FEATURES === */
.flim-extra-features {
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 15px;
    min-height: 80px;
}

.flim-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.flim-feature-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Serien-spezifische Features */
.flim-seasons-info {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.flim-seasons-info.complete {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.flim-seasons-info.partial {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* === CTA BUTTON === */
.flim-stream-button {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.flim-stream-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.flim-stream-button:hover::before {
    width: 300px;
    height: 300px;
}

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

.flim-stream-button.disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    opacity: 0.6;
}

.flim-stream-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* === SEO INFO BOXES === */
.flim-seo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.flim-seo-info-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flim-seo-info-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.flim-seo-info-content {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === PRICE COMPARISON TABLE === */
.flim-price-comparison {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

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

.flim-comparison-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
}

.flim-comparison-table th {
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid var(--gray-200);
    font-weight: 600;
    background: var(--gray-100);
}

.flim-comparison-table td {
    padding: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.flim-comparison-table tr:hover {
    background: var(--gray-100);
}

.flim-comparison-table .best-value {
    background: rgba(16,185,129,0.1);
    font-weight: 600;
    position: relative;
}

.flim-comparison-table .best-value::after {
    content: '👑';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* === COUNTDOWN TIMER === */
.flim-countdown-wrapper {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(239,68,68,0.1));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
    border: 2px dashed var(--warning);
}

.flim-countdown-text {
    font-size: 1rem;
    color: var(--warning);
    font-weight: 600;
    margin-bottom: 8px;
}

.flim-countdown-timer {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Stagger Animation für Cards */
.flim-streaming-card {
    animation: fadeInUp 0.6s ease-out both;
}

.flim-streaming-card:nth-child(1) { animation-delay: 0.1s; }
.flim-streaming-card:nth-child(2) { animation-delay: 0.2s; }
.flim-streaming-card:nth-child(3) { animation-delay: 0.3s; }
.flim-streaming-card:nth-child(4) { animation-delay: 0.4s; }
.flim-streaming-card:nth-child(5) { animation-delay: 0.5s; }
.flim-streaming-card:nth-child(6) { animation-delay: 0.6s; }

/* === DARK MODE SUPPORT === */
.td-dark-mode .flim-streaming-section {
    background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(78,205,196,0.05) 100%);
}

.td-dark-mode .flim-streaming-card {
    background: #1a1a1a;
    border-color: #333;
}

.td-dark-mode .flim-streaming-card:hover {
    border-color: var(--primary);
}

.td-dark-mode .flim-voice-search-answer {
    background: #1a1a1a;
    border-left-color: var(--primary);
}

.td-dark-mode .flim-service-name,
.td-dark-mode .flim-streaming-title {
    color: #e0e0e0;
}

.td-dark-mode .flim-service-type,
.td-dark-mode .flim-feature-item {
    color: #999;
}

.td-dark-mode .flim-seo-info-box,
.td-dark-mode .flim-price-comparison {
    background: #1a1a1a;
}

.td-dark-mode .flim-comparison-table th {
    background: #2a2a2a;
    border-color: #444;
}

.td-dark-mode .flim-comparison-table td {
    border-color: #333;
}

/* === SPECIAL EFFECTS === */
/* Netflix Glow */
.flim-streaming-card.netflix:hover {
    box-shadow: 0 12px 24px rgba(229, 9, 20, 0.2);
}

/* Disney Glow */
.flim-streaming-card.disney:hover {
    box-shadow: 0 12px 24px rgba(17, 60, 207, 0.2);
}

/* Prime Glow */
.flim-streaming-card.prime:hover {
    box-shadow: 0 12px 24px rgba(0, 168, 225, 0.2);
}

/* === MOBILE OPTIMIERUNGEN === */
@media (max-width: 767px) {
    .flim-streaming-title {
        font-size: 1.4rem;
    }
    
    .flim-voice-search-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .flim-streaming-card {
        padding: 20px;
    }
    
    .flim-service-price {
        font-size: 1.1rem;
    }
    
    .flim-seo-info-grid {
        grid-template-columns: 1fr;
    }
    
    .flim-comparison-table {
        font-size: 0.8rem;
    }
    
    .flim-comparison-table th,
    .flim-comparison-table td {
        padding: 8px 5px;
    }
    
    /* Mobile: Horizontales Scrollen für Tabelle */
    .flim-price-comparison {
        overflow-x: auto;
    }
}

/* === PRINT STYLES === */
@media print {
    .flim-streaming-section {
        page-break-inside: avoid;
        background: white !important;
    }
    
    .flim-stream-button {
        display: none;
    }
    
    .flim-streaming-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}

/* =====================================================
   ENDE DER STREAMING CSS ERWEITERUNG
   
   INTEGRATION:
   1. Diese Styles zu reviews_2.css hinzufügen
   2. Oder als separate streaming.css einbinden
   3. Alle Klassen beginnen mit 'flim-' für Namespace
   
   Dateiname: streaming-premium-cards.css
   Pfad: /wp-content/themes/Newspaper-child/assets/css/streaming-premium-cards.css
   ===================================================== */