:root {
  --bg: #eef8f0;
  --bg-deep: #deecdf;
  --bg-elevated: rgba(255, 255, 255, 0.78);
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: rgba(247, 250, 255, 0.86);
  --surface-accent: #eaf7ee;
  --text: #111827;
  --muted: #66748b;
  --line: rgba(17, 24, 39, 0.08);
  --primary: #2f9d62;
  --primary-strong: #23794b;
  --accent: #9adbb2;
  --shadow:
    0 28px 68px rgba(31, 41, 55, 0.12),
    0 10px 26px rgba(31, 41, 55, 0.06);
  --shadow-soft:
    0 18px 34px rgba(31, 41, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --shadow-card:
    0 22px 44px rgba(17, 24, 39, 0.14),
    0 8px 18px rgba(17, 24, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1360px;
  --font-display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "SF Pro Display", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(154, 219, 178, 0.18), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(47, 157, 98, 0.12), transparent 22%),
    linear-gradient(180deg, #f8fcf8 0%, var(--bg) 48%, #e8f2e9 100%);
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.8;
}

body::before {
  top: -80px;
  left: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 219, 178, 0.34) 0%, rgba(154, 219, 178, 0) 72%);
}

body::after {
  right: -120px;
  top: 280px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 157, 98, 0.22) 0%, rgba(47, 157, 98, 0) 72%);
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 980px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 157, 98, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

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

p,
ul {
  margin: 0;
}

p,
li {
  text-wrap: pretty;
}

ul {
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(248, 252, 248, 0.92) 0%, rgba(248, 252, 248, 0) 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 248, 255, 0.58));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(30px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 248, 242, 0.72));
  box-shadow:
    0 16px 34px rgba(31, 41, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 157, 98, 0.18);
  box-shadow:
    0 20px 40px rgba(31, 41, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 26%),
    url("favicon.svg") center / cover no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow:
    0 16px 28px rgba(47, 157, 98, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(10, 18, 30, 0.08));
  pointer-events: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-title {
  font-size: 1.1rem;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.nav a,
.footer-links a,
.inline-link {
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav a:hover,
.nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--primary);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.58);
}

.hero-grid,
.embed-layout,
.content-grid,
.footer-grid,
.panel-grid {
  display: grid;
  gap: 24px;
}

.showcase-hero {
  position: relative;
  padding: 40px 0 28px;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 50%;
  width: min(1120px, calc(100% - 64px));
  height: 520px;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 44px;
  background:
    radial-gradient(circle at top left, rgba(154, 219, 178, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 72%);
  filter: blur(2px);
}

.showcase-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.82fr);
  align-items: stretch;
  gap: 2px;
  margin-top: 24px;
  padding: 28px 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(240, 248, 241, 0.68) 58%),
    linear-gradient(180deg, rgba(47, 157, 98, 0.03), transparent 44%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-right: 24px;
}

.showcase-intro::before,
.showcase-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.showcase-intro::before {
  top: -56px;
  right: -56px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 219, 178, 0.3) 0%, rgba(154, 219, 178, 0) 72%);
  filter: blur(10px);
}

.showcase-intro::after {
  left: 30px;
  bottom: 0;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 157, 98, 0.88), rgba(154, 219, 178, 0.24));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-intro h1,
.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.showcase-intro h1,
.hero-copy h1 {
  max-width: 12ch;
}

.page-hero h1 {
  max-width: 20ch;
}

.hero-lead,
.hero-copy p,
.page-hero p,
.section-copy,
.panel p,
.faq-item p,
.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-lead {
  max-width: 64ch;
}

.showcase-feature-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(239, 246, 255, 0.74)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 22px 44px rgba(17, 24, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.showcase-feature-media {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(47, 157, 98, 0.2), rgba(12, 28, 18, 0.5)),
    center / cover no-repeat;
}

.showcase-feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(8, 16, 32, 0) 0%, rgba(8, 16, 32, 0.72) 100%);
}

.showcase-feature-body {
  display: grid;
  gap: 12px;
  padding: 20px 20px 22px;
}

.showcase-feature-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 157, 98, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.showcase-feature-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.showcase-feature-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

.showcase-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-feature-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 16, 32, 0.06);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
}

.showcase-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.showcase-feature-actions .button,
.showcase-feature-actions .button-secondary {
  min-height: 46px;
  padding: 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, #2f9d62 0%, #79c792 100%);
  color: #fff;
  box-shadow:
    0 18px 36px rgba(47, 157, 98, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.showcase-card:hover,
.showcase-card:focus-within,
.game-card:hover,
.game-card:focus-within {
  transform: translateY(-3px) scale(1.018);
}

.button-secondary {
  border: 1px solid rgba(47, 157, 98, 0.12);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.hero-panel,
.panel,
.embed-shell,
.content-panel,
.comment-shell,
.faq-item,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 255, 0.74));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel::before,
.panel::before,
.embed-shell::before,
.content-panel::before,
.comment-shell::before,
.faq-item::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.hero-panel,
.panel,
.content-panel,
.comment-shell,
.faq-item {
  border-radius: var(--radius-xl);
}

.hero-panel,
.content-panel {
  padding: 28px;
}

.hero-panel h2,
.section-head h2,
.panel h2,
.content-panel h2,
.comment-shell h2,
.faq h2,
.page-hero h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 247, 238, 0.92));
  border: 1px solid rgba(0, 113, 227, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-wall {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(229, 240, 231, 0.8)),
    linear-gradient(135deg, rgba(47, 157, 98, 0.04), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.showcase-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at top right, rgba(47, 157, 98, 0.12), transparent 28%);
  pointer-events: none;
}

.showcase-wall::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.showcase-card {
  --card-glow: rgba(47, 157, 98, 0.24);
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-card);
  background: #dbe7f4;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  z-index: 1;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, var(--card-glow), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.showcase-card:nth-child(4n + 2) {
  --card-glow: rgba(255, 145, 77, 0.22);
}

.showcase-card:nth-child(4n + 3) {
  --card-glow: rgba(122, 95, 255, 0.22);
}

.showcase-card:nth-child(4n + 4) {
  --card-glow: rgba(52, 199, 89, 0.2);
}

.showcase-card:hover,
.showcase-card:focus-within {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 26px 52px rgba(17, 24, 39, 0.18),
    0 10px 22px rgba(17, 24, 39, 0.1);
}

.showcase-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.42s ease;
}

.showcase-card:hover img,
.showcase-card:focus-within img {
  transform: scale(1.08);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, rgba(9, 18, 34, 0) 0%, rgba(9, 18, 34, 0.74) 100%);
}

.showcase-card-large {
  min-height: 420px;
  --card-glow: rgba(154, 219, 178, 0.28);
  box-shadow:
    0 28px 60px rgba(17, 24, 39, 0.18),
    0 12px 28px rgba(17, 24, 39, 0.1);
}

.showcase-card-large::after {
  height: 72%;
}

.showcase-overlay,
.showcase-mini-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
}

.showcase-overlay {
  padding: 22px;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.showcase-overlay h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.showcase-overlay p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.showcase-mini-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
}

.showcase-mini-title h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 16, 32, 0.36);
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.showcase-mini-title span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 16, 32, 0.32);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.showcase-strip {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(47, 157, 98, 0.08), rgba(255, 255, 255, 0.76) 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.showcase-strip p {
  color: var(--muted);
}

.section {
  position: relative;
  padding: 44px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 64px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(102, 116, 139, 0), rgba(102, 116, 139, 0.18), rgba(102, 116, 139, 0));
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 760px;
}

.section-split {
  margin-top: 24px;
}

.section-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.embed-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  align-items: start;
}

.play-stack {
  display: grid;
  gap: 18px;
}

.embed-shell {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(83, 182, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.84));
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.embed-shell::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%);
}

.frame-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-access {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 255, 0.74));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.embed-access::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.embed-access-head {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.embed-access-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.embed-access-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.embed-link-list {
  position: relative;
  display: grid;
  gap: 14px;
}

.embed-link-item {
  display: grid;
  gap: 10px;
}

.embed-link-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.embed-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.embed-link-box {
  min-width: 0;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 157, 98, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.45;
  word-break: break-all;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.embed-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(47, 157, 98, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.embed-link-button:hover,
.embed-link-button:focus-visible {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: rgba(47, 157, 98, 0.22);
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.08);
}

.meta-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.meta-item span:first-child {
  color: var(--muted);
}

.list-card {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(47, 157, 98, 0.08), rgba(255, 255, 255, 0.78) 36%),
    linear-gradient(180deg, rgba(236, 247, 238, 0.74), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(0, 113, 227, 0.08);
}

.list-card h3,
.game-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

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

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.game-card:hover,
.game-card:focus-within {
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8eef6;
}

.card-body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.card-copy {
  display: grid;
  gap: 4px;
}

.card-body h3 {
  margin: 0;
}

.card-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.panel {
  padding: 24px;
}

.faq {
  display: grid;
  gap: 16px;
}

.comment-stack {
  display: grid;
  gap: 16px;
}

.comment-shell {
  padding: 24px;
}

.comment-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.comment-shell-head h2 {
  margin-bottom: 0;
}

.comment-form {
  display: grid;
  gap: 16px;
}

.comment-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comment-field {
  display: grid;
  gap: 10px;
}

.comment-field input,
.comment-field textarea {
  width: 100%;
  border: 1px solid rgba(47, 157, 98, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.comment-field input {
  min-height: 52px;
  padding: 0 16px;
}

.comment-field textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.comment-field input::placeholder,
.comment-field textarea::placeholder {
  color: var(--muted);
}

.comment-field input:focus,
.comment-field textarea:focus {
  outline: none;
  border-color: rgba(47, 157, 98, 0.34);
  box-shadow:
    0 0 0 4px rgba(47, 157, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.comment-meta {
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-actions {
  display: flex;
  justify-content: flex-start;
}

.comment-divider {
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(102, 116, 139, 0), rgba(102, 116, 139, 0.22), rgba(102, 116, 139, 0));
}

.comment-loading {
  display: grid;
  place-items: center;
  min-height: 120px;
  color: var(--muted);
  font-style: italic;
}

.comment-return {
  display: flex;
  justify-content: center;
}

.comment-return .button {
  min-width: 190px;
}

.faq-item {
  padding: 24px;
}

.faq-item p + p,
.content-panel p + p,
.panel p + p {
  margin-top: 12px;
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.side-note {
  position: sticky;
  top: 96px;
}

.bullet-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.plain-list {
  padding-left: 0;
  list-style: none;
}

.site-footer {
  margin: 36px auto 28px;
  border-radius: 30px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 24px 28px;
}

.footer-copy p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .embed-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 720px) {
  .embed-link-row {
    grid-template-columns: 1fr;
  }

  .comment-form-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 560px) {
  .showcase-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
  }

  .showcase-card,
  .showcase-card-large {
    min-height: 0;
  }

  .showcase-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
  }

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

@media (min-width: 860px) {
  .showcase-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 172px;
  }
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .showcase-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 176px;
  }
}

@media (min-width: 1380px) {
  .card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .panel-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 18px 16px;
    align-items: flex-start;
    border-radius: 28px;
  }

  .showcase-intro {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 22px 22px 24px;
    border-radius: 28px;
  }

  .showcase-copy {
    padding-right: 0;
  }

  .showcase-feature-media {
    min-height: 220px;
  }

  .nav {
    width: 100%;
    gap: 6px 14px;
  }

  .nav a {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-panel,
  .content-panel,
  .panel,
  .faq-item,
  .embed-shell {
    padding: 22px;
  }

  .showcase-hero {
    padding-top: 26px;
  }

  .showcase-overlay {
    padding: 18px;
  }

  .showcase-strip {
    padding: 16px 18px;
  }

  .section::before {
    width: calc(100% - 32px);
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 559px) {
  .showcase-card {
    min-height: 210px;
  }

  .showcase-card-large {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
