/* Tailwind Configuration */
/* Note: Since we are using CDN, base customization is handled in script tag in head, 
   but we can add CSS overrides here */

/* Custom Styles */
.hero-gradient {
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tv-mockup {
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    position: relative;
    background: #0f172a;
}

/* TV Stand/Base */
.tv-mockup::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    border-radius: 0 0 20px 20px;
    z-index: -1;
}

/* Reflection effect */
.tv-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Feature Card Hover Effects */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Button Hover Glow */
.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* Accessibility: High Contrast Overrides */
.text-brand-600 {
    color: #0284c7;
    /* Ensure standard brand-600 is precise */
}

/* Darker variation for better contrast on light backgrounds (Ratio > 4.5:1) */
.text-brand-700-contrast {
    color: #0369a1 !important;
}

/* Lighten footer text for better contrast on dark backgrounds */
footer .text-slate-500 {
    color: #94a3b8 !important;
    /* slate-400 */
}