:root {
  --bg: #041b34;
  --bg-deep: #031421;
  --bg-panel: #0b2e46;
  --bg-panel-2: #12394c;
  --purple: #a24bff;
  --violet: #c66bff;
  --magenta: #ff5bcf;
  --gold: #f7c86b;
  --orange: #ffb347;
  --text: #ffffff;
  --muted: #b6c8d7;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(198, 107, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 85% 22%, rgba(255, 91, 207, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 28rem, #09293a 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 75%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(124px, 1fr) auto minmax(124px, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 9px clamp(16px, 3vw, 34px);
  background: rgba(3, 20, 33, 0.94);
  border-bottom: 1px solid rgba(198, 107, 255, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  width: 124px;
  min-width: 124px;
  height: 92px;
  margin-bottom: -38px;
  align-self: flex-start;
}

.footer-brand {
  width: 128px;
  min-width: 128px;
  height: 128px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand img {
  transform: translateY(-10px) scale(1.18);
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-menu {
  display: contents;
}

.header-menu .main-nav {
  grid-column: 2;
  justify-self: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  background: rgba(162, 75, 255, 0.18);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-item {
  position: relative;
}

.main-nav a,
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.has-dropdown > a::after {
  margin-left: 7px;
  color: var(--gold);
  font-size: 13px;
  content: "▼";
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(198, 107, 255, 0.34);
  border-radius: 8px;
  background: rgba(3, 20, 33, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 24px rgba(162, 75, 255, 0.16);
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
  content: "";
}

.nav-dropdown a {
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 17px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: rgba(162, 75, 255, 0.2);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.main-nav a:hover,
.site-footer nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 91, 207, 0.85);
}

.header-actions {
  display: flex;
  gap: 14px;
  grid-column: 3;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 28px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, var(--violet) 0%, #7d36c6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(162, 75, 255, 0.26);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 30px rgba(162, 75, 255, 0.45),
    0 0 60px rgba(255, 91, 207, 0.18);
}

.btn-small {
  min-height: 36px;
  padding: 8px 18px;
  font-size: 17px;
}

.btn-secondary {
  background: linear-gradient(180deg, #bd78d9 0%, #6a319f 100%);
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #020f1b;
}

.article-hero {
  min-height: 560px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero.article-hero .hero-image {
  filter: brightness(0.58);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 14, 26, 0.05) 0%, rgba(3, 14, 26, 0.15) 42%, rgba(3, 14, 26, 0.96) 100%),
    radial-gradient(circle at 50% 76%, rgba(255, 91, 207, 0.22), transparent 24rem);
}

.hero-content {
  position: relative;
  width: min(960px, calc(100% - 32px));
  padding: 0 0 38px;
  text-align: center;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.9);
}

.hero-copy {
  max-width: 760px;
  margin: 16px auto 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
}

.hero-copy a,
.content-section > p a {
  color: #ffe08a;
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 224, 138, 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease,
    text-shadow 0.2s ease;
}

.hero-copy a:hover,
.hero-copy a:focus-visible,
.content-section > p a:hover,
.content-section > p a:focus-visible {
  color: #fff6c9;
  text-decoration-color: currentColor;
  text-shadow: 0 0 14px rgba(247, 200, 107, 0.45);
}

.content-section > p a.btn {
  color: #fff;
  text-decoration: none;
}

.btn-hero {
  width: min(420px, 100%);
  min-height: 58px;
  font-size: 34px;
}

.quick-nav {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 12px 16px 14px;
  border-bottom: 1px solid rgba(198, 107, 255, 0.18);
}

.quick-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 6px;
  color: #fff9df;
  background: linear-gradient(180deg, rgba(18, 57, 76, 0.98), rgba(8, 36, 64, 0.98));
  cursor: pointer;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

.quick-nav summary::-webkit-details-marker {
  display: none;
}

.quick-nav summary::after {
  color: var(--gold);
  font-size: 14px;
  content: "▼";
  transition: transform 0.2s ease;
}

.quick-nav[open] summary::after {
  transform: rotate(180deg);
}

.quick-nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  max-width: 1120px;
  padding-top: 10px;
}

.quick-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(18, 57, 76, 0.98), rgba(8, 36, 64, 0.98));
  border: 1px solid rgba(198, 107, 255, 0.24);
  border-radius: 6px;
  color: #eaf4ff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.quick-nav-links a:hover,
.quick-nav-links a:focus-visible {
  background: linear-gradient(180deg, rgba(34, 77, 95, 0.98), rgba(12, 48, 80, 0.98));
  border-color: rgba(247, 200, 107, 0.72);
  color: #fff9df;
}

.quick-nav summary:hover,
.quick-nav summary:focus-visible {
  background: linear-gradient(180deg, rgba(34, 77, 95, 0.98), rgba(12, 48, 80, 0.98));
  color: #fff9df;
}

.section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-narrow {
  width: min(980px, calc(100% - 32px));
}

.section h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 62px);
  text-align: center;
}

.section > p,
.content-section > p,
.media-copy p,
.promo-panel p,
.faq-section p {
  color: var(--muted);
}

.content-section {
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-section > p {
  max-width: 920px;
  margin: 0 auto 24px;
  text-align: left;
}

.content-section > img {
  width: min(920px, 100%);
  margin: 28px auto 24px;
  border: 1px solid rgba(255, 91, 207, 0.28);
  border-radius: 10px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(247, 200, 107, 0.08),
    0 0 46px rgba(162, 75, 255, 0.18);
}

.content-section > ul,
.content-section > ol {
  max-width: 920px;
  margin: 0 auto 24px;
}

.content-section h3 {
  max-width: 920px;
  margin: 34px auto 12px;
  color: #fff;
  font-size: 34px;
  text-align: left;
}

.content-section .list-panel {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid rgba(198, 107, 255, 0.26);
  border-radius: 8px;
  background: rgba(4, 27, 52, 0.46);
}

.content-section .list-panel h3 {
  margin-top: 0;
}

.section-image {
  width: 100%;
  max-height: 440px;
  margin: 28px 0;
  border: 1px solid rgba(255, 91, 207, 0.26);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow), 0 0 50px rgba(162, 75, 255, 0.16);
}

.cta-line {
  text-align: center;
}

.content-section > .section-cta {
  margin-top: 32px;
  text-align: center;
}

.cta-section {
  text-align: center;
}

.cta-section p {
  max-width: 850px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.section > .section-kicker,
.media-copy .section-kicker,
.promo-panel .section-kicker,
.faq-section .section-kicker {
  color: var(--gold);
  font-size: 22px;
  text-align: center;
  text-shadow: none;
}

.feature-grid,
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card,
.game-card,
.promo-panel,
details {
  border: 1px solid rgba(198, 107, 255, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(18, 57, 76, 0.94), rgba(8, 36, 64, 0.96)),
    var(--bg-panel);
  box-shadow: 0 0 20px rgba(162, 75, 255, 0.14);
}

.feature-card {
  padding: 24px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 800;
}

h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p,
.game-card p {
  margin: 0;
  color: var(--muted);
}

.media-section,
.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 34px;
}

.media-section-alt {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-section-alt .media-frame {
  order: -1;
}

.media-copy .section-kicker,
.media-copy h2,
.promo-panel .section-kicker,
.promo-panel h2 {
  text-align: left;
}

.media-frame,
.promo-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 91, 207, 0.26);
  border-radius: 12px;
  box-shadow: var(--shadow), 0 0 50px rgba(162, 75, 255, 0.2);
}

.media-frame img,
.promo-image img,
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame {
  aspect-ratio: 3 / 2;
}

.check-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #eaf4ff;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  content: "◆";
}

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

.game-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 91, 207, 0.75);
  box-shadow:
    0 0 25px rgba(162, 75, 255, 0.4),
    0 0 60px rgba(255, 91, 207, 0.15);
}

.game-card div {
  align-self: center;
  padding: 26px;
}

.promo-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.promo-panel {
  padding: clamp(24px, 4vw, 42px);
}

table {
  width: 100%;
  margin: 26px 0 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  color: #eaf4ff;
  box-shadow: 0 0 20px rgba(162, 75, 255, 0.12);
}

th,
td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

th {
  background: rgba(162, 75, 255, 0.22);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

td {
  background: rgba(4, 27, 52, 0.42);
}

.stats-row,
.info-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stats-row div,
.info-table div {
  padding: 18px;
  border: 1px solid rgba(247, 200, 107, 0.25);
  border-radius: 8px;
  background: rgba(4, 27, 52, 0.54);
}

.stats-row strong {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.stats-row span,
.info-table span {
  display: block;
  color: var(--muted);
}

.info-table strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.faq-section {
  width: min(900px, calc(100% - 32px));
}

.faq-list {
  max-width: 920px;
  margin: 28px auto 0;
}

details {
  margin-top: 14px;
  padding: 18px 22px;
}

.faq-list details:first-child {
  margin-top: 0;
}

.faq-list details[open] {
  border-color: rgba(247, 200, 107, 0.42);
  box-shadow: 0 0 24px rgba(247, 200, 107, 0.12);
}

summary {
  cursor: pointer;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list summary {
  line-height: 1.2;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 48px 16px;
  background: #031421;
  border-top: 1px solid rgba(198, 107, 255, 0.26);
  text-align: center;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    max-width: 430px;
    font-size: 17px;
  }

  .nav-dropdown {
    top: calc(100% + 8px);
  }

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

  .media-section,
  .media-section-alt,
  .promo-section {
    grid-template-columns: 1fr;
  }

  .media-section-alt .media-frame {
    order: 0;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    width: 104px;
    min-width: 104px;
    height: 78px;
    margin-bottom: -24px;
  }

  .brand img {
    transform: translateY(-8px) scale(1.18);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.is-menu-open .header-menu {
    display: grid;
    gap: 10px;
  }

  .header-menu .main-nav {
    display: grid;
    grid-column: 1;
    grid-template-columns: 1fr;
    justify-self: stretch;
    justify-content: stretch;
    width: 100%;
    overflow-x: visible;
    max-width: none;
    padding-bottom: 0;
    white-space: normal;
    font-size: 17px;
  }

  .nav-item {
    display: contents;
    position: static;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .has-dropdown > a::after {
    display: none;
  }

  .has-dropdown > a:not([href]) {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: contents;
    min-width: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: inherit;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus {
    background: transparent;
  }

  .header-actions {
    display: grid;
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .btn-small {
    padding-inline: 12px;
    font-size: 15px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-image {
    object-position: 55% top;
  }

  .eyebrow {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .btn-hero {
    min-height: 52px;
    font-size: 28px;
  }

  .quick-nav {
    padding-inline: 12px;
  }

  .quick-nav summary {
    min-height: 54px;
    font-size: 20px;
  }

  .quick-nav-links {
    grid-template-columns: 1fr;
  }

  .quick-nav-links a {
    min-height: 58px;
    font-size: 17px;
  }

  .section {
    padding: 54px 0;
  }

  .section h2 {
    font-size: 40px;
  }

  .feature-grid,
  .game-grid,
  .stats-row,
  .info-table {
    grid-template-columns: 1fr;
  }

  .game-card {
    grid-template-columns: 1fr;
  }

  .game-card img {
    aspect-ratio: 16 / 10;
  }

  th,
  td {
    padding: 12px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
