:root {
  --bg: #1b2029;
  --panel: #222936;
  --panel-soft: #252d3b;
  --panel-deep: #171c25;
  --line: #333d4c;
  --text: #f3f7ff;
  --muted: #98a3b5;
  --blue: #0f8bff;
  --blue-dark: #0670dd;
  --green: #19c74d;
  --yellow: #ffd43b;
  --pink: #ff2f75;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(27, 32, 41, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.logo-mark {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: var(--blue);
  border-radius: 4px;
}

.small-logo {
  font-size: 15px;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ffffff;
  background: #252d3a;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.main-nav {
  position: fixed;
  inset: 58px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: #1e2530;
  border-bottom: 1px solid var(--line);
}

.nav-open .main-nav {
  display: flex;
}

.main-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px;
  border-radius: 6px;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: #ffffff;
}

.header-cta {
  display: none;
  padding: 10px 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  background: var(--blue);
  border-radius: 5px;
}

.section-dark,
.split-section,
.vip-section,
.community-section {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  padding: 26px 0 18px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(32px, 8vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 6vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.2;
}

.hero-text,
.section-copy p,
.section-heading p,
.benefit-item p,
.faq-answer p,
.disclaimer {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(15, 139, 255, 0.25);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--blue-dark);
}

.btn-light {
  color: #041522;
  background: #ffffff;
}

.btn-code {
  color: #ffffff;
  background: #111722;
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

.btn-code strong {
  color: var(--yellow);
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 260px;
}

.player-card {
  overflow: hidden;
  min-height: 250px;
  border-radius: 7px;
  background: #18202d;
}

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

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.social-strip a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: #252d3a;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.brand-row {
  padding: 20px 0;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
  color: #cbd4e3;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.brand-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  opacity: 0.78;
}

.promo-stack {
  display: grid;
  gap: 18px;
  margin-block: 8px 28px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  align-items: flex-start;
  padding: 26px;
  box-shadow: var(--shadow);
}

.promo-blue {
  background:
    radial-gradient(circle at 84% 54%, rgba(255, 255, 255, 0.2), transparent 19%),
    linear-gradient(130deg, #1069d7 0%, #06439a 58%, #07366f 100%);
}

.promo-green {
  background:
    radial-gradient(circle at 82% 52%, rgba(255, 255, 255, 0.18), transparent 19%),
    linear-gradient(130deg, #19b72f 0%, #0b8e2d 58%, #0b641f 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.promo-content h2 {
  max-width: 620px;
}

.promo-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  max-width: 470px;
}

.promo-features span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(7, 18, 35, 0.26);
  border-radius: 5px;
}

.promo-features span::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: inset 0 0 0 4px var(--blue);
}

.promo-green .promo-features span::before {
  box-shadow: inset 0 0 0 4px var(--green);
}

.promo-emoji {
  position: absolute;
  right: -18px;
  bottom: 8px;
  width: min(42vw, 210px);
}

.split-section,
.vip-section,
.support-section,
.community-section,
.faq-section {
  margin-block: 28px;
  padding: 28px;
}

.payment-section,
.vip-section,
.support-section,
.community-section,
.faq-section {
  display: grid;
  gap: 28px;
}

.screen-collage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.screen-collage img,
.screenshot-grid img {
  width: 100%;
}

.section-copy p {
  margin-bottom: 22px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #202733;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: var(--pink);
  border-radius: 5px;
}

.support-section {
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: "S";
  position: absolute;
  top: -64px;
  left: 40%;
  color: rgba(255, 255, 255, 0.04);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}

.support-section > * {
  position: relative;
}

.chat-widget {
  max-width: 360px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: #131924;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--blue);
}

.chat-line {
  padding: 14px;
  color: #dce8ff;
  font-size: 15px;
  font-weight: 800;
}

.chat-bubble {
  margin: 10px 14px;
  padding: 12px;
  color: #ffffff;
  font-size: 13px;
  border-radius: 5px;
}

.chat-user {
  background: #222c3b;
}

.chat-agent {
  background: var(--green);
}

.chat-send {
  width: 36px;
  height: 36px;
  margin: 10px 14px 14px auto;
  display: block;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-send::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #151c27;
}

.table-section {
  margin-block: 34px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.table-wrap {
  overflow-x: auto;
  background: #222936;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  color: #d9e2f0;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #ffffff;
  background: #1b2230;
}

td:nth-child(3),
td:nth-child(5) {
  color: #21d65b;
  font-weight: 900;
}

.screenshot-grid {
  max-width: 380px;
}

.faq-section {
  align-items: start;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.faq-aside {
  padding: 28px;
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: #ffffff;
  text-align: left;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--muted);
  font-size: 22px;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  margin-top: 38px;
  padding: 26px 0 34px;
  background: #171c25;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  gap: 20px;
  text-align: center;
}

.footer-nav,
.footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-icons span {
  min-width: 42px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: #222936;
  border-radius: 14px;
}

.disclaimer,
.copyright {
  max-width: 820px;
  margin: 0 auto;
  font-size: 12px;
}

.copyright {
  color: #7f8a9b;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 56px, 1120px);
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid,
  .payment-section,
  .vip-section,
  .support-section,
  .community-section,
  .faq-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .btn-code {
    min-width: 220px;
  }

  .brand-list {
    grid-template-columns: repeat(6, 1fr);
  }

  .promo-card {
    min-height: 350px;
    padding: 34px;
  }

  .promo-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promo-emoji {
    right: 36px;
    width: 240px;
  }

  .faq-aside {
    min-height: 260px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .main-nav a {
    padding: 0;
  }

  .header-cta {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-media {
    min-height: 380px;
  }

  .player-card {
    min-height: 380px;
  }

  .hero-copy {
    align-self: center;
  }

  .split-section,
  .vip-section,
  .support-section,
  .community-section {
    padding: 46px;
  }

  .benefit-list {
    gap: 18px;
  }

  .support-section {
    grid-template-columns: 1fr 0.76fr;
  }

  .community-section {
    grid-template-columns: 0.55fr 1fr;
  }

  .faq-section {
    grid-template-columns: 0.42fr 1fr;
    gap: 34px;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(100% - 72px, 1160px);
  }

  .hero {
    padding-top: 48px;
  }
}
