@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --bg-color: #000000;
  --bg-secondary: #111111;
  --text-main: #FFFFFF;
  --text-muted: #B3B3B3;
  --primary: #E50914; 
  --primary-hover: #F40612;
  --accent: #E50914;
  --success: #1CFF00;
  --card-bg: linear-gradient(180deg, #1A1E3E 0%, #1F1222 100%);
  --card-border: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 900; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* Cards */
.glass {
  background-image: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--card-border);
}

/* Header */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: background 0.3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
header.scrolled {
  background: rgba(0,0,0,0.95); padding: 1rem 0; border-bottom: 1px solid #333;
}
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { font-size: 2rem; font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-weight: 500; font-size: 1.1rem; color: #fff; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Lang Switcher */
.lang-switcher { position: relative; display: inline-block; }
.lang-btn { background: transparent; color: white; border: 1px solid #fff; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; font-weight: 500; }
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 0.5rem; background: rgba(0,0,0,0.9); border: 1px solid #333; border-radius: 4px; overflow: hidden; min-width: 120px;}
.lang-switcher:hover .lang-dropdown, .lang-dropdown.show { display: block; }
.lang-dropdown a { display: block; padding: 0.8rem 1rem; border-bottom: 1px solid #222; }
.lang-dropdown a:hover { background: var(--primary); color: white; }

/* Hero Section */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,1)), url('https://images.unsplash.com/photo-1593784991095-a205069470b6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center; position: relative;
}
.hero-content { max-width: 900px; z-index: 2; margin-top: 120px; }
.hero h1 { font-size: 4.5rem; margin-bottom: 0.5rem; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); line-height: 1.1; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.5rem; color: #fff; font-weight: 500; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); max-width: 800px; margin: 0 auto; line-height: 1.5; padding-top: 1rem; }

/* Buttons */
.btn { display: inline-block; padding: 15px 30px; border-radius: 6px; font-weight: 900; font-size: 1.1rem; cursor: pointer; border: none; transition: all 0.3s ease; text-transform: uppercase; text-align: center;}
.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--primary-hover); transform: scale(1.05); }
.btn-secondary { background-color: transparent; border: 2px solid white; color: white; }
.btn-secondary:hover { background-color: rgba(255,255,255,0.1); border-color: white; transform: scale(1.05); }

/* Sections */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 4rem; font-size: 1.2rem; }

/* Trusted Strip */
.trusted-strip { background: var(--bg-secondary); padding: 2.5rem 0; text-align: center; border-bottom: 4px solid var(--primary); }
.trusted-strip p { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 2px;}
.strip-logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; align-items: center; }
.strip-logos span { font-weight: 700; font-size: 1.2rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-item { text-align: center; border: 1px solid transparent; }
.feature-item:hover { border-color: var(--primary); }
.feature-icon { font-size: 4rem; margin-bottom: 1.5rem; color: var(--primary); }
.feature-item h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-item p { color: #F5F5F5; font-size: 1.1rem; }

/* PRICING SWITCH (Pill shape) */
.pricing-switch-container { display: flex; justify-content: center; margin-bottom: 4rem; position: relative; z-index: 50; }
.pricing-switch { background: #000; border-radius: 50px; display: inline-flex; overflow: hidden; border: 1px solid #333; position: relative; z-index: 50; }
.switch-btn { padding: 15px 40px; font-size: 1.2rem; font-weight: 700; color: #D1D5DB; background: #e5e7eb; border: none; cursor: pointer; transition: all 0.3s; color: #000; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.switch-btn.active { background: #E50914; color: #fff; }

/* NEW PRICING TABLES */
.pricing-tables-wrapper { display: none; }
.pricing-tables-wrapper.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media(max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media(max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card { background-color: #1A1B2F; border-radius: 8px; padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; border: 1px solid #2A2C4A; }
.price-card:hover { border-color: #4F46E5; }

/* Ribbon */
.ribbon { position: absolute; top: 15px; left: -35px; background: #4F46E5; color: white; padding: 5px 40px; transform: rotate(-45deg); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; }

/* Product Image Circle */
.product-circle { width: 80px; height: 80px; border-radius: 50%; background: #fff; margin: 1rem auto 1.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 2px solid #333;}
.product-circle img { max-width: 70%; max-height: 70%; object-fit: contain; }

.price-card-title { font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; }
.price-card-subtitle { color: #A0AEC0; margin-bottom: 1.5rem; font-size: 1rem; }

.old-price { color: #1CFF00; text-decoration: line-through; font-size: 1.1rem; font-weight: 700; display: block; margin-bottom: 0.5rem; }
.new-price { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 2rem; display: flex; justify-content: center; align-items: flex-start; }
.new-price span { font-size: 1.2rem; margin-top: 0.5rem; margin-right: 5px; }

.features-list { list-style: none; text-align: left; flex-grow: 1; margin-bottom: 2rem; }
.features-list li { margin-bottom: 1rem; color: #E2E8F0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.features-list li svg { flex-shrink: 0; width: 18px; height: 18px; fill: #1CFF00; margin-top: 3px; }

.price-card .btn-commander { background-color: #E50914; color: #fff; border-radius: 50px; padding: 12px 20px; font-weight: bold; width: 100%; text-transform: none; font-size: 1.1rem; }
.price-card .btn-commander:hover { background-color: #F40612; }
.guarantee-text { font-size: 0.8rem; color: #A0AEC0; margin-top: 1rem; }


/* How It Works Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; counter-reset: step-counter; }
.step-item { text-align: center; position: relative; padding: 2rem; border-top: 2px solid #333; }
.step-item::before { counter-increment: step-counter; content: counter(step-counter); width: 40px; height: 40px; background: var(--primary); color: #fff; font-size: 1.2rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: -40px auto 1rem; border: 4px solid var(--bg-color); }
.step-item h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.step-item p { color: var(--text-muted); font-size: 1.1rem; }

/* Movie Carousel */
.movie-carousel-section { overflow: hidden; padding: 4rem 0; }
.carousel-track { display: flex; gap: 1rem; animation: scroll-left 30s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
.movie-poster { width: 200px; height: 300px; border-radius: 10px; object-fit: cover; border: 2px solid transparent; transition: transform 0.3s; }
.movie-poster:hover { transform: scale(1.05); border-color: var(--primary); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Global Coverage */
.global-coverage { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80'); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; padding: 6rem 2rem; margin: 4rem 0; border-top: 2px solid #333; border-bottom: 2px solid #333; }
.global-coverage h2 { font-size: 3rem; margin-bottom: 1rem; color: #fff; }
.global-coverage p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; color: #F5F5F5; }
.flags { display: flex; justify-content: center; gap: 1.5rem; font-size: 2.5rem; flex-wrap: wrap; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { border: 1px solid #333; }
.stars { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; }
.review-text { font-size: 1.1rem; color: #F5F5F5; margin-bottom: 1.5rem; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 1rem; border-top: 1px solid #333; padding-top: 1rem; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; color: #fff; }
.reviewer-info h4 { margin: 0; font-size: 1.1rem; }
.reviewer-info span { color: var(--text-muted); font-size: 0.9rem; }

/* SEO Content Section */
.seo-content { background: var(--bg-secondary); padding: 4rem; margin-top: 4rem; border-top: 4px solid var(--primary); border-radius: 6px; }
.seo-content h2 { font-size: 2.2rem; margin-bottom: 2rem; color: #fff; }
.seo-content h3 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.seo-content p { margin-bottom: 1.5rem; color: #ccc; font-size: 1.1rem; line-height: 1.8; }

/* Contact Forms */
.contact-container { max-width: 800px; margin: 150px auto 4rem; padding: 0 2rem; }
.contact-card { text-align: center; border: 1px solid #333; }
.whatsapp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; padding: 15px 30px; border-radius: 6px; font-size: 1.2rem; font-weight: 900; margin: 2rem 0; transition: background 0.3s ease; text-transform: uppercase; width: 100%;}
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.02); }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: #fff; }
.form-control { width: 100%; padding: 15px; border-radius: 4px; background: #222; border: 1px solid #444; color: white; font-family: 'Roboto', sans-serif; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--primary); background: #111; }
textarea.form-control { min-height: 150px; resize: vertical; }

/* Mega Footer */
.mega-footer { background: #0A0A0A; padding: 5rem 2rem 2rem; border-top: 2px solid #222; margin-top: 4rem; color: #A0AEC0; font-family: 'Roboto', sans-serif; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-col h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; display: inline-block; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); }
.footer-col p { line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.footer-col .footer-logo { font-size: 2rem; font-weight: 900; color: #fff; text-decoration: none; margin-bottom: 1rem; display: inline-block; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #A0AEC0; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-contact-info { list-style: none; padding: 0; }
.footer-contact-info li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-contact-info svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; font-size: 0.9rem; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 35px; height: 35px; border-radius: 50%; background: #222; display: flex; align-items: center; justify-content: center; fill: #fff; transition: all 0.3s; }
.social-icons a svg { width: 18px; height: 18px; }
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); }

/* Mobile Menu & Responsive */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 6px; background: transparent; border: none; cursor: pointer; padding: 5px; z-index: 1000; }
.mobile-menu-toggle span { width: 30px; height: 3px; background: #fff; transition: 0.3s; border-radius: 3px; }

@media (max-width: 900px) {
  .hero { padding-top: 150px; padding-bottom: 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; margin-bottom: 1.5rem; }
  .hero-content { margin-top: 50px; }

  .nav-container { justify-content: space-between; position: relative; }
  .mobile-menu-toggle { display: flex; margin-left: 10px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #0A0A0A; padding: 2rem 0; border-top: 1px solid #333; z-index: 999; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
  .nav-links.mobile-active { display: flex; animation: slideDown 0.3s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links li { margin: 0 0 1.5rem 0; text-align: center; }
  
  .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  
  .seo-content { padding: 2rem; }

  /* Floating Language Switcher on Mobile */
  .lang-switcher { position: fixed; bottom: 20px; right: 20px; z-index: 1000; margin: 0; }
  .lang-btn { background: rgba(0,0,0,0.8); border: 2px solid var(--primary); font-weight: 700; box-shadow: 0 4px 15px rgba(0,0,0,0.5); border-radius: 30px; padding: 10px 20px; }
  .lang-dropdown { top: auto; bottom: 100%; right: 0; margin-bottom: 10px; margin-top: 0; border-radius: 10px; }
}

/* Reviews Section */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.review-card { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); position: relative; }
.review-card::before { content: '"'; font-size: 4rem; color: var(--primary); position: absolute; top: -10px; left: 20px; opacity: 0.5; font-family: serif; }
.stars { color: #FFD700; margin-bottom: 1rem; }
.reviewer-info { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.reviewer-name { font-weight: 600; }
.reviewer-date { font-size: 0.8rem; color: #aaa; }

/* Coverage Section */
.coverage-section { text-align: center; padding: 5rem 2rem; background: radial-gradient(circle at center, rgba(37,99,235,0.1) 0%, rgba(10,10,10,1) 70%); }
.coverage-map { max-width: 800px; margin: 2rem auto; position: relative; }
.coverage-map img { width: 100%; height: auto; opacity: 0.7; filter: hue-rotate(200deg) brightness(1.5); }
.country-badge { display: inline-block; background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 20px; margin: 5px; border: 1px solid rgba(255,255,255,0.2); transition: 0.3s; }
.country-badge:hover { background: var(--primary); border-color: var(--primary); }

/* World Cup Banner */
.wc-banner { background: linear-gradient(45deg, #1a1a2e, #16213e); border: 2px solid var(--primary); border-radius: 12px; padding: 2rem; text-align: center; margin: 3rem auto; max-width: 900px; box-shadow: 0 10px 30px rgba(37,99,235,0.3); }
.wc-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.wc-banner span { color: var(--primary); font-weight: bold; }

/* Netflix/Disney Premium Enhancements */
body {
    background-color: #141414; /* Netflix dark grey */
    color: #fff;
}

/* Cinematic Hero Background */
.hero {
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=100');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate;
    z-index: 0;
    opacity: 0.6;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(20,20,20,1) 0%, rgba(20,20,20,0.4) 50%, rgba(20,20,20,1) 100%),
                linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 150px auto 0;
    gap: 2rem;
}
.hero-text {
    flex: 1;
}
.hero-image {
    flex: 1;
    display: none; /* hidden on mobile */
    animation: float 6s ease-in-out infinite;
}
@media (min-width: 900px) {
    .hero-image { display: block; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s;
}
.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.movie-carousel-section {
    position: relative;
    padding: 2rem 0 4rem;
}
.carousel-track {
    display: flex;
    gap: 10px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }
.movie-poster {
    width: 250px;
    height: 375px;
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}
.movie-poster:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 10;
    box-shadow: 0 20px 30px rgba(0,0,0,0.8);
    border: 2px solid #fff;
}

.wc-banner {
    background: linear-gradient(135deg, rgba(229,9,20,0.2) 0%, rgba(20,20,20,1) 100%), url('https://images.unsplash.com/photo-1518605368461-1ee7e16a2c20?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-color: rgba(229,9,20,0.5);
}


