/* aurora-playline — layout tokens 2026 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:root {
  --ink: #070a14;
  --sky: #0f172a;
  --panel: #131c33;
  --card: #1b2744;
  --line: rgba(255, 255, 255, 0.09);
  --text: #e8f0ff;
  --muted: rgba(232, 240, 255, 0.72);
  --mint: #34d399;
  --iris: #a5b4fc;
  --sun: #fde68a;
  --accent: #f472b6;
  --warn-ink: #0a0612;
  --warn-glow: 0 0 0 3px #fbbf24, 0 12px 40px rgba(244, 114, 182, 0.35);
  --r-pill: 999px;
  --r-card: 20px;
  --r-btn: 12px;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --pad: clamp(1rem, 3vw, 2.5rem);
  --wide: min(1180px, calc(100% - 2 * var(--pad)));
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.06rem);
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% -8%, rgba(52, 211, 153, 0.18), transparent),
    radial-gradient(800px 480px at 92% 10%, rgba(165, 180, 252, 0.22), transparent),
    radial-gradient(700px 400px at 50% 100%, rgba(244, 114, 182, 0.12), transparent),
    linear-gradient(165deg, var(--ink), var(--sky) 48%, #0c1224);
}

.sg-wrap {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sg-free-strip {
  position: relative;
  z-index: 60;
  padding: 1rem var(--pad);
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.82rem, 0.75rem + 0.45vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warn-ink);
  background: linear-gradient(110deg, #fde047, #fb923c 42%, #f472b6 78%, #c084fc);
  border-bottom: 4px solid rgba(0, 0, 0, 0.25);
  box-shadow: var(--warn-glow);
  overflow-wrap: anywhere;
}
.sg-free-strip strong {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  letter-spacing: 0.04em;
}

.sg-head {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(7, 10, 20, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.sg-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.sg-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.2), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.sg-mark img,
.sg-mark svg {
  width: 28px;
  height: 28px;
}
.sg-mark:hover {
  border-color: rgba(52, 211, 153, 0.5);
}

.sg-burger {
  display: none;
  margin-left: auto;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-btn);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sg-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  justify-content: flex-end;
}
.sg-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sg-nav a:hover,
.sg-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(165, 180, 252, 0.25);
}
.sg-age {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  color: #0f172a;
  background: linear-gradient(135deg, var(--sun), #fb923c);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.sg-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  max-width: 100%;
}
.sg-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  background:
    radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.15), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(129, 140, 248, 0.2), transparent 40%);
  pointer-events: none;
}
@media (max-width: 899px) {
  .sg-hero::before {
    inset: -12% 0 auto;
    left: 0;
    right: 0;
    width: 100%;
  }
}
.sg-hero__grid {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  min-width: 0;
}
.sg-hero__grid > * {
  min-width: 0;
}
@media (min-width: 900px) {
  .sg-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.sg-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.sg-hero h1 span {
  background: linear-gradient(90deg, var(--mint), var(--iris), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sg-hero p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 36rem;
}
.sg-hero__art {
  position: relative;
  min-height: clamp(220px, 36vw, 380px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(52, 211, 153, 0.25)),
    var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.sg-hero__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sg-hero__art::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  animation: sg-orbit 14s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes sg-orbit {
  to {
    transform: rotate(360deg);
  }
}

.sg-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #041016;
  background: linear-gradient(120deg, var(--mint), #5eead4 40%, var(--iris));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(52, 211, 153, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s;
}
.sg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.35);
}
.sg-btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.sg-side-shot {
  margin: 0 0 1.25rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  max-height: min(52vw, 320px);
  background: var(--card);
}
.sg-side-shot img {
  width: 100%;
  height: 100%;
  max-height: min(52vw, 320px);
  object-fit: cover;
  display: block;
}

.sg-scene-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.sg-scene-cell {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, border-color 0.2s;
}
.sg-scene-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 140, 248, 0.45);
}
.sg-scene-cell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sg-section {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}
.sg-section--tilt {
  transform: skewY(-2deg);
  background: rgba(19, 28, 51, 0.65);
  border-block: 1px solid var(--line);
}
.sg-section--tilt > .sg-wrap {
  transform: skewY(2deg);
}
.sg-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2vw + 1rem, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.sg-muted {
  color: var(--muted);
}

.sg-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .sg-split {
    grid-template-columns: 1fr 1fr;
  }
}
.sg-pill-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.sg-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.sg-grid-games {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.sg-card {
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, border-color 0.2s;
}
.sg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.35);
}
.sg-card a {
  display: block;
  height: 100%;
}
.sg-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sg-card__body {
  padding: 1rem 1.1rem 1.15rem;
}
.sg-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.sg-card__cta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}

.sg-page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 1rem;
}
.sg-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw + 0.8rem, 2.5rem);
}

.sg-prose {
  max-width: 46rem;
}
.sg-prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}
.sg-prose p {
  color: var(--muted);
}

.sg-acc {
  max-width: 52rem;
  margin-inline: auto;
}
.sg-acc__item {
  border-bottom: 1px solid var(--line);
}
.sg-acc__head {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sg-acc__head::after {
  content: "+";
  font-weight: 900;
  color: var(--iris);
  flex-shrink: 0;
}
.sg-acc__item.sg-open .sg-acc__head::after {
  content: "—";
}
.sg-acc__body {
  display: none;
  padding-bottom: 1rem;
  color: var(--muted);
}
.sg-acc__item.sg-open .sg-acc__body {
  display: block;
}

.sg-frame-page main {
  padding: 1rem 0 2rem;
}
.sg-player-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sg-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-btn);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 0.85rem;
}
.sg-back:hover {
  border-color: rgba(52, 211, 153, 0.4);
}
.sg-player-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
}

.sg-frame-shell {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #000;
  min-height: min(72vh, 720px);
}
.sg-frame-shell iframe {
  width: 100%;
  height: min(72vh, 720px);
  border: 0;
}

.sg-foot {
  margin-top: auto;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(7, 10, 20, 0.92);
}
.sg-foot__top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.sg-foot p.small {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
}
.sg-org {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.sg-org a img {
  height: 40px;
  width: auto;
  opacity: 0.92;
}
.sg-org .sg-age {
  height: fit-content;
}
.sg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.sg-links a:hover {
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 820px) {
  .sg-burger {
    display: inline-flex;
  }
  .sg-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.25rem;
  }
  .sg-nav.sg-open {
    display: flex;
  }
  .sg-nav a {
    width: 100%;
    text-align: center;
  }
}
