/* NiSe — light blue gaming UI, official logo blue (#1A8BFD) */

:root {
  --bg: #e4f1fb;
  --bg-2: #d8ebf8;
  --surface: #f7fbfe;
  --surface-2: #eef6fc;
  --line: rgba(14, 106, 209, 0.14);
  --line-strong: rgba(26, 139, 253, 0.42);
  --text: #10243a;
  --muted: #4a6480;
  --cyan: #0e6ad1;
  --cyan-2: #1a8bfd;
  --blue: #1a8bfd;
  --blue-deep: #0e6ad1;
  --gold: #c9922a;
  --ink: #041018;
  --ok: #1f8a5a;
  --danger: #c23b4f;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 42px rgba(14, 106, 209, 0.12);
  --header: 68px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --max: 1160px;
  --focus: 0 0 0 3px rgba(26, 139, 253, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(26, 139, 253, 0.22), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(77, 180, 255, 0.16), transparent 50%),
    radial-gradient(700px 360px at 50% 100%, rgba(26, 139, 253, 0.08), transparent 55%),
    var(--bg);
  line-height: 1.55;
  font-size: 16.5px;
  overflow-x: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cyan-2);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

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

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(244, 249, 253, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(calc(100% - 24px), var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: clamp(28px, 7vw, 36px);
  width: auto;
  display: block;
}

.site-footer .logo img {
  height: clamp(32px, 8vw, 42px);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(26, 139, 253, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 36, 58, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 45;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 50;
  padding: 22px 18px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  box-shadow: -12px 0 36px rgba(14, 106, 209, 0.12);
  border-left: 1px solid var(--line);
}

.nav-drawer.is-open {
  transform: none;
}

.nav-close {
  align-self: flex-end;
  min-height: 44px;
  margin: 0 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  padding: 0 14px;
  cursor: pointer;
}

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 1.05rem;
  padding: 12px 10px;
  border-radius: 12px;
}

.nav-drawer a:hover,
.nav-drawer a:focus-visible {
  background: rgba(26, 139, 253, 0.08);
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #4db4ff, #1a8bfd);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(26, 139, 253, 0.28);
}

.btn-primary:hover {
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-cta {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  gap: 2px;
}

.lang-btn {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0 10px;
}

.lang-btn.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 139, 253, 0.28);
}

.lang-switch--drawer {
  margin: 4px 0 12px;
  width: fit-content;
}

.hero {
  position: relative;
  padding: 28px 0 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 520px;
  background:
    radial-gradient(circle at 18% 30%, rgba(26, 139, 253, 0.2), transparent 42%),
    radial-gradient(circle at 78% 8%, rgba(77, 180, 255, 0.18), transparent 38%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-grid > div:first-child {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(26, 139, 253, 0.7);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.038em;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.05rem, 7.2vw, 4.15rem);
  max-width: 14ch;
  margin-top: 12px;
  font-weight: 800;
}

.hero h1 {
  margin-top: 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44ch;
  margin: 16px 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alt-slogan {
  margin: 18px 0 0;
  color: var(--text);
  font-weight: 650;
  font-size: 0.98rem;
}

.visual {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(26, 139, 253, 0.16), rgba(247, 251, 254, 0.72) 46%, #dceffb),
    repeating-linear-gradient(-28deg, transparent 0 14px, rgba(26, 139, 253, 0.05) 14px 15px);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-inner {
  position: absolute;
  inset: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  align-content: stretch;
}

.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(14, 106, 209, 0.06);
}

.panel h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-main {
  grid-column: 1 / -1;
  justify-content: flex-end;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(26, 139, 253, 0.22), transparent 52%),
    #eaf5fd;
}

.feature-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.feature-main h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-main > p:last-child {
  color: var(--text);
  font-weight: 650;
  font-size: 0.9rem;
}

.usp-band {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.usp-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.usp-item strong {
  display: block;
  margin-bottom: 2px;
}

.usp-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.usp-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(26, 139, 253, 0.1);
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 40%), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 28px rgba(14, 106, 209, 0.06);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
}

.package .btn {
  margin-top: auto;
  width: 100%;
}

.legal p {
  margin: 0 0 12px;
}

.block {
  padding: 64px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  margin: 10px 0 0;
}

h2 {
  font-size: clamp(1.6rem, 4.4vw, 2.5rem);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  background: linear-gradient(180deg, rgba(26, 139, 253, 0.16), rgba(26, 139, 253, 0.1));
  color: var(--cyan);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

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

.package {
  --pkg: var(--cyan);
  --pkg-bright: var(--blue-deep);
  --pkg-deep: var(--blue-deep);
  --pkg-glow: rgba(26, 139, 253, 0.16);
  --pkg-wash: rgba(26, 139, 253, 0.08);
  --pkg-line: var(--line-strong);
  --pkg-ink: var(--ink);
  position: relative;
  isolation: isolate;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, var(--pkg-wash), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 42%),
    var(--surface);
  border: 1px solid var(--pkg-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow:
    0 12px 28px rgba(14, 106, 209, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(
    90deg,
    transparent 4%,
    var(--pkg-deep),
    var(--pkg-bright),
    var(--pkg),
    transparent 96%
  );
  pointer-events: none;
  z-index: 1;
}

.package::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 42% at 50% -8%, var(--pkg-glow), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.package > * {
  position: relative;
  z-index: 1;
}

.package:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--pkg) 72%, var(--text) 8%);
  box-shadow:
    0 18px 40px rgba(14, 106, 209, 0.12),
    0 0 24px var(--pkg-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package-bronze,
.package[data-package="bronze"] {
  --pkg: #cd7f32;
  --pkg-bright: #8b4e1c;
  --pkg-deep: #6e3d14;
  --pkg-glow: rgba(205, 127, 50, 0.22);
  --pkg-wash: rgba(205, 127, 50, 0.12);
  --pkg-line: rgba(205, 127, 50, 0.42);
  --pkg-ink: #1a0e06;
}

.package-gold,
.package[data-package="gold"] {
  --pkg: #d4a017;
  --pkg-bright: #8a6910;
  --pkg-deep: #6e540c;
  --pkg-glow: rgba(212, 160, 23, 0.24);
  --pkg-wash: rgba(240, 196, 90, 0.16);
  --pkg-line: rgba(201, 146, 42, 0.48);
  --pkg-ink: #1a1406;
}

.package-diamond,
.package[data-package="diamond"] {
  --pkg: #1a8bfd;
  --pkg-bright: #0e6ad1;
  --pkg-deep: #0a4f9e;
  --pkg-glow: rgba(26, 139, 253, 0.22);
  --pkg-wash: rgba(26, 139, 253, 0.1);
  --pkg-line: rgba(26, 139, 253, 0.42);
  --pkg-ink: #041018;
}

.package-elite,
.package.is-elite,
.package[data-package="elite"] {
  --pkg: #7c3aed;
  --pkg-bright: #5b21b6;
  --pkg-deep: #4c1d95;
  --pkg-glow: rgba(124, 58, 237, 0.22);
  --pkg-wash: rgba(124, 58, 237, 0.1);
  --pkg-line: rgba(124, 58, 237, 0.38);
  --pkg-ink: #0c0618;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 52%),
    #f5f2ff;
  box-shadow:
    0 14px 32px rgba(91, 33, 182, 0.1),
    0 0 18px rgba(124, 58, 237, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package.is-featured {
  border-color: var(--pkg-line);
  background:
    linear-gradient(180deg, var(--pkg-wash), transparent 38%),
    var(--surface);
  box-shadow:
    0 18px 40px rgba(14, 106, 209, 0.12),
    0 0 28px var(--pkg-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package.is-featured::before {
  height: 4px;
}

.package.is-featured:hover,
.package-elite:hover,
.package[data-package="elite"]:hover {
  box-shadow:
    0 20px 44px rgba(14, 106, 209, 0.14),
    0 0 30px var(--pkg-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pkg) 14%, white);
  color: var(--pkg-bright);
  border: 1px solid color-mix(in srgb, var(--pkg) 38%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.is-hot {
  background: linear-gradient(180deg, rgba(255, 210, 90, 0.45), rgba(240, 196, 90, 0.18));
  color: #8a6910;
  border-color: rgba(201, 146, 42, 0.55);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.18);
}

.package-elite .badge,
.package[data-package="elite"] .badge {
  background: linear-gradient(180deg, rgba(196, 181, 253, 0.35), rgba(124, 58, 237, 0.12));
  color: #5b21b6;
  border-color: rgba(124, 58, 237, 0.4);
  letter-spacing: 0.07em;
}

.package h3 {
  font-size: 1.35rem;
  margin: 12px 0 4px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--pkg-bright);
  background-image: linear-gradient(180deg, var(--pkg) 0%, var(--pkg-bright) 52%, var(--pkg-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}

.package-bronze h3,
.package[data-package="bronze"] h3 {
  background-image: linear-gradient(180deg, #cd7f32 0%, #a86228 42%, #8b4e1c 100%);
}

.package-gold h3,
.package[data-package="gold"] h3 {
  background-image: linear-gradient(180deg, #d4a017 0%, #b88914 42%, #8a6910 100%);
}

.package-diamond h3,
.package[data-package="diamond"] h3 {
  background-image: linear-gradient(180deg, #1a8bfd 0%, #0e6ad1 52%, #0a4f9e 100%);
}

.package-elite h3,
.package[data-package="elite"] h3 {
  background-image: linear-gradient(180deg, #7c3aed 0%, #6d28d9 42%, #5b21b6 100%);
}

.price {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 8px 0 4px;
  color: var(--pkg-bright);
  text-shadow: none;
}

.audience {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 14px;
}

.features {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}

.features li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pkg, var(--cyan));
  box-shadow: 0 0 8px var(--pkg-glow);
}

.features li.is-include {
  color: var(--pkg-bright, var(--gold));
  font-weight: 700;
}

.features li.is-include::before {
  background: var(--pkg, var(--gold));
}

.package .btn-ghost {
  border-color: var(--pkg-line);
  color: var(--pkg-bright);
}

.package .btn-ghost:hover {
  color: var(--pkg-bright);
  border-color: var(--pkg);
  background: var(--pkg-wash);
  box-shadow: 0 8px 20px var(--pkg-glow);
}

.package-gold .btn-primary,
.package[data-package="gold"] .btn-primary {
  background: linear-gradient(180deg, #ffe08a, #e0a83a);
  color: var(--pkg-ink);
  box-shadow: 0 10px 24px rgba(240, 196, 90, 0.35);
}

.package-gold .btn-primary:hover,
.package[data-package="gold"] .btn-primary:hover {
  color: var(--pkg-ink);
}

.package-elite .btn-ghost,
.package[data-package="elite"] .btn-ghost {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.18), rgba(124, 58, 237, 0.08));
  border-color: rgba(124, 58, 237, 0.4);
  color: #5b21b6;
}

.game-catalog,
.game-grid {
  display: grid;
  gap: 12px;
}

.game-card {
  min-height: 128px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(26, 139, 253, 0.1), transparent 46%),
    var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 22px rgba(14, 106, 209, 0.06);
}

.game-card__icon {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 12px;
}

[hidden] {
  display: none !important;
}

.games-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 62ch;
}

.games-note-strong,
.games-note[data-games-extra],
.games-note[data-games-extra] strong {
  font-weight: 700;
  color: var(--text);
}

.game-card h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.game-card .game-age {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust {
  text-align: center;
  padding: 32px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 139, 253, 0.12), rgba(255, 255, 255, 0.55));
  box-shadow: 0 10px 28px rgba(14, 106, 209, 0.06);
}

.trust h2 {
  margin-bottom: 8px;
}

.trust a {
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 16px 0;
  min-height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-q span {
  color: var(--cyan);
  flex: 0 0 auto;
}

.faq-a {
  display: none;
  color: var(--muted);
  padding: 0 0 16px;
}

.faq-item.is-open .faq-a {
  display: block;
}

.booking {
  background:
    radial-gradient(circle at 12% 0%, rgba(26, 139, 253, 0.16), transparent 42%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form {
  display: grid;
  gap: 12px;
}

.form.card {
  padding: 22px;
}

.fields {
  display: grid;
  gap: 12px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.req {
  color: var(--cyan);
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
  appearance: none;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

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

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: var(--focus);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.65;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.field-error {
  color: var(--danger);
  font-size: 0.82rem;
  min-height: 1.1em;
  margin-top: 4px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.form-status {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(194, 59, 79, 0.08);
  color: var(--danger);
}

.form-status a {
  color: inherit;
}

.form-success {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(31, 138, 90, 0.08);
  border: 1px solid rgba(31, 138, 90, 0.28);
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-card__head h3 {
  margin-bottom: 4px;
}

.contact-card__service {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-meta__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.contact-meta__label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-chip--ok {
  background: rgba(31, 138, 90, 0.12);
  border-color: rgba(31, 138, 90, 0.32);
  color: var(--ok);
}

.contact-chips[hidden],
.contact-chip[hidden] {
  display: none;
}

.contact-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.contact-meta__text {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-meta__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.social-row a,
.social-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 650;
}

.social-row span {
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 56px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.disclaimer {
  font-size: 0.82rem;
  margin: 0;
}

.legal {
  padding: 40px 0 80px;
}

.legal .card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  max-width: none;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.todo {
  display: inline-block;
  margin: 4px 0;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(26, 139, 253, 0.12);
  color: var(--cyan);
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .usp-band,
  .steps,
  .packages,
  .game-catalog,
  .game-grid,
  .contact-grid,
  .fields.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .visual {
    min-height: 380px;
  }

  .visual-inner {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
  }

  .feature-main {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-content: flex-end;
  }
}

@media (min-width: 1020px) {
  :root {
    --header: 74px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .header-tools {
    margin-left: 0;
  }

  .nav-desktop a {
    font-size: 0.84rem;
    padding: 8px 8px;
  }

  .usp-band {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .packages {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 12px;
  }

  .package {
    padding: 20px 16px;
  }

  .price {
    font-size: 1.9rem;
  }

  .game-catalog,
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fields.two {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.85rem;
  }

  .hero {
    padding-top: 16px;
  }

  .visual {
    min-height: 240px;
  }

  .contact-card,
  .contact-grid .card {
    padding: 16px;
  }

  .contact-meta__block {
    padding: 10px 12px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .package {
    transition: none;
  }

  .package:hover {
    transform: none;
  }
}
