:root {
  --navy: #07111f;
  --deep-blue: #0b1f3a;
  --cyan: #00cfff;
  --blue: #1f7cff;
  --magenta: #e72cff;
  --red: #ff2851;
  --white: #ffffff;
  --soft: #f5f7fa;
  --text: #6b7280;
  --ink: #111827;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 22px 55px rgba(7, 17, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.main-navbar {
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  display: block;
  height: 44px;
  width: auto;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.94rem;
  padding-inline: 0.7rem;
  transition: color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--cyan);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gradient {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 52%, var(--magenta));
  box-shadow: 0 12px 28px rgba(31, 124, 255, 0.28), 0 0 28px rgba(0, 207, 255, 0.18);
}

.btn-gradient:hover,
.btn-gradient:focus {
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 124, 255, 0.38), 0 0 36px rgba(231, 44, 255, 0.2);
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 7rem 0 5.5rem;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 207, 255, 0.12), transparent 28%),
    linear-gradient(235deg, rgba(231, 44, 255, 0.16), transparent 32%),
    linear-gradient(180deg, var(--navy), var(--deep-blue));
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 92%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  width: 48vw;
  height: 18rem;
  border: 1px solid rgba(0, 207, 255, 0.16);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-orbit-one {
  top: 11%;
  right: -18%;
}

.hero-orbit-two {
  bottom: 12%;
  left: -24%;
  border-color: rgba(255, 40, 81, 0.15);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero-section h1,
.section-heading h2,
.dark-section h2,
.cta-panel h2,
.download-card h1,
section h2 {
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-section h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.7;
  max-width: 640px;
}

.hero-actions,
.cta-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.tech-badge,
.live-pill,
.plan-badge {
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tech-badge.live,
.live-pill {
  background: linear-gradient(135deg, var(--red), var(--magenta));
  box-shadow: 0 0 24px rgba(255, 40, 81, 0.32);
}

.streaming-mockup {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.mockup-topbar,
.mockup-metrics,
.channel-info,
.program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.window-dots {
  display: flex;
  gap: 0.45rem;
}

.window-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--cyan);
}

.window-dots span:nth-child(2) {
  background: var(--magenta);
}

.window-dots span:nth-child(3) {
  background: var(--red);
}

.mockup-status {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 700;
}

.player-window {
  position: relative;
  min-height: 330px;
  margin-top: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0, 207, 255, 0.22), transparent 40%),
    linear-gradient(315deg, rgba(255, 40, 81, 0.28), transparent 46%),
    #101827;
}

.player-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.96), transparent 58%);
}

.player-glow {
  position: absolute;
  inset: 24% 18%;
  border: 1px solid rgba(0, 207, 255, 0.4);
  transform: skewX(-12deg);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 0;
  color: var(--white);
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  box-shadow: 0 0 38px rgba(0, 207, 255, 0.34);
  transform: translate(-50%, -50%);
}

.player-window .live-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.player-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.player-caption span,
.mockup-metrics span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.content-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1rem 0;
}

.rail-card {
  min-height: 84px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 207, 255, 0.08));
}

.rail-card.active {
  background: linear-gradient(135deg, rgba(31, 124, 255, 0.85), rgba(231, 44, 255, 0.8));
}

.mockup-metrics > div {
  flex: 1;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-metrics strong {
  display: block;
  font-size: 1.25rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading h2,
section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.section-text,
.dark-section p,
.cta-panel p {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.8;
}

.feature-card,
.plan-card,
.contact-card,
.download-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card,
.plan-card {
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 207, 255, 0.35);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.18);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.55rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  margin-bottom: 1.25rem;
}

.feature-card h3,
.plan-card h3,
.site-footer h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.feature-card p,
.plan-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(0, 207, 255, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(231, 44, 255, 0.08), transparent 38%),
    var(--soft);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.catalog-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.3rem;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(7, 17, 31, 0.92), transparent 65%),
    linear-gradient(135deg, #1f7cff, #17355e);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.catalog-card.featured {
  min-height: 398px;
  grid-row: span 2;
  background:
    linear-gradient(0deg, rgba(7, 17, 31, 0.92), transparent 62%),
    linear-gradient(135deg, #00cfff, #1f7cff 42%, #ff2851);
}

.catalog-card span {
  color: var(--cyan);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.catalog-card strong {
  font-size: 1.35rem;
}

.dark-section,
.cta-section,
.download-page {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(31, 124, 255, 0.2), transparent 34%),
    linear-gradient(235deg, rgba(255, 40, 81, 0.18), transparent 36%),
    linear-gradient(180deg, var(--navy), #0a172a);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.live-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.live-highlights span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.live-highlights i {
  color: var(--cyan);
  margin-right: 0.45rem;
}

.live-card {
  position: relative;
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
}

.live-card .live-pill {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.channel-screen {
  min-height: 270px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 4.2rem;
  color: var(--cyan);
  background:
    linear-gradient(140deg, rgba(0, 207, 255, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(231, 44, 255, 0.28), transparent 48%),
    #101827;
}

.channel-info {
  margin: 1rem 0;
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.channel-info span,
.program-row span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.program-row {
  padding: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tech-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 750;
}

.tech-item i {
  color: var(--blue);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.highlighted {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 207, 255, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(231, 44, 255, 0.22), transparent 46%),
    var(--deep-blue);
  border-color: rgba(0, 207, 255, 0.35);
  transform: translateY(-12px);
}

.plan-card.highlighted p,
.plan-card.highlighted li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--red), var(--magenta));
}

.plan-card ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  margin: 1.4rem 0 1.8rem;
  color: var(--text);
}

.plan-card .btn {
  margin-top: auto;
}

.cta-section {
  padding: 4rem 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.contact-note {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
}

.contact-note i {
  color: var(--blue);
  font-size: 1.4rem;
}

.contact-card {
  padding: 1.5rem;
}

.form-label {
  color: var(--ink);
  font-weight: 750;
}

.form-control {
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 0.85rem 1rem;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.22rem rgba(31, 124, 255, 0.12);
}

.site-footer {
  padding: 4rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  background: #050b14;
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 440px;
  line-height: 1.75;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--cyan);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.download-page {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}

.download-bg-one,
.download-bg-two {
  position: absolute;
  width: 52vw;
  height: 16rem;
  border: 1px solid rgba(0, 207, 255, 0.14);
  transform: rotate(-16deg);
}

.download-bg-one {
  top: 12%;
  right: -18%;
}

.download-bg-two {
  bottom: 8%;
  left: -18%;
  border-color: rgba(255, 40, 81, 0.16);
}

.download-card {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.download-logo {
  width: 230px;
  height: auto;
  margin-bottom: 1.5rem;
}

.download-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.device-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}

.device-install-card,
.private-apk-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(6, 18, 34, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.device-install-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.device-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.device-card-heading > img {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.device-card-heading h2,
.private-apk-panel h2 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.3rem;
}

.device-card-heading p,
.private-apk-panel p {
  margin: 0;
  font-size: 0.95rem;
}

.device-type {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.play-screenshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.2rem 0;
}

.play-screenshots img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.btn-play-store {
  width: 100%;
  color: var(--white);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-play-store:hover,
.btn-play-store:focus {
  color: var(--white);
  background: #242424;
  border-color: var(--cyan);
}

.install-steps {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.private-apk-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  text-align: left;
}

.private-apk-panel .btn {
  flex: 0 0 auto;
}

.play-attribution {
  margin: 1rem auto 1.5rem;
  font-size: 0.78rem !important;
}

.ref-display {
  display: grid;
  gap: 0.25rem;
  max-width: 380px;
  margin: 1.8rem auto 0;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ref-display span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ref-display strong {
  font-size: clamp(1.4rem, 6vw, 2.1rem);
  overflow-wrap: anywhere;
}

.ref-form {
  margin-top: 2rem;
  text-align: left;
}

.ref-form .form-label {
  color: var(--white);
}

.future-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.future-note i {
  color: var(--cyan);
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.18s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 6rem;
  }

  .navbar-collapse {
    padding: 1rem 0 0.6rem;
  }

  .tech-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-card.highlighted {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero-orbit,
  .download-bg-one,
  .download-bg-two {
    display: none;
  }

  .hero-actions,
  .cta-actions,
  .download-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .download-actions .btn {
    width: 100%;
  }

  .streaming-mockup {
    padding: 0.75rem;
    border-radius: 20px;
  }

  .player-window,
  .channel-screen {
    min-height: 240px;
  }

  .content-rail,
  .catalog-grid,
  .tech-panel,
  .device-selector {
    grid-template-columns: 1fr;
  }

  .private-apk-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-card.featured {
    min-height: 230px;
  }

  .mockup-metrics,
  .player-caption,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .plan-card ul {
    padding-left: 1rem;
  }

  .cta-panel,
  .download-card {
    padding: 1.35rem;
  }

  .download-card .input-group {
    display: grid;
    gap: 0.7rem;
  }

  .download-card .input-group > * {
    width: 100%;
    border-radius: 8px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
