/* Streamolo — Shared CSS | Colors from pioneerstv.com reference */
/* Dark theme: #030712 bg, #0E76DA + #01C3FE accents, #FFAB00 gold, #FFFFFF text */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Sora', sans-serif;
  background: #030712;
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: #01C3FE; text-decoration: none; transition: color .3s; }
a:hover { color: #FFAB00; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: #FFFFFF; line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
.site-header {
  background: rgba(3, 7, 18, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 118, 218, 0.2);
  transition: all .3s;
}
.site-header.scrolled {
  background: rgba(3, 7, 18, 0.98);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.logo span { color: #01C3FE; }
.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-menu a {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color .3s;
}
.nav-menu a:hover,
.nav-menu a.active { color: #01C3FE; }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #01C3FE;
  transition: width .3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #030712 0%, #0E76DA15 50%, #030712 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(14,118,218,0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(-10%, -10%); }
  100% { transform: translate(10%, 10%); }
}
.hero h1 { margin-bottom: 20px; position: relative; }
.hero h1 .accent { color: #01C3FE; }
.hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 30px; position: relative; color: #ccc; }
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #0E76DA, #01C3FE);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #01C3FE, #0E76DA);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,118,218,0.4);
  color: #FFFFFF;
}
.btn-secondary {
  background: transparent;
  color: #FFAB00;
  border: 2px solid #FFAB00;
}
.btn-secondary:hover {
  background: #FFAB00;
  color: #030712;
  transform: translateY(-2px);
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section-dark { background: #030712; }
.section-alt { background: #0a0f1a; }
.section-accent { background: linear-gradient(135deg, #0E76DA10, #01C3FE08); }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { margin-bottom: 15px; }
.section-title p { color: #999; max-width: 600px; margin: 0 auto; }
.section-title .bracket {
  color: #FFAB00;
  font-weight: 700;
}

/* ── Feature Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  background: linear-gradient(145deg, #0a0f1a, #111827);
  border: 1px solid rgba(14,118,218,0.15);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #0E76DA;
  box-shadow: 0 10px 40px rgba(14,118,218,0.15);
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0E76DA20, #01C3FE20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.feature-card p { color: #999; font-size: 0.9rem; margin-bottom: 0; }

/* ── Channel Logos ── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
}
.channel-logo {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: all .3s;
}
.channel-logo:hover {
  border-color: #0E76DA;
  transform: scale(1.05);
}
.channel-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(145deg, #0a0f1a, #111827);
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(14,118,218,0.15);
}
.pricing-card.featured {
  border-color: #01C3FE;
  background: linear-gradient(145deg, #0E76DA15, #01C3FE10);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFAB00, #FF8C00);
  color: #030712;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #01C3FE;
}
.pricing-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.pricing-price .currency { font-size: 1.4rem; vertical-align: top; }
.pricing-period { color: #999; margin-bottom: 25px; font-size: 0.9rem; }
.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: #01C3FE;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 30px;
}
.testimonial-stars { color: #FFAB00; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-text { color: #ccc; font-style: italic; margin-bottom: 16px; }
.testimonial-author { color: #FFFFFF; font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #1e293b;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #0a0f1a;
}
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #FFFFFF;
  transition: background .3s;
}
.faq-question:hover { background: rgba(14,118,218,0.1); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #01C3FE;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out, padding .3s;
  color: #999;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 25px 20px;
}

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #ccc;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #1e293b;
  border-radius: 10px;
  background: #111827;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0E76DA;
  box-shadow: 0 0 0 3px rgba(14,118,218,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ── Checkout Form ── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.checkout-summary {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 35px;
}
.checkout-form {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 35px;
}

/* ── Page Banner ── */
.page-banner {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #030712, #0E76DA15);
  position: relative;
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner .breadcrumb { color: #999; }
.page-banner .breadcrumb a { color: #01C3FE; }

/* ── Content pages ── */
.content-section { padding: 60px 0; }
.content-section h2 { margin-bottom: 20px; color: #01C3FE; }
.content-section h3 { margin-bottom: 15px; }
.content-section p { color: #ccc; margin-bottom: 15px; }
.content-section ul { padding-left: 20px; margin-bottom: 15px; }
.content-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #ccc;
}
.content-section ul li::before {
  content: '\2022';
  color: #01C3FE;
  position: absolute;
  left: 0;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 40px 0;
}
.stat-item h3 {
  font-size: 2.2rem;
  color: #01C3FE;
  margin-bottom: 5px;
}
.stat-item p { color: #999; font-size: 0.9rem; }

/* ── Image Grid ── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.image-grid img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  transition: transform .3s;
}
.image-grid img:hover { transform: scale(1.03); }

/* ── Carousel row ── */
.carousel-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 0;
}
.carousel-row::-webkit-scrollbar { display: none; }
.carousel-row img {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
  border-radius: 10px;
  scroll-snap-align: start;
}

/* ── About Cards ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ── Setup Guide ── */
.guide-step {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
}
.guide-step h3 { color: #01C3FE; margin-bottom: 12px; }
.guide-step img {
  border-radius: 10px;
  margin: 15px 0;
}
.guide-step ol {
  padding-left: 20px;
  color: #ccc;
}
.guide-step ol li { margin-bottom: 8px; }

/* ── Contact Grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info-card {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 30px;
}
.contact-info-card h3 { color: #01C3FE; margin-bottom: 15px; }
.contact-info-card p { color: #ccc; }

/* ── Footer ── */
.site-footer {
  background: #000000;
  border-top: 1px solid #1e293b;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about { max-width: 300px; }
.footer-about .logo { margin-bottom: 15px; display: block; }
.footer-about p { color: #999; font-size: 0.9rem; }
.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 18px;
  font-size: 1rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #01C3FE;
}
.footer-col a {
  display: block;
  color: #999;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: color .3s, padding-left .3s;
}
.footer-col a:hover { color: #01C3FE; padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* ── Reseller ── */
.reseller-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.reseller-benefit {
  background: #0a0f1a;
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
}
.reseller-benefit h3 { color: #01C3FE; margin-bottom: 10px; font-size: 1rem; }

/* ── Sport logos row ── */
.sports-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.sports-logos img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  transition: transform .3s;
}
.sports-logos img:hover { transform: scale(1.1); }

/* ── Two Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col img {
  border-radius: 16px;
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #030712;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #1e293b;
    gap: 0;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid #1e293b; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .two-col { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .hero { padding: 60px 0 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
}

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 360px) {
  .hero h1 { font-size: 1.25rem; }

/* ─── TOUCH & INTERACTION ─── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, a, button { min-height: 44px; min-width: 44px; }
  .nav-links a { padding: 12px 8px; }
  .faq-question { padding: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .whatsapp-btn, .skip-link, footer, header, nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; padding: 20px 0; }
}
