*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e50000;
  --red-dark: #b00000;
  --red-glow: rgba(229,0,0,0.35);
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --card-bg: #141414;
  --card-border: #2a2a2a;
  --white: #ffffff;
  --grey: #aaaaaa;
  --light-grey: #cccccc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===================== NAVBAR ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}

.nav-logo .logo-text span {
  color: var(--black);
}

.logo-tv-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin-left: 2px;
  margin-bottom: 4px;
}

.logo-tv-icon svg {
  width: 100%;
  height: 100%;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 12px 24px;
  border-radius: 4px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text { position: relative; z-index: 2; }

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text h1 .brand {
  color: var(--red);
}

.hero-text p {
  font-size: 15px;
  color: var(--light-grey);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--red-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid #444;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 0 0 3px var(--red), 0 0 50px 10px var(--red-glow);
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16/10;
  position: relative;
  z-index: 0;
}

/* ===================== WHY SECTION ===================== */
.why-section {
  background: var(--black);
  padding: 90px 40px;
  text-align: center;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-title .red { color: var(--red); }
.section-title .bold { font-weight: 900; }

.section-subtitle {
  font-size: 15px;
  color: var(--light-grey);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 36px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px var(--red-glow);
}

.feature-card.active-card {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 8px 30px var(--red-glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #1e1e1e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon,
.feature-card.active-card .feature-icon {
  background: rgba(229,0,0,0.12);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.65;
}

/* ===================== CHANNELS TICKER ===================== */
.channels-ticker {
  background: var(--black);
  padding: 10px 0 30px;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 50px;
  animation: ticker 22s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.channel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 10px;
  opacity: 0.75;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.channel-logo:hover { opacity: 1; }

.channel-logo .logo-badge {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* ===================== PREMIUM SECTION ===================== */
.premium-section {
  background: var(--black2);
  padding: 80px 40px;
  text-align: center;
}

.premium-subtitle-small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

/* ===================== LOOKING FOR IPTV ===================== */
.looking-section {
  background: var(--black);
  padding: 80px 40px;
}

.looking-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.looking-inner .section-title {
  color: var(--red);
  margin-bottom: 14px;
}

.looking-inner .section-subtitle { margin-bottom: 50px; }

.looking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  text-align: left;
}

.checklist {
  background: #0f0f0f;
  padding: 50px 50px 50px 50px;
  border-radius: 12px 0 0 12px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.checklist-item:last-of-type { margin-bottom: 36px; }

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  color: white;
}

.checklist-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.looking-image {
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.looking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== MOVIE POSTERS ===================== */
.movies-section {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
}

.movies-section .section-title { margin-bottom: 10px; }

.posters-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 40px auto 40px;
}

.poster-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.poster-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 10px;
  text-align: center;
  gap: 8px;
}

.poster-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}

/* ===================== PRICING ===================== */
.pricing-section {
  background: var(--black2);
  padding: 80px 40px;
  text-align: center;
}

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.pricing-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  margin-bottom: 50px;
}

.pricing-title .red { color: var(--red); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(160deg, #1a0a0a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(229,0,0,0.2);
  border-color: var(--red);
}

.pricing-card.popular {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 8px 40px rgba(229,0,0,0.25);
}

.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 8px 8px;
}

.plan-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price.red { color: var(--red); }

.plan-period {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 28px;
  font-weight: 500;
}

.plan-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.plan-feature {
  font-size: 13.5px;
  color: var(--light-grey);
  padding-bottom: 14px;
  border-bottom: 1px solid #1e1e1e;
}

.plan-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-plan:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-glow);
}

/* ===================== SUBSCRIBE BANNER ===================== */
.subscribe-center {
  margin-top: 20px;
}

/* ===================== FAQ ===================== */
.faq-section {
  background: var(--black);
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section .section-title { text-align: center; margin-bottom: 50px; }

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item.open .faq-icon {
  border-color: var(--red);
  background: var(--red);
}

.faq-icon span {
  font-size: 16px;
  line-height: 1;
  color: #aaa;
  transition: transform 0.3s, color 0.2s;
  display: block;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
}

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

/* ===================== CONTACT ===================== */
.contact-section {
  background: var(--black2);
  padding: 80px 40px;
  text-align: center;
}

.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 36px 40px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: rgba(229,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon svg {
  width: 24px; height: 24px;
  color: var(--red);
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13.5px;
  color: var(--grey);
}

.contact-card a {
  color: var(--red);
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
footer {
  background: #080808;
  padding: 60px 40px 30px;
  border-top: 1px solid #1a1a1a;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #555;
}

.footer-bottom a { color: var(--red); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
  animation: none;
}

.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: white;
}

.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.8); }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .posters-row { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 16px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; border-bottom: 1px solid #f0f0f0; }
  .nav-cta { margin: 12px 24px; width: calc(100% - 48px); text-align: center; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .hero-image-wrap { order: -1; }

  .why-section, .premium-section, .looking-section, .movies-section, .pricing-section, .faq-section, .contact-section { padding: 60px 20px; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .posters-row { grid-template-columns: repeat(2, 1fr); }
  .looking-grid { grid-template-columns: 1fr; }
  .checklist { border-radius: 12px 12px 0 0; padding: 36px 24px; }
  .looking-image { border-radius: 0 0 12px 12px; min-height: 260px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
