:root {
    --plyr-color-main: #015737;
}

.font-geist {
    font-family: 'Geist', sans-serif !important;
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* TV Optimized Hero Styles */
@media (min-width: 1920px) {
    #hero h1 {
        font-size: 5rem !important;
        line-height: 1.05 !important;
    }

    #hero-spots-count {
        font-size: 6rem !important;
    }

    #hero p {
        font-size: 1.75rem !important;
    }
}

/* 4K TV optimization */
@media (min-width: 3000px) {
    #hero h1 {
        font-size: 7rem !important;
    }

    #hero-spots-count {
        font-size: 8rem !important;
    }
}

/* Smooth video playback */
#hero-video {
    will-change: transform;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    transform: translateZ(0);
}

.parallax-blur {
    filter: blur(0px) brightness(1);
    transform: scale(1);
    transition: filter 0.1s ease-out, transform 0.1s ease-out;
}

/* Header backdrop blur */
.header-blur {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced animations */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes slideInBlur {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

/* Glass morphism effects */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Enhanced button effects */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Scroll animations */
.animate-on-scroll {
    animation-play-state: paused !important;
}

.animate-on-scroll.animate {
    animation-play-state: running !important;
}

/* Background overlay gradient */
.bg-overlay {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

/* Stagger animation delays */
.stagger-1 {
    animation-delay: 0.1s !important;
}

.stagger-2 {
    animation-delay: 0.2s !important;
}

.stagger-3 {
    animation-delay: 0.3s !important;
}

.stagger-4 {
    animation-delay: 0.4s !important;
}

.stagger-5 {
    animation-delay: 0.5s !important;
}

.stagger-6 {
    animation-delay: 0.6s !important;
}

/* 3D Transform utilities */
.perspective-none {
    perspective: none !important;
}

.perspective-dramatic {
    perspective: 100px !important;
}

.perspective-near {
    perspective: 300px !important;
}

.perspective-normal {
    perspective: 500px !important;
}

.perspective-midrange {
    perspective: 800px !important;
}

.perspective-distant {
    perspective: 1200px !important;
}

.transform-style-preserve-3d {
    transform-style: preserve-3d !important;
}

.transform-style-flat {
    transform-style: flat !important;
}