/**
 * TV Overlays Product Page Styles
 * Page-specific overrides and unique elements
 */

/* Hero gradient - Blue broadcast theme */
.widget-hero {
    background: linear-gradient(135deg, #0c1e3d 0%, #1e3a5f 50%, #0d4f6f 100%);
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Overlays section */
.widget-overlays {
    background: #0f172a;
}

.overlay-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.overlay-card-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.overlay-card-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* TV Scorebug Preview - Specific styles */
.preview-overlay {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 320px;
    padding: 2rem;
}

.preview-scorebug {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.preview-team-score {
    color: #60a5fa;
}.preview-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .preview-overlay {
        width: 280px;
    }
}
