@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #E8F4F8;
  --surface: #FFFFFF;
  --text: #0A2540;
  --muted: #5A7390;
  --accent: #0088A3;
  --button: #E85D04;
  --button-dark: #B84700;
  --secondary: #B8D4E3;
  --line: #C5D9E3;
  --shadow: 0 18px 48px rgba(10, 37, 64, .1);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 8% -10%, rgba(0,136,163,.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232,93,4,.08), transparent 45%),
    linear-gradient(180deg, #F3FAFC 0%, var(--bg) 40%, #DCEEF5 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  background: var(--text); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(232, 244, 248, .82);
  border-bottom: 1px solid rgba(197, 217, 227, .9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.03em;
}
.brand img { width: 40px; height: 40px; }
.nav-links {
  display: flex; justify-content: center; align-items: center; gap: 28px;
  font-weight: 700; font-size: .92rem;
}
.nav-links a {
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); border-color: var(--accent); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 12px;
  padding: 12px 20px;
  background: var(--button); color: #fff;
  font-weight: 800; cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 10px 24px rgba(232, 93, 4, .28);
}
.nav-cta:hover, .button:hover {
  background: var(--button-dark);
  transform: translateY(-2px);
}
.button-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.button-ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
.button-soft {
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 136, 163, .28);
}
.button-soft:hover { background: #006f86; }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px; font-size: 1.2rem; cursor: pointer;
}

.hero {
  padding: 48px 0 36px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: stretch;
}
.hero-copy {
  padding: 42px 40px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; min-height: 420px;
}
.hero-badge {
  position: absolute; left: 18px; bottom: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem; font-weight: 800;
  color: var(--accent);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow::before {
  content: ""; width: 18px; height: 18px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), var(--secondary), var(--button), var(--accent));
}
h1, h2, h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.15rem; }
.hero p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 78px 0; }
.section-tight { padding-top: 28px; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 28px; margin-bottom: 34px;
}
.section-head p { max-width: 420px; margin: 0; color: var(--muted); }

.rail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.muted { color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  font-size: .8rem; font-weight: 700; color: var(--accent);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, .05);
}
.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -.04em;
  color: var(--text);
}
.metric span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.game-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(10, 37, 64, .06);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.game-card:nth-child(4),
.game-card:nth-child(5) {
  grid-column: span 3;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 136, 163, .14);
}
.game-top {
  display: flex; justify-content: space-between; align-items: start; gap: 12px;
}
.game-card img {
  width: 88px; height: 88px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #F4FAFC;
}
.game-rank {
  font-family: "Sora", sans-serif;
  font-size: .78rem; font-weight: 700;
  color: var(--button);
  letter-spacing: .08em;
}
.game-card h3 { margin-bottom: 8px; }
.game-card p { margin: 0 0 14px; color: var(--muted); flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #EAF6FA;
  color: #006f86;
  font-size: .72rem; font-weight: 800;
}
.game-card .button { width: 100%; }

.method {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.method-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.method-media img {
  width: 100%; min-height: 380px; object-fit: cover;
}
.method-chip {
  position: absolute; right: 16px; top: 16px;
  padding: 10px 14px;
  background: rgba(10, 37, 64, .88);
  color: #fff;
  border-radius: 999px;
  font-size: .75rem; font-weight: 800;
}
.check-list {
  list-style: none; padding: 0; margin: 24px 0;
  display: grid; gap: 14px;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.check-list li::before {
  content: "";
  width: 28px; height: 28px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, var(--accent), #39b3c7)
    border-box;
  box-shadow: inset 0 0 0 6px #fff;
  border: 1px solid var(--secondary);
}
.text-link {
  color: var(--accent);
  font-weight: 800;
  font-size: .92rem;
}
.text-link:hover { color: var(--button); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0, 136, 163, .1);
}
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; gap: 18px;
  padding: 18px 20px;
  border: 0; background: transparent;
  color: var(--text); text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 650; cursor: pointer;
}
.faq-question span {
  color: var(--accent);
  font-size: 1.3rem;
  transition: transform .2s;
}
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.page-hero { padding: 86px 0 48px; }
.page-hero .container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: end;
}
.page-hero p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow);
}
.content-card h2 { margin: 34px 0 14px; font-size: 1.7rem; }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { margin: 24px 0 10px; }
.content-card p, .content-card li { color: var(--muted); }
.content-card a { color: var(--accent); font-weight: 750; }
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 24px;
  background: linear-gradient(180deg, #FFFFFF, #F4FAFC);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.feature-card .number {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(0, 136, 163, .12);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}
.feature-card p { color: var(--muted); margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
}
.contact-box {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(160deg, #0A2540, #085868);
  color: #fff;
}
.contact-box p { color: #C9DEE8; }
.contact-box a { color: #fff; text-decoration: underline; }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 800; font-size: .82rem; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 136, 163, .12);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-status { min-height: 22px; color: #0f7a45; font-weight: 800; }

.site-footer {
  margin-top: 70px;
  padding: 56px 0 24px;
  background: #0A2540;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 48px;
}
.footer-brand p { max-width: 380px; color: #9BB3C5; }
.footer-title {
  margin-bottom: 14px;
  color: #7FD0DF;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.footer-links { display: grid; gap: 8px; color: #D5E5EF; font-size: .92rem; }
.footer-links a:hover { color: #FF9A4A; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 18px;
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(184, 212, 227, .2);
  color: #7F97AB; font-size: .78rem;
}

.cookie-banner {
  position: fixed; z-index: 150;
  right: 22px; bottom: 22px;
  width: min(420px, calc(100% - 40px));
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.25rem; }
.cookie-banner p { margin: 10px 0 16px; color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute; left: 20px; right: 20px; top: 72px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hero-shell, .rail, .method, .page-hero .container, .contact-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .game-card,
  .game-card:nth-child(4),
  .game-card:nth-child(5) { grid-column: span 1; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 24px; }
  .hero-copy { padding: 26px 22px; }
  .hero-media, .hero-media img { min-height: 260px; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .games-grid, .metric-strip, .two-columns, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .method-media img { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
