:root {
  color-scheme: dark;
  --ink: #fff7de;
  --muted: #cbd5c4;
  --faint: #94a898;
  --bg: #081719;
  --bg-2: #102b2d;
  --panel: #153134;
  --panel-2: #1c413b;
  --line: #3c6b5e;
  --coral: #ff7a54;
  --gold: #ffe16f;
  --mint: #91efc2;
  --kelp: #8fca67;
  --reef: #70d2e6;
  --danger: #ff9a7b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  font-family: "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 122, 84, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 6%, rgba(145, 239, 194, 0.18), transparent 22rem),
    linear-gradient(180deg, #0c2024 0%, #173e3e 48%, #071315 100%);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

a {
  color: var(--mint);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

img,
iframe,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 23, 25, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 224, 191, 0.18);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.93rem;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(139, 224, 191, 0.1);
}

main {
  position: relative;
}

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

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 54px 0 38px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
}

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

h1 {
  font-size: clamp(2.9rem, 6.8vw, 5.7rem);
  max-width: 920px;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  color: var(--muted);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  max-width: 760px;
}

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(139, 224, 191, 0.28);
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--ink);
  background: rgba(20, 43, 45, 0.9);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(240, 111, 79, 0.7);
  background: var(--coral);
  color: #190c08;
}

.button:hover {
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero-panel,
.panel {
  background: linear-gradient(180deg, rgba(27, 52, 50, 0.95), rgba(20, 43, 45, 0.92));
  border: 1px solid rgba(139, 224, 191, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px;
  border-width: 2px;
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.18), var(--shadow);
}

.official-hero {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 225, 111, 0.1), transparent 44%),
    rgba(21, 49, 52, 0.96);
}

.hero-art {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid rgba(255, 247, 222, 0.12);
  background: #071011;
}

.asset-credit {
  display: block;
  padding: 9px 2px 0;
  color: var(--faint);
  font-size: 0.82rem;
}
}

.specimen {
  min-height: 360px;
  border: 1px solid rgba(247, 213, 111, 0.22);
  background:
    linear-gradient(135deg, rgba(240, 111, 79, 0.18), transparent 36%),
    linear-gradient(315deg, rgba(107, 187, 209, 0.2), transparent 34%),
    #102326;
  border-radius: 8px;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.specimen::before,
.specimen::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(139, 224, 191, 0.22);
  border-radius: 50%;
}

.specimen::before {
  width: 320px;
  height: 320px;
}

.specimen::after {
  width: 220px;
  height: 220px;
  border-style: dashed;
}

.creature {
  width: min(84%, 360px);
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}

.creature span {
  position: absolute;
  display: block;
  background: var(--coral);
  border: 4px solid #2a1510;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.12);
}

.creature .body {
  inset: 30% 22% 22%;
  border-radius: 50% 50% 42% 42%;
}

.creature .eye-left,
.creature .eye-right {
  width: 28px;
  height: 28px;
  top: 28%;
  border-radius: 50%;
  background: var(--gold);
}

.creature .eye-left {
  left: 35%;
}

.creature .eye-right {
  right: 35%;
}

.creature .claw-left,
.creature .claw-right {
  width: 78px;
  height: 78px;
  top: 23%;
  border-radius: 50%;
  background: #f58a65;
}

.creature .claw-left {
  left: 3%;
  clip-path: polygon(0 0, 100% 8%, 62% 48%, 100% 88%, 0 100%);
}

.creature .claw-right {
  right: 3%;
  clip-path: polygon(100% 0, 0 8%, 38% 48%, 0 88%, 100% 100%);
}

.creature .leg {
  width: 82px;
  height: 16px;
  border-radius: 99px;
  background: #e85e44;
}

.creature .l1 {
  left: 7%;
  top: 55%;
  transform: rotate(20deg);
}

.creature .l2 {
  left: 9%;
  top: 68%;
  transform: rotate(-16deg);
}

.creature .r1 {
  right: 7%;
  top: 55%;
  transform: rotate(-20deg);
}

.creature .r2 {
  right: 9%;
  top: 68%;
  transform: rotate(16deg);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(11, 23, 25, 0.42);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
}

.stat span {
  color: var(--faint);
  font-size: 0.82rem;
}

.section {
  padding: 70px 0;
}

.section.tight {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
}

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

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

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

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

.card,
.guide-card {
  background: rgba(20, 43, 45, 0.82);
  border: 1px solid rgba(139, 224, 191, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.13);
}

.guide-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border: 1px solid rgba(247, 213, 111, 0.26);
  border-radius: 6px;
  color: #ffe9a0;
  background: rgba(247, 213, 111, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.source-note {
  border-left: 3px solid var(--gold);
  background: rgba(247, 213, 111, 0.08);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  color: var(--muted);
}

.source-note strong {
  color: var(--ink);
}

.article {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 76px;
}

.article h1 {
  font-size: clamp(2.5rem, 5.6vw, 5.2rem);
}

.article h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  margin-top: 46px;
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  font-size: 1.03rem;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 30px;
}

.toc a {
  border: 1px solid rgba(139, 224, 191, 0.2);
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  background: rgba(16, 35, 38, 0.8);
}

.quick-answer {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(240, 111, 79, 0.34);
  border-radius: 8px;
  background: rgba(240, 111, 79, 0.08);
}

.quick-answer p {
  margin-bottom: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.video,
.media-card {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255, 225, 111, 0.28);
  background: #071011;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
}

.video iframe,
.video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #071011;
}

.video figcaption,
.media-card figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-card img,
.official-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #071011;
}

.poster-shot {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.media-card.small img {
  aspect-ratio: 1;
}

.watch-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: var(--ink);
}

.watch-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 225, 111, 0.24);
}

.watch-card h3 {
  margin-top: 0;
}

.watch-card p {
  margin-bottom: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.article-media {
  margin: 24px 0;
}

.article-media img {
  border-radius: 8px;
  border: 2px solid rgba(255, 225, 111, 0.28);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
}

.cartoon-band {
  background:
    linear-gradient(135deg, rgba(255, 122, 84, 0.12), rgba(145, 239, 194, 0.1)),
    rgba(21, 49, 52, 0.72);
  border-top: 2px solid rgba(255, 225, 111, 0.16);
  border-bottom: 2px solid rgba(255, 225, 111, 0.16);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(20, 43, 45, 0.72);
  border: 1px solid rgba(139, 224, 191, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(139, 224, 191, 0.13);
  vertical-align: top;
  text-align: left;
}

th {
  color: var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}

.tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.controls {
  display: grid;
  gap: 14px;
}

label.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(139, 224, 191, 0.15);
  border-radius: 8px;
  background: rgba(16, 35, 38, 0.72);
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  margin-top: 2px;
}

select,
input[type="text"],
textarea {
  width: 100%;
  border: 1px solid rgba(139, 224, 191, 0.28);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(6, 14, 15, 0.85);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.score {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.score-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--coral) var(--score, 62%), rgba(255, 255, 255, 0.08) 0);
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--panel);
}

.score-ring strong {
  position: relative;
  z-index: 1;
  font-size: 2rem;
}

.result-list {
  padding-left: 18px;
}

.result-list li {
  margin: 8px 0;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-left: 3px solid var(--coral);
  background: rgba(20, 43, 45, 0.62);
  border-radius: 0 8px 8px 0;
}

.timeline-item time {
  color: var(--gold);
  font-weight: 800;
}

.faq details {
  border: 1px solid rgba(139, 224, 191, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(20, 43, 45, 0.7);
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(139, 224, 191, 0.16);
  background: rgba(6, 14, 15, 0.86);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 20px;
}

.footer-grid h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 6px 0;
}

.fine-print {
  color: var(--faint);
  font-size: 0.87rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: #0b1719;
  padding: 8px 10px;
  border-radius: 6px;
  z-index: 99;
}

.skip-link:focus {
  left: 10px;
}

@media (max-width: 900px) {
  .hero,
  .tool-panel,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .media-grid,
  .screenshot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .section-head {
    display: block;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

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

@media (max-width: 560px) {
  .wrap,
  .article {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: 2.75rem;
  }

  .score,
  .timeline-item,
  .watch-card {
    grid-template-columns: 1fr;
  }

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