/* ==========================================
   NEON TV STREAMING - CSS STYLE SHEET
   ========================================== */

:root {
  --bg-primary: #08080c;
  --bg-secondary: #101016;
  --bg-tertiary: #161622;
  --neon-green: #9EF01A;
  --neon-green-glow: rgba(158, 240, 26, 0.4);
  --neon-green-dim: rgba(158, 240, 26, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --border-color: rgba(255, 255, 255, 0.08);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'MuseoModerno', cursive, sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, .logo-text, .btn, .price-amount, .step-number {
  font-family: var(--font-display);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 60%, #9EF01A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-solid {
  background-color: var(--neon-green);
  color: #000000;
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.btn-solid:hover {
  background-color: #b2ff38;
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--neon-green);
}

.btn-outline {
  background-color: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
}

.btn-outline:hover {
  background-color: var(--neon-green-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--neon-green-glow);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.full-width {
  width: 100%;
}

/* Particles Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: 
    radial-gradient(var(--neon-green-dim) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 40px;
  opacity: 0.6;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(8, 8, 12, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.8rem;
  gap: 10px;
}

.logo-image {
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-green);
  transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* TV screen container */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tv-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #0b0c10;
  border: 2px solid var(--neon-green);
  border-radius: 16px;
  box-shadow: 0 0 35px var(--neon-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.tv-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg, 
    rgba(255, 0, 0, 0.06), 
    rgba(0, 255, 0, 0.02), 
    rgba(0, 0, 255, 0.06)
  );
  background-size: 100% 4px, 6px 100%;
  z-index: 2;
  pointer-events: none;
}

.tv-play-btn {
  z-index: 3;
  transition: transform var(--transition-normal);
}

.tv-screen:hover .tv-play-btn {
  transform: scale(1.1);
}

.tv-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(158, 240, 26, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.tv-stats {
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.stat-bar {
  margin-bottom: 16px;
}

.stat-bar:last-child {
  margin-bottom: 0;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.bar-track {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  width: 0%;
  height: 100%;
  background-color: var(--neon-green);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--neon-green);
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Device Logo Slider (Infinite Scrolling Marquee) */
.device-slider {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  overflow: hidden;
}

.slider-track {
  width: 100%;
  overflow: hidden;
}

.slider-inner {
  display: flex;
  white-space: nowrap;
  gap: 60px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.device-item {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.device-item:hover {
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green-glow);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Padding & Header */
.section-pad {
  padding: 100px 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
}

/* Steps Grid (How it works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(158, 240, 26, 0.05);
}

.step-number {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color var(--transition-normal);
}

.step-card:hover .step-number {
  color: var(--neon-green-dim);
}

.step-icon {
  margin-bottom: 24px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: stretch;
}

.price-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 16px;
  position: relative;
  transition: all var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
  background-color: var(--bg-tertiary);
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(158, 240, 26, 0.15);
  padding: 50px 16px;
}

.price-card.featured:hover {
  box-shadow: 0 0 40px rgba(158, 240, 26, 0.25);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--neon-green);
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.price-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.price-card:not(.featured) .price-name {
  color: var(--neon-green);
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
}

.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 4px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child {
  margin-bottom: 0;
}

.check {
  color: var(--neon-green);
  font-weight: bold;
}

/* Movie Marquee Section */
.movie-marquee {
  background-color: var(--bg-secondary);
  padding: 80px 0;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  width: 100%;
}

.marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-reverse 35s linear infinite;
}

@keyframes scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.movie-card {
  width: 160px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  position: relative;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.movie-card:hover {
  transform: scale(1.05);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green-glow);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(158, 240, 26, 0.05);
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-icon svg {
  stroke: var(--neon-green);
}

.feature-icon text {
  fill: var(--neon-green);
}

.feature-card h3 {
  font-size: 1.3rem;
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-normal);
  align-self: start;
}

.faq-item:hover {
  border-color: rgba(158, 240, 26, 0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-icon {
  color: var(--neon-green);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
}

/* Open State */
.faq-item.open {
  border-color: var(--neon-green);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-green-dim) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-inner h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: #040406;
  border-top: 1px solid var(--border-color);
  padding: 60px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-green);
}

.footer-copy {
  font-size: 0.85rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
}

/* Reveal Elements on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.1, 1, 0.1, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 36px auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .steps-grid,
  .pricing-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-inner .btn {
    display: none; /* Hide free trial on mobile header, keep in menu or show later */
  }

  .steps-grid,
  .pricing-grid,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }
}

/* ==========================================
   VIDEO MODAL STYLES
   ========================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 850px;
  background: #000000;
  border: 2px solid var(--neon-green);
  border-radius: 16px;
  box-shadow: 0 0 45px rgba(158, 240, 26, 0.35);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-container {
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  display: block;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  line-height: 1;
  transition: color var(--transition-fast);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.modal-close:hover {
  color: var(--neon-green);
}
