﻿:root {
  --navy: #0f2f2a;
  --navy-2: #123b34;
  --navy-3: #16463f;
  --blue: #26c6a2;
  --blue-2: #5fe7c6;
  --yellow: #ffc94a;
  --mint: #7cf5d2;
  --ink: #162724;
  --ink-soft: #5b6b66;
  --bg: #f3f8f6;
  --white: #ffffff;
  --line: rgba(15, 47, 42, 0.12);
  --shadow: 0 18px 40px rgba(14, 43, 38, 0.18);
  --radius: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell { width: min(1200px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 47, 42, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0f2f2a;
}

.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.05rem; letter-spacing: 0.04em; }
.brand small {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.header-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.hero {
  background:
    radial-gradient(520px 320px at 10% 10%, rgba(77, 209, 255, 0.2), transparent 70%),
    radial-gradient(420px 260px at 80% 15%, rgba(255, 201, 60, 0.2), transparent 65%),
    linear-gradient(120deg, var(--navy), var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff;
  padding: 86px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 20px solid rgba(255, 201, 60, 0.18);
  right: -80px;
  top: 120px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 18px solid rgba(47, 184, 255, 0.22);
  left: -60px;
  bottom: 60px;
}

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

.hero-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  margin: 0 0 14px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

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

.btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #0b0a1a;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(47, 184, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.active {
  background: rgba(47, 184, 255, 0.18);
  border-color: rgba(47, 184, 255, 0.4);
  color: #fff;
}

.hero-visual {
  position: relative;
  border-radius: 26px;
  padding: 18px;
  background: rgba(7, 33, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  min-height: 340px;
  display: grid;
  align-items: center;
}

.hero-collage {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}


.hero-image-stack {
  position: relative;
  min-height: 320px;
}

.hero-collage-stack {
  min-height: 360px;
}

.hero-image {
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.hero-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-top {
  position: absolute;
  width: 48%;
  right: 8%;
  top: -20px;
}

.hero-bottom {
  position: absolute;
  width: 54%;
  right: 0;
  bottom: -22px;
}

.hero-collage .hero-main {
  width: 72%;
  margin-left: auto;
}

.hero-collage .hero-top {
  right: 40%;
  width: 46%;
}

.hero-collage .hero-bottom {
  width: 58%;
  right: 8%;
}

.hero-collage .hero-image {
  border-radius: 8px;
}

.hero-visual img:not(.hero-image) { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }

.hero-pills {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
}

.hero-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-mini-panels {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.hero-mini-panel {
  display: none;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
}

.hero-mini-panel.active { display: block; }

.hero-icon-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-icon-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  color: #fff;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
}

.hero-icon-card.active {
  background: rgba(255, 201, 60, 0.18);
  border-color: rgba(255, 201, 60, 0.45);
}

.hero-strip {
  margin-top: 24px;
}

.hero-strip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-strip-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.light-section { background: #fff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.split-media {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-media img { width: 100%; height: 100%; object-fit: cover; }

.card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card.dark {
  background: #11352f;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.card.dark p { color: rgba(255, 255, 255, 0.7); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 0.55em;
}

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

.feature-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 184, 255, 0.15);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.feature-item strong { display: block; margin-bottom: 6px; }

.dark-band {
  background: linear-gradient(120deg, #0f2f2a, #123b34 60%, #16463f 100%);
  color: #fff;
}

.dark-band .feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }

.media-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow);
}

.media-card img { border-radius: 18px; }

.game-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.game-wall img {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  height: 72px;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.team-tile {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
}

.team-tile strong { font-size: 0.95rem; }
.team-tile span { color: var(--ink-soft); font-size: 0.85rem; }

.circle-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 16px solid rgba(255, 201, 60, 0.28);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.circle-photo img {
  height: 100%;
  max-width: max-content;
}

.circle-photo.blue { border-color: rgba(47, 184, 255, 0.28); }

.partner-band {
  background: linear-gradient(120deg, #128a70, #26c6a2);
  color: #fff;
  text-align: center;
  padding: 22px 0;
}

.partner-band .shell { display: grid; gap: 12px; align-items: center; }
.partner-band .section-title { color: #fff; margin: 0; }

.game-catalog-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.catalog-head {
  text-align: center;
  margin-bottom: 18px;
}

.catalog-subtitle {
  max-width: 520px;
  margin: 6px auto 0;
  color: var(--ink-soft);
}

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

.catalog-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 198, 162, 0.5);
  box-shadow: 0 18px 40px rgba(14, 43, 38, 0.22);
}

.catalog-tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f2f2a;
  background: linear-gradient(135deg, #ffffff, #dff7ef);
  border: 2px solid rgba(38, 198, 162, 0.25);
}

.catalog-tile strong {
  display: block;
  font-size: 1rem;
}

.catalog-tile span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.catalog-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.catalog-dot-blue {
  width: 90px;
  height: 90px;
  background: #26c6a2;
  top: -30px;
  left: 10%;
}

.catalog-dot-yellow {
  width: 150px;
  height: 150px;
  background: #ffc94a;
  top: -60px;
  right: 14%;
}

.catalog-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 24px solid #ffc94a;
  right: -80px;
  bottom: -80px;
}

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

.home-catalog-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.home-catalog-media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.home-catalog-body h3 {
  margin: 0 0 8px;
}

.home-catalog-desc {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

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

.review-stage {
  border-radius: 24px;
  padding: 24px;
  background: #197d67;
  color: #fff;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.review-stage::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.18);
  right: -40px;
  top: -40px;
}

.review-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.review-card { display: none; }
.review-card.is-active { display: block; animation: fadeUp 0.4s ease; }
.review-meta { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); }
.review-nav { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }

.marquee {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.marquee-track {
  display: flex;
  gap: 10px;
  animation: scrollX 16s linear infinite;
}

.mini-card {
  padding: 10px 12px;
  background: rgba(47, 184, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(47, 184, 255, 0.2);
  white-space: nowrap;
  font-size: 0.85rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.location-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.location-bubble {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(47, 184, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-item .answer { display: none; padding: 0 16px 14px; color: var(--ink-soft); }
.faq-item.open .answer { display: block; animation: fadeUp 0.25s ease; }

.review-showcase {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.review-showcase-inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.review-showcase-card {
  max-width: 760px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  display: none;
}

.review-showcase-card.is-active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.review-quote {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 201, 74, 0.2);
  color: #b87800;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.review-showcase-text {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.review-avatars {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 16px;
}

.review-avatar-initial {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f2f2a;
  background: linear-gradient(135deg, #ffffff, #dff7ef);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.review-avatar-initial.is-small {
  width: 54px;
  height: 54px;
  opacity: 0.85;
}

.review-avatar-meta {
  display: grid;
  gap: 4px;
  text-align: left;
}

.review-avatar-meta strong {
  font-size: 1rem;
}

.review-avatar-meta span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.review-showcase-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.review-dot-yellow {
  width: 140px;
  height: 140px;
  background: #ffc94a;
  top: -40px;
  left: 12%;
}

.review-dot-blue {
  width: 84px;
  height: 84px;
  background: #26c6a2;
  top: 80px;
  left: 22%;
}

.review-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 40px solid #2fa6ff;
  right: 16%;
  top: 56%;
  transform: rotate(6deg);
  opacity: 0.9;
}

.review-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 26px solid #ffc94a;
  right: -90px;
  bottom: -90px;
}

.footer {
  background: #0f2b26;
  color: #fff;
  padding: 44px 0;
}

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

.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.footer-note { margin-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 25, 0.7);
  z-index: 120;
}

.overlay.show { display: flex; }

.overlay-card {
  width: min(520px, 92vw);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}

.overlay-card .btn-ghost {
  color: #0b0a1a;
  border-color: rgba(10, 12, 28, 0.35);
  background: #ffffff;
}

.cookie-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(10, 12, 28, 0.2);
  border-left: 0;
  border-right: 0;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 -18px 40px rgba(10, 10, 30, 0.18);
  display: none;
  z-index: 110;
}

.cookie-box.show { display: block; animation: fadeUp 0.3s ease; }

.cookie-box .btn-ghost {
  color: #0b0a1a;
  border-color: rgba(10, 12, 28, 0.35);
  background: #ffffff;
}

.form-grid { display: grid; gap: 8px; }
input, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }

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

.catalog-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.catalog-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
}

.catalog-media img { width: 100%; height: 100%; object-fit: cover; }

.catalog-tags {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.catalog-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  display: none;
  padding: 18px;
  background: rgba(10, 10, 25, 0.75);
  z-index: 130;
}

.catalog-modal.open { display: block; animation: fadeUp 0.2s ease; }

.catalog-modal-card {
  width: min(1200px, 96vw);
  height: min(88vh, 860px);
  margin: 0 auto;
  border-radius: 18px;
  background: #0f2b26;
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.catalog-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalog-frame-wrap { position: relative; background: #0b241f; }
#catalogFrame { width: 100%; height: 100%; border: 0; display: block; }
.catalog-frame-status {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(10, 8, 16, 0.82);
}
.catalog-frame-status.visible { display: flex; }

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.achievement-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .hero-grid, .split, .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) { direction: ltr; }
  .hero-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
  .header-row { grid-template-columns: auto auto; }
  .site-nav { display: none; position: absolute; top: calc(100% + 8px); left: 4vw; right: 4vw; background: #143c34; border-radius: 16px; padding: 12px; border: 1px solid rgba(255,255,255,0.15); box-shadow: var(--shadow); }
  .site-nav.show { display: grid; }
  .menu-toggle { display: block; justify-self: end; }
  .header-chip { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .catalog-tiles { grid-template-columns: 1fr 1fr; }
  .home-catalog-grid { grid-template-columns: 1fr; }
  .home-catalog-card { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-strip-row { grid-template-columns: 1fr 1fr; }
  .review-avatars { grid-auto-flow: row; text-align: center; }
  .review-avatar-meta { text-align: center; }
  .review-showcase-card { padding: 20px; }
  .circle-photo { width: 260px; height: 260px; border-width: 12px; }
  .hero-collage .hero-main { width: 100%; }
  .hero-collage .hero-top { right: 20%; width: 50%; }
  .hero-collage .hero-bottom { width: 62%; right: 4%; }
}

@media (max-width: 720px) {
  .game-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .circle-photo { width: 220px; height: 220px; border-width: 10px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero { padding: 70px 0 80px; }
  .hero-collage-stack { min-height: 300px; }
  .hero-collage .hero-main { width: 100%; }
  .hero-collage .hero-top { right: 18%; width: 56%; top: -10px; }
  .hero-collage .hero-bottom { width: 70%; right: 0; bottom: -18px; }
}

@media (max-width: 640px) {
  .game-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-strip-row { grid-template-columns: 1fr; }
  .catalog-tiles { grid-template-columns: 1fr; }
  .home-catalog-card { padding: 16px; }
  .home-catalog-media { height: 180px; }
  .review-avatars { gap: 10px; }
  .review-avatar-initial { width: 58px; height: 58px; font-size: 0.95rem; }
  .review-avatar-initial.is-small { width: 46px; height: 46px; }
  .catalog-dot-yellow { width: 120px; height: 120px; right: 6%; }
  .catalog-ring { width: 170px; height: 170px; border-width: 20px; right: -70px; bottom: -70px; }
  .hero-collage-stack { min-height: 260px; }
  .hero-collage .hero-main { width: 100%; }
  .hero-collage .hero-top { right: 8%; width: 62%; top: -6px; }
  .hero-collage .hero-bottom { width: 78%; right: -2%; bottom: -16px; }
  .hero-image { border-radius: 6px; }
}

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