/* Plex Recommendations Section Styles - Blue Theme */

.plex-recommendations-section {
    margin: 40px 0;
}

.plex-showcase {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* Header Styles - Blue Theme */
.plex-header {
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.plex-header-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.plex-subtitle {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    opacity: 0.9;
    color: white;
}

.plex-status {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.status-completed {
    background: rgba(40, 167, 69, 0.9);
}

.status-live {
    background: rgba(0, 123, 255, 0.9);
}

/* Statistics Grid */
.plex-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.plex-stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #339af0;
    margin: 10px 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Section */
.plex-content {
    padding: 40px;
    background: white;
}

.plex-description h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.plex-description p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.plex-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
    color: #4dabf7;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-content p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

/* Demo Section */
.plex-demo {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    text-align: center;
    color: white;
}

.plex-demo h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: white;
}

.plex-demo p {
    font-size: 1.1rem;
    margin: 0 0 25px 0;
    opacity: 0.9;
    color: white;
}

.plex-demo-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.plex-demo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plex-header {
        padding: 30px 20px;
    }
    
    .plex-header-content h2 {
        font-size: 2rem;
    }
    
    .plex-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        padding: 20px;
    }
    
    .plex-content {
        padding: 30px 20px;
    }
    
    .plex-features {
        grid-template-columns: 1fr;
    }
    
    .plex-demo {
        padding: 25px 20px;
    }
}
