* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #a855f7;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --dark-bg: #0a0a0a;
    --dark-card: #141414;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --border-gradient: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent) 1;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-info {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    background-size: 200% 200%;
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: gradient-shift 3s ease infinite;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    background: #000;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: 100%;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: 177.78vh;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    background-size: 200% 200%;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: gradient-shift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    letter-spacing: -0.3px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.2s;
}

.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(139, 92, 246, 0.2),
                    0 0 15px rgba(139, 92, 246, 0.1);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6), rgba(236, 72, 153, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) translateY(var(--parallax-y, 0px)) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.2),
                inset 0 0 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Channels Section */
.channels {
    padding: 4rem 2rem;
    background: var(--dark-card);
}

.channels-container {
    max-width: 1400px;
    margin: 0 auto;
}

.channels-slider-container {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.channels-slider {
    display: flex;
    gap: 1.5rem;
    animation: slideChannels 35s linear infinite;
    will-change: transform;
    width: fit-content;
}

.channels-slider:hover {
    animation-play-state: paused;
}

@keyframes slideChannels {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

.channel-logo {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 180px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.channel-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.channel-logo:hover::before {
    opacity: 1;
}

.channel-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6), rgba(236, 72, 153, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.channel-logo:hover::before {
    opacity: 1;
}

.channel-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
                0 0 25px rgba(139, 92, 246, 0.2);
}

.channel-logo > div {
    position: relative;
    z-index: 1;
}

/* Sports Section */
.sports {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.sports-text {
    color: var(--text-gray);
}

.sports-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.sports-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sports-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.sports-text li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.sports-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: var(--dark-card);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 92, 246, 0.2),
                    0 0 20px rgba(139, 92, 246, 0.15);
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #ec4899);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4), rgba(236, 72, 153, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.5),
                0 0 50px rgba(139, 92, 246, 0.3),
                inset 0 0 40px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-card .plan-name {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
}

/* Movies Section */
.movies {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.movies-slider-container {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.movies-slider {
    display: flex;
    gap: 1.5rem;
    animation: slideMovies 40s linear infinite;
    will-change: transform;
    width: fit-content;
}

.movies-slider:hover {
    animation-play-state: paused;
}

@keyframes slideMovies {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

.movie-card {
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    width: 200px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: transparent;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6), rgba(236, 72, 153, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.movie-card:hover::before {
    opacity: 1;
}

.movie-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4),
                0 0 30px rgba(139, 92, 246, 0.3);
}

/* Devices Section */
.devices {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
}

.devices-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.device-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    position: relative;
}

.device-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.device-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.device-item:hover::before {
    opacity: 1;
}

.device-item:hover {
    transform: translateY(-10px) scale(1.05);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
                0 0 25px rgba(139, 92, 246, 0.2);
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-30px);
}

.faq-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.faq-item:nth-child(even) {
    transform: translateX(30px);
}

.faq-item:nth-child(even).animate {
    transform: translateX(0);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-question {
    padding: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-answer {
    padding: 0 1.3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.3rem;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background: var(--dark-card);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.review-card:nth-child(even) {
    transform: translateX(50px) scale(0.95);
}

.review-card:nth-child(even).animate {
    transform: translateX(0) scale(1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #ec4899);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3),
                0 0 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.review-card:nth-child(even):hover {
    transform: translateY(-8px) scale(1.02);
}

.review-stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-author {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icons a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright {
    color: var(--text-gray);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .hero-video {
        opacity: 0.2;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .sports-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        width: 150px;
    }

    .movies-slider {
        animation-duration: 35s;
    }
}

/* WhatsApp Button Fixed */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

