
:root {
  --ink: #101923;
  --muted: #526171;
  --paper: #f7fafc;
  --panel: #ffffff;
  --line: #d8e2ea;
  --ice: #dff7ff;
  --mint: #13bda6;
  --navy: #0b2535;
  --accent: #f25b4b;
  --amber: #f4b63e;
  --shadow: 0 18px 48px rgba(10, 28, 40, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}
a { color: #007d91; text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 250, 252, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #0c2b3f;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 8px 22px rgba(13,54,75,.18);
}
.brand-text { display: grid; line-height: 1.12; }
.brand-text strong { font-size: 1.1rem; letter-spacing: 0; }
.brand-text span { color: var(--muted); font-size: .86rem; }
.menu-toggle {
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  display: none;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  color: #263846;
  text-decoration: none;
  font-weight: 760;
  font-size: .9rem;
  padding: 9px 10px;
  border-radius: 8px;
}
.nav a:hover, .nav a.active { background: var(--ice); color: #064b5a; }
.hero {
  min-height: 620px;
  color: #fff;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,14,22,.94), rgba(5,14,22,.70) 44%, rgba(5,14,22,.22));
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  padding: 88px 0 76px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(19,189,166,.18);
  border: 1px solid rgba(125,238,225,.42);
  color: #a9fff3;
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .06em;
}
h1 {
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: .9;
  margin: 24px 0 20px;
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 1.18rem;
  margin: 0 0 28px;
}
.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(242,91,75,.25);
}
.btn.secondary {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: none;
}
.main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section {
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.section p {
  color: #2a3a46;
  max-width: 900px;
  margin: 0 0 18px;
  font-size: 1.03rem;
}
.section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.section-heading span {
  text-transform: uppercase;
  color: #007d91;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .78rem;
}
.section-heading strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}
.table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #edf7f8; color: #0d4f5d; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }
.card-grid, .source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.info-card, .source-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.info-card span, .source-card span {
  color: #008a99;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.info-card strong, .source-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.24rem;
  line-height: 1.2;
}
.info-card p { margin: 0; font-size: .98rem; }
.source-card {
  color: var(--ink);
  text-decoration: none;
}
.source-card em {
  color: var(--muted);
  font-style: normal;
}
.media-block {
  margin: 0 0 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.35);
}
.media-block img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.faq-section {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.faq-item h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}
.faq-item h3 {
  margin: 0;
  color: #425262;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 560;
}
.play-strip {
  text-align: center;
  padding: 54px 18px 76px;
  background: #0b2535;
  color: #fff;
}
.play-strip strong {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 12px;
}
.play-strip p {
  margin: 0 auto 22px;
  max-width: 720px;
  color: rgba(255,255,255,.78);
}
.site-footer {
  background: #071823;
  color: rgba(255,255,255,.74);
  padding: 34px 0 96px;
}
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a { color: rgba(255,255,255,.82); }
.bottom-play {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(420px, calc(100% - 32px));
}
.bottom-play .btn {
  width: 100%;
  min-height: 58px;
  font-size: 1.08rem;
}
.modal-backdrop, .age-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 22, .72);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.active, .age-backdrop.active { display: flex; }
.modal-card, .age-card, .cookie-card {
  background: var(--panel);
  color: var(--ink);
  border-radius: 8px;
  padding: 26px;
  width: min(520px, 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  border: 1px solid var(--line);
}
.modal-card strong, .age-card strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
.modal-card p, .age-card p, .cookie-card p {
  color: var(--muted);
  margin: 0 0 18px;
}
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.plain-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  min-height: 46px;
  padding: 10px 16px;
  font-weight: 850;
  cursor: pointer;
}
.cookie-card {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  width: min(460px, calc(100% - 36px));
  display: none;
}
.cookie-card.active { display: block; }
.cookie-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 999;
}
.skip-link:focus { left: 8px; }
@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .header-inner { flex-wrap: wrap; padding: 12px 0; }
  .nav {
    display: none;
    flex-basis: 100%;
    order: 3;
    padding-bottom: 10px;
  }
  .nav.open { display: flex; }
  .nav a { flex: 1 1 44%; background: #fff; border: 1px solid var(--line); }
  .hero { min-height: 560px; }
  .card-grid, .source-grid { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
}
@media (max-width: 540px) {
  .brand-text span { display: none; }
  .hero-inner { padding: 72px 0 56px; }
  .hero p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .section-heading { display: block; }
  .footer-inner { display: block; }
  .footer-links { margin-top: 18px; }
}
