:root {
  color-scheme: dark;
  --bg: #080b12;
  --bg-soft: #0d111a;
  --card: #121824;
  --card-2: #151d2a;
  --blue: #168cff;
  --blue-2: #2f8cff;
  --text: #ffffff;
  --muted: #b7c0cf;
  --line: rgba(255, 255, 255, 0.11);
  --green: #22c55e;
  --play: #32e66b;
  --play-2: #b7f23f;
  --play-text: #031109;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

main,
.site-header,
.hero,
.section,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.wrap {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 11, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  max-width: calc(100% - 82px);
  overflow: hidden;
  font-weight: 800;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #080b12;
  object-fit: contain;
  box-shadow: 0 0 24px rgba(22, 140, 255, 0.28);
}

.brand-text {
  display: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(16px, 4.2vw, 20px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: 800 15px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-2);
  box-shadow: 0 14px 28px rgba(22, 140, 255, 0.24);
}

.button:focus-visible,
.link-button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 140, 255, 0.5);
  outline-offset: 3px;
}

.button-small {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.button-primary,
.button-copy,
.button-secondary {
  width: 100%;
}

.button-secondary {
  border: 1px solid rgba(47, 140, 255, 0.48);
  background: rgba(47, 140, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(47, 140, 255, 0.22);
}

.play-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, var(--play), var(--play-2));
  color: var(--play-text);
  box-shadow: 0 14px 30px rgba(50, 230, 107, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.play-button:hover {
  background: linear-gradient(135deg, #54f07f, #d6ff67);
  color: var(--play-text);
  box-shadow: 0 18px 36px rgba(50, 230, 107, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero {
  background:
    linear-gradient(180deg, rgba(13, 17, 26, 0.96), rgba(8, 11, 18, 1)),
    radial-gradient(circle at top, rgba(22, 140, 255, 0.14), transparent 48%);
}

.hero-inner {
  display: grid;
  justify-items: center;
  padding: 22px 0 34px;
  text-align: center;
}

.hero-logo {
  width: 170px;
  max-width: 58vw;
  aspect-ratio: 1;
  height: auto;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #d7e4f7;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.72);
}

h1,
h2 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 720px;
  font-size: clamp(24px, 6.2vw, 48px);
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}

h2 {
  font-size: clamp(23px, 6.4vw, 36px);
}

p {
  margin: 0;
}

.hero-lead,
.section-intro,
.note,
.bonus-note,
.small-note,
.text-block p,
.final-cta p,
.redirect-card p {
  color: var(--muted);
}

.hero-lead {
  max-width: 720px;
  margin-top: 14px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.promo-card {
  width: calc(100% - 24px);
  max-width: 320px;
  margin: 20px 0 16px;
  padding: 18px 16px;
  border: 1px solid rgba(47, 140, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 29, 42, 0.98), rgba(18, 24, 36, 0.98));
  box-shadow: 0 26px 70px rgba(22, 140, 255, 0.16);
}

.eyebrow,
.field-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-code {
  display: block;
  margin: 7px 0 18px;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(32px, 9.4vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 28px rgba(22, 140, 255, 0.32);
}

.hero-cta {
  margin-top: 4px;
}

.cta-row {
  display: grid;
  width: calc(100% - 24px);
  max-width: 320px;
  gap: 10px;
}

.note {
  max-width: 640px;
  margin-top: 16px;
  padding-inline: 6px;
}

.bonus-note {
  max-width: 690px;
  margin-top: 10px;
  padding-inline: 6px;
  font-size: 15px;
}

.section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-soft);
}

.section-intro {
  margin-top: 12px;
}

.promo-list,
.steps,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.promo-row,
.step,
details,
.redirect-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.promo-row {
  display: grid;
  gap: 16px;
  padding: 18px;
  text-align: left;
}

.promo-row strong,
.promo-row span:not(.field-label),
.promo-row a {
  font-size: 17px;
}

.available {
  color: var(--green);
  font-weight: 800;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--play), var(--play-2));
  color: var(--play-text);
  font: 800 15px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(50, 230, 107, 0.18);
}

.small-note {
  margin-top: 14px;
  font-size: 14px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 16px;
}

.step span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: rgba(22, 140, 255, 0.12);
  color: #86c2ff;
  font-weight: 900;
}

.step p {
  font-weight: 700;
}

.text-block p {
  margin-top: 14px;
  font-size: 16px;
}

details {
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 17px 18px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #86c2ff;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(180deg, #0d111a, #080b12);
}

.final-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.final-code {
  margin: 0;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #070a10;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  font-size: 14px;
}

.footer-inner a {
  color: #d7e4f7;
}

.redirect-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px 16px;
  background:
    linear-gradient(180deg, rgba(13, 17, 26, 0.96), rgba(8, 11, 18, 1)),
    radial-gradient(circle at top, rgba(22, 140, 255, 0.16), transparent 48%);
}

.redirect-card {
  width: min(100%, 560px);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.redirect-logo {
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.redirect-card h1 {
  font-size: clamp(28px, 8vw, 42px);
}

.redirect-card p {
  margin: 14px 0 20px;
}

@media (min-width: 620px) {
  .wrap {
    padding-inline: 24px;
  }

  .brand-text {
    display: inline;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .button-primary,
  .button-copy,
  .button-secondary {
    width: auto;
    min-width: 260px;
  }

  .cta-row {
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: center;
  }

  .promo-card {
    width: min(100%, 560px);
    padding: 28px;
  }

  .hero-logo {
    width: 250px;
    max-width: 100%;
  }

  .redirect-logo {
    width: 260px;
  }

  .promo-row {
    grid-template-columns: 1.05fr 0.85fr 1fr minmax(180px, 1.4fr) auto;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
