/* =========================================
   NITROTV - CORE STYLES & VARIABLES
   FONT: Outfit (Premium & Modern)
   PALETTE: Customized Dark Orange / Multi-color
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #0f0f0f;
  --bg-darker: #050505;
  --bg-card: #18181b;
  --bg-card-hover: #27272a;
  --bg-light: #f4f4f5;
  --primary: #f97316;       /* Bright Orange */
  --secondary: #ea580c;     /* Deep Orange */
  --tertiary: #ffedd5;      /* Light Orange wash */
  --whatsapp: #25d366;      /* WhatsApp Green */
  --text-white: #ffffff;
  --text-light: #a1a1aa;
  --text-muted: #71717a;
  --text-dark: #18181b;
  --border: #27272a;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 25px -5px rgba(249, 115, 22, 0.15); /* Orange Glow */
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.4);
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

/* =========================================
   RESETS & FOUNDATION 
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-light { color: var(--text-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured .btn-primary {
  animation: pulse-featured 2s infinite;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse-featured {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

[data-tooltip] {
  position: relative;
}
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-white);
  color: var(--text-dark);
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  margin-bottom: 5px;
}

/* =========================================
   LAYOUT SECTIONS
   ========================================= */
.section {
  padding: 80px 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.dropdown-menu {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.dropdown-menu:hover .dropdown-content,
.dropdown-content.dropdown-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
}
.dropdown-content a:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(180deg, rgba(15, 15, 15, 0.6) 0%, var(--bg-dark) 100%), url('media/hereimage.webp');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-item .num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MARQUEES */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 30s linear infinite;
  gap: 20px;
}
.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-item {
  flex-shrink: 0;
}
.marquee-item img {
  border-radius: var(--radius-md);
  height: 60px;
  object-fit: contain;
}

.movie-marquee .marquee-item img {
  height: 220px;
  width: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.movie-marquee .marquee-item:hover img {
  transform: scale(1.05);
}

/* INTRO/TRUST SECTION */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.trust-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.trust-icon {
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}
.trust-icon svg { width: 30px; height: 30px; fill: currentColor; }
.trust-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.trust-card p { color: var(--text-light); font-size: 0.95rem; }

/* REGION CARDS */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.region-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.region-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.region-flag { width: 40px; height: 30px; border-radius: 4px; object-fit: cover; }
.region-body { padding: 20px; }
.region-body p { color: var(--text-light); margin-bottom: 15px; }

/* HOW IT WORKS (STEPS) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.1);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-duration {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 5px;
}

.pricing-price span.currency { font-size: 1.5rem; vertical-align: top; }
.pricing-old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; margin-bottom: 20px;}
.pricing-calc { color: var(--primary); font-weight: 600; margin-bottom: 20px; font-size: 0.95rem; }

.pricing-features {
  margin: 30px 0;
  text-align: left;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.pricing-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--primary);
  margin-top: 2px;
}

/* TIMER */
.countdown-wrapper {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px;
}
.timer-blocks {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.t-block {
  background: var(--bg-dark);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  min-width: 60px;
}
.t-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.t-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; }

/* OS DOWNLOAD ROW */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.os-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}
.os-card:hover { border-color: var(--primary); background: var(--bg-card-hover); }
.os-card svg { width: 32px; height: 32px; fill: var(--text-light); transition: var(--transition); }
.os-card:hover svg { fill: var(--primary); }
.os-card span { font-weight: 600; font-size: 1.1rem; }

/* SPORT SHOWCASE */
.sport-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sport-media { position: relative; }
.sport-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sport-float { position: absolute; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 2px solid var(--bg-dark); }
.float-1 { bottom: -20px; right: -20px; width: 40%; }
.float-2 { top: -20px; left: -20px; width: 35%; }
.sport-checklist { margin-top: 30px; }
.sport-checklist li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; font-weight: 500; }
.sport-checklist svg { width: 24px; height: 24px; fill: var(--whatsapp); }

/* COMPATIBLE APPS */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.app-card:hover { border-color: var(--primary); transform: translateY(-6px); }
.app-card img { height: 60px; object-fit: contain; margin: 0 auto 15px; filter: grayscale(50%) contrast(1.2); transition: 0.3s; }
.app-card:hover img { filter: grayscale(0%) contrast(1); }

/* COMPARISON TABLE */
.comparison-container { overflow-x: auto; margin-bottom: 40px; }
.comp-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 20px; text-align: center; border-bottom: 1px solid var(--border); }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; padding-left: 0; }
.comp-table th { font-size: 1.1rem; color: var(--text-light); font-weight: 500; }
.table-us { color: var(--primary); font-weight: 700; width: 20%; background: rgba(249,115,22,0.05); border-radius: 8px 8px 0 0;}
.table-them { color: var(--text-light); width: 20%; }
.comp-table td.table-us { background: rgba(249,115,22,0.05); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table svg { width: 24px; height: 24px; }
.icon-check { fill: var(--whatsapp); }
.icon-cross { fill: #ef4444; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.review-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px;}
.review-text { font-size: 1.05rem; color: var(--text-white); margin-bottom: 20px; font-style: italic;}
.reviewer { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--border); padding-top: 20px;}
.reviewer-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem;
}
.reviewer-info h4 { font-size: 1rem; margin-bottom: 5px; }
.reviewer-info span { color: var(--whatsapp); font-size: 0.85rem; font-weight: 500;}

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto 40px; }
.faq-item { background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 15px; overflow: hidden;}
.faq-question {
  padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.1rem; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-light);
}
.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 500px; }

/* WHATSAPP GREEN BOX */
.support-widget {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.support-widget h3 { margin-bottom: 15px; font-size: 1.5rem; color: white;}
.support-widget p { color: #e8f5e9; margin-bottom: 25px;}
.support-widget .btn { background: white; color: #128c7e; }

/* PAYMENT STRIP */
.payment-strip { text-align: center; padding: 40px 0; border-top: 1px solid var(--border); }
.payment-img { max-height: 45px; opacity: 0.7; margin: 0 auto; transition: 0.3s;}
.payment-img:hover { opacity: 1; }

/* FOOTER */
.footer { background: var(--bg-darker); padding: 80px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-info p { color: var(--text-light); margin: 20px 0; max-width: 300px; }
.footer h4 { margin-bottom: 25px; font-size: 1.1rem; font-weight: 600;}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); }
.footer-links a:hover { color: var(--primary); padding-left: 5px;}
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.9rem;}

/* SOCIAL ICONS */
.social-links { display: flex; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition); }
.social-links a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: var(--text-light); transition: var(--transition); }
.social-links a:hover svg { fill: white; }

/* SEO CONTENT */
.seo-content { padding: 60px 0; border-top: 1px solid var(--border); background: var(--bg-dark); }
.seo-text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.seo-text-block h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--text-white); }
.seo-text-block p { color: var(--text-light); margin-bottom: 15px; font-size: 0.95rem; line-height: 1.7; }
@media(max-width: 768px) { .seo-text-grid { grid-template-columns: 1fr; } }

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px; background: var(--whatsapp);
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 1000;
  animation: pulse 2s infinite;
}
.float-wa svg { fill: white; width: 35px; height: 35px; }

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* RESPONSIVE CSS */
@media(max-width: 1024px) {
  .sport-split { grid-template-columns: 1fr; }
  .sport-media { width: 80%; margin: 0 auto; }
}
@media(max-width: 768px) {
  .header .nav-links, .header .btn-primary { display: none; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
  .stats-row { gap: 20px; }
}
