/* IPTV Box — Live TV Player · marketing site
   Static, no build step. Dark neon theme derived from the app icon. */

:root {
  --bg: #08040f;
  --bg-soft: #120a22;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 90, 160, 0.14);
  --border-strong: rgba(255, 90, 160, 0.28);
  --text: #f6ecff;
  --text-soft: #c9b8df;
  --text-mute: #8a7aa6;

  --accent: #ff2e7e;        /* neon pink from the logo */
  --accent-2: #ff6aa6;      /* lighter tint */
  --accent-3: #c4185a;      /* darker shade */
  --accent-glow: rgba(255, 46, 126, 0.35);
  --cyan: #29e0ff;          /* secondary neon accent */
  --violet: #8b5cff;

  --maxw: 1180px;
  --radius-card: 18px;
  --radius-hero: 28px;
  --radius-badge: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "SF Pro Display", "Inter", Roboto, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient neon glow blobs */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}
body::before { top: -180px; left: -140px; width: 480px; height: 480px; background: var(--accent-glow); }
body::after  { top: 30%; right: -200px; width: 460px; height: 460px; background: rgba(41, 224, 255, 0.16); }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }

.accent-text {
  background: linear-gradient(100deg, var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8, 4, 15, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.05rem; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 0 18px var(--accent-glow); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-soft); font-size: 0.94rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-3));
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--accent-glow); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); background: var(--bg-card); }
.btn-ghost:hover { background: var(--bg-card-strong); }

/* ---------- google play badge ---------- */
.googleplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-badge);
  padding: 10px 18px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.googleplay-badge:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.5); }
.googleplay-badge svg { width: 26px; height: 26px; }
.googleplay-badge .gp-text { display: flex; flex-direction: column; line-height: 1.1; }
.googleplay-badge .gp-small { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: #cfcfcf; }
.googleplay-badge .gp-big { font-size: 1.18rem; font-weight: 600; color: #fff; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-icon {
  width: 92px; height: 92px; border-radius: 22px;
  box-shadow: 0 0 40px var(--accent-glow);
  margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 18px; }
.hero p.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-row {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-row span {
  font-size: 0.82rem;
  color: var(--text-soft);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
}

.hero-mocks { position: relative; height: 540px; }
.hero-mocks img {
  position: absolute;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-mocks img.m1 {
  width: 260px; top: 10px; left: 6%;
  transform: rotate(-7deg);
  z-index: 2;
}
.hero-mocks img.m2 {
  width: 260px; top: 50px; right: 4%;
  transform: rotate(6deg);
  z-index: 1;
}

/* ---------- sections ---------- */
section { padding: 80px 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; }

/* features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-card-strong); }
.feature-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 46, 126, 0.2), rgba(41, 224, 255, 0.14));
  border: 1px solid var(--border-strong);
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--accent-2); fill: none; stroke-width: 2; }
.feature-card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.feature-card p { color: var(--text-soft); font-size: 0.96rem; }

/* screenshots */
.screens-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 24px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-3) transparent;
}
.screens-scroller::-webkit-scrollbar { height: 7px; }
.screens-scroller::-webkit-scrollbar-thumb { background: var(--accent-3); border-radius: 999px; }
.screens-scroller img {
  width: 280px;
  flex: 0 0 auto;
  border-radius: 26px;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* privacy-first callout */
.privacy-first {
  background: linear-gradient(135deg, rgba(255, 46, 126, 0.08), rgba(139, 92, 255, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.privacy-grid h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.privacy-grid p { color: var(--text-soft); margin-bottom: 14px; }
.privacy-list { list-style: none; display: grid; gap: 14px; }
.privacy-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.privacy-list svg { width: 22px; height: 22px; flex: 0 0 auto; stroke: var(--cyan); fill: none; stroke-width: 2; margin-top: 2px; }

/* download CTA */
.download-card {
  background: linear-gradient(135deg, rgba(255, 46, 126, 0.16), rgba(41, 224, 255, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-hero);
  padding: 60px 40px;
  text-align: center;
}
.download-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.download-card p { color: var(--text-soft); max-width: 520px; margin: 0 auto 28px; font-size: 1.06rem; }
.download-card .hero-cta { justify-content: center; }

/* footer */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 700; }
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-col h4 { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-soft); font-size: 0.95rem; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-blurb { color: var(--text-soft); font-size: 0.95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 0.86rem;
}
.footer-bottom .trademark { max-width: 640px; }

/* ---------- legal / content pages ---------- */
.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  position: relative;
  z-index: 1;
}
.legal .back-link { color: var(--accent-2); font-size: 0.92rem; display: inline-block; margin-bottom: 28px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 10px; }
.legal .dates { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 34px; }
.legal h2 {
  font-size: 1.4rem; font-weight: 700; margin: 38px 0 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.legal h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); }
.legal .summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  margin: 24px 0;
}
.legal .summary-box ul { margin-bottom: 0; }
.legal table {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.92rem;
}
.legal th, .legal td {
  text-align: left; padding: 11px 12px; border: 1px solid var(--border); vertical-align: top;
}
.legal th { background: var(--bg-card-strong); color: var(--text); font-weight: 600; }
.legal td { color: var(--text-soft); }

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--text); }
.faq-item p { color: var(--text-soft); margin-bottom: 0; }
.contact-card {
  background: linear-gradient(135deg, rgba(255, 46, 126, 0.12), rgba(41, 224, 255, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  margin-top: 28px;
  text-align: center;
}
.contact-card a.btn { margin-top: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-mocks { height: 480px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .hero { padding: 56px 0 50px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-mocks img.m1, .hero-mocks img.m2 { width: 210px; }
  .hero-mocks { height: 420px; }
  .screens-scroller img { width: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .download-card { padding: 44px 24px; }
}
