:root {
  color-scheme: light;
  --bg: #fff7e8;
  --bg-soft: #eaf3ff;
  --panel: #fffef9;
  --panel-2: #fff4d9;
  --line: #172033;
  --text: #172033;
  --muted: #53607a;
  --blue: #2f80ff;
  --orange: #ff8a00;
  --yellow: #ffd43b;
  --cream: #fff7e8;
  --shadow: 0 10px 0 rgba(23, 32, 51, 0.16), 0 18px 30px rgba(23, 32, 51, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 128, 255, 0.12), transparent 22%),
    radial-gradient(circle at 82% 0%, rgba(255, 138, 0, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg), #fffaf0 42%, var(--bg-soft));
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 32, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 94%);
}

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

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

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.site-shell {
  width: min(1200px, calc(100% - 20px));
  margin: 0 auto;
  padding: 12px 0 28px;
}

.site-header,
.hero,
.section,
.cta-band,
.site-footer {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--yellow), #fff06b);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(23, 32, 51, 0.18);
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  min-height: 36px;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.92rem;
  box-shadow: 0 4px 0 rgba(23, 32, 51, 0.1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  background: var(--bg-soft);
}

.hero,
.section,
.cta-band {
  margin-bottom: 16px;
}

.article {
  padding: 18px;
  margin-bottom: 16px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.article h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.article p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.article-meta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 11%, rgba(47, 128, 255, 0.08) 11% 13%, transparent 13% 22%, rgba(255, 138, 0, 0.08) 22% 24%, transparent 24% 100%),
    linear-gradient(12deg, transparent 0 45%, rgba(255, 212, 59, 0.16) 45% 47%, transparent 47% 100%);
  opacity: 0.9;
}

.hero::after {
  left: -4px;
  right: -4px;
  bottom: -4px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 8px 2px;
}

.hero__eyebrow,
.section__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.kicker,
.pill,
.topic {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.82rem;
  box-shadow: 0 4px 0 rgba(23, 32, 51, 0.1);
}

.kicker--prime {
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3.4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__stats span {
  min-height: 32px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  font-size: 0.84rem;
  box-shadow: 0 4px 0 rgba(23, 32, 51, 0.12);
}

.hero__visual {
  display: grid;
  align-items: center;
}

.hero--game .hero__visual {
  align-self: stretch;
  justify-items: center;
}

.game-splash {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 100%;
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff, #eaf3ff),
    radial-gradient(circle at 20% 20%, rgba(255, 212, 59, 0.35), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(255, 138, 0, 0.25), transparent 26%);
  box-shadow: 0 8px 0 rgba(23, 32, 51, 0.12);
}

.game-splash__badge {
  width: fit-content;
  padding: 0 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(23, 32, 51, 0.14);
}

.game-splash__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.game-splash__player,
.game-splash__panel {
  border: 3px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 6px 0 rgba(23, 32, 51, 0.12);
}

.game-splash__player {
  min-height: 170px;
  display: grid;
  place-items: end center;
  padding: 14px;
  font-weight: 900;
  font-size: 1rem;
}

.game-splash__player--blue {
  background: linear-gradient(180deg, #eaf3ff, #cfe2ff);
}

.game-splash__player--orange {
  background: linear-gradient(180deg, #fff0d8, #ffd9a6);
}

.game-splash__panel {
  display: grid;
  place-items: center;
  min-height: 60px;
  background: #fff;
  font-weight: 800;
}

.game-frame-wrap {
  padding: 0;
}

.game-frame {
  width: 100%;
  min-height: 620px;
  border: 3px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 0 rgba(23, 32, 51, 0.12);
}

.game-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  display: block;
}

.game-frame--portrait {
  width: min(100%, 430px);
  min-height: 0;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 190px);
}

.game-frame--portrait iframe {
  min-height: 0;
  height: 100%;
}

.hero-art {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border: 3px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 8px 0 rgba(23, 32, 51, 0.12);
}

.section,
.cta-band {
  padding: 18px;
  position: relative;
}

.section::after,
.cta-band::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -10px;
  height: 16px;
  background: radial-gradient(circle at 10px -2px, rgba(47, 128, 255, 0.22) 10px, transparent 11px) repeat-x;
  background-size: 68px 16px;
  opacity: 0.45;
}

.section__inner {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.section h2,
.cta-band h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.1;
}

.section__body {
  margin-top: 10px;
}

.section__lead {
  margin-top: 6px;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb a {
  color: var(--text);
}

.breadcrumb span[aria-hidden='true'] {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 6px 0 rgba(23, 32, 51, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 rgba(23, 32, 51, 0.14);
}

.btn__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.08);
  font-size: 0.7rem;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(180deg, var(--yellow), #ffca18);
}

.card-grid {
  display: grid;
  gap: 12px;
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.card,
.guide-card,
.info-panel,
.shot-card,
.promo-band,
.faq-list details {
  border: 3px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 6px 0 rgba(23, 32, 51, 0.12);
}

.card,
.guide-card {
  padding: 16px;
}

.card--feature {
  background: linear-gradient(180deg, #fff, #fff7df);
}

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-weight: 900;
}

.card h3,
.guide-card h3,
.info-panel strong,
.shot-card figcaption {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.article-tile h3 a {
  color: inherit;
}

.article-tile h3 a:hover,
.article-tile h3 a:focus-visible {
  text-decoration: underline;
}

.card p,
.guide-card p,
.info-panel li,
.faq-list p,
.promo-band p,
.hero p,
.site-footer p {
  color: var(--muted);
}

.section__split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 12px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 12px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 3px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #fff7ef);
  box-shadow: 0 5px 0 rgba(23, 32, 51, 0.1);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.steps-list h3,
.guide-card h3 {
  margin-bottom: 4px;
}

.info-panel {
  padding: 16px;
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}

.info-panel ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.info-panel li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
}

.info-panel li::before {
  content: '•';
  font-weight: 900;
  color: var(--orange);
}

.shot-grid,
.guide-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shot-card {
  overflow: hidden;
  padding: 12px;
  background: linear-gradient(180deg, #fff, #fff9ef);
}

.shot-card__screen {
  aspect-ratio: 4 / 3;
  border: 3px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.shot-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-card figcaption {
  margin-top: 10px;
  text-align: center;
}

.shot-mock {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eaf3ff);
}

.shot-mock::before,
.shot-mock::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.shot-mock--match::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(47, 128, 255, 0.15) 7% 8%, transparent 8% 16%, rgba(255, 138, 0, 0.15) 16% 17%, transparent 17% 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 212, 59, 0.4), transparent 36%);
}

.shot-mock__tag,
.shot-mock__score,
.shot-mock__label {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.shot-mock__tag {
  top: 10px;
  left: 10px;
}

.shot-mock__center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -56%);
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: 0 6px 0 rgba(23, 32, 51, 0.14);
}

.shot-mock__bars {
  position: absolute;
  inset: auto 16px 16px;
  display: flex;
  gap: 8px;
}

.shot-mock__bars span {
  flex: 1;
  height: 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #79adff);
}

.shot-mock--combo {
  background: linear-gradient(180deg, #fffad6, #fff0d0);
}

.shot-mock__score {
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: #fff;
}

.shot-mock__burst {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background:
    radial-gradient(circle at center, rgba(255, 212, 59, 0.9) 0 22%, transparent 23%),
    conic-gradient(from 0deg, rgba(255, 138, 0, 0.9) 0 7%, transparent 7% 13%, rgba(47, 128, 255, 0.9) 13% 20%, transparent 20% 26%, rgba(255, 212, 59, 0.9) 26% 33%, transparent 33% 39%, rgba(255, 138, 0, 0.9) 39% 46%, transparent 46% 52%, rgba(47, 128, 255, 0.9) 52% 59%, transparent 59% 100%);
  border-radius: 50%;
  opacity: 0.8;
}

.shot-mock__stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.94) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 28%, rgba(255, 212, 59, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle at 30% 72%, rgba(47, 128, 255, 0.9) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 72%, rgba(255, 138, 0, 0.9) 0 6px, transparent 7px);
}

.shot-mock--party {
  background: linear-gradient(180deg, #fff7e8, #eaf3ff);
}

.shot-mock__bubble {
  position: absolute;
  inset: 34% auto auto 18%;
  width: 110px;
  height: 110px;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: rgba(47, 128, 255, 0.18);
  box-shadow: 12px 12px 0 rgba(23, 32, 51, 0.05);
}

.shot-mock__bubble--small {
  inset: auto 18% 14% auto;
  width: 64px;
  height: 64px;
  background: rgba(255, 138, 0, 0.18);
}

.shot-mock__label {
  inset: auto auto 16px 50%;
  transform: translateX(-50%);
  background: var(--yellow);
}

.guide-grid {
  align-items: stretch;
}

.guide-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #fff6db);
}

.promo-band__stats {
  display: grid;
  gap: 8px;
  min-width: 200px;
}

.promo-band__stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  box-shadow: 0 4px 0 rgba(23, 32, 51, 0.1);
}

.promo-band__stats strong {
  font-size: 1.1rem;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 16px 14px;
}

.cta-band {
  background: linear-gradient(180deg, #fff 0%, #fff0d6 100%);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-footer {
  padding: 14px 16px;
}

.site-footer p {
  font-size: 0.92rem;
}

.page-shell ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 18px;
}

.page-shell {
  padding: 16px 18px;
  margin-bottom: 16px;
  border: 3px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 0 rgba(23, 32, 51, 0.12);
}

.page-shell h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.page-shell p + p {
  margin-top: 10px;
}

.list-item {
  padding: 14px 0;
  border-top: 2px dashed rgba(23, 32, 51, 0.16);
}

.list-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.list-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.list-item p {
  color: var(--muted);
}

.page-shell li {
  list-style: disc;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .section__split,
  .promo-band,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .card-grid--3,
  .shot-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 14px, 1200px);
    padding-top: 8px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .cta-band,
  .site-header {
    padding: 14px;
  }

  .card-grid--3,
  .shot-grid,
  .guide-grid,
  .section__split {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }
}
