:root {
  --out23-bg: #000000;
  --out23-deep: #0d0f40;
  --out23-surface: #111122;
  --out23-card: #151530;
  --out23-text: #f5f5f7;
  --out23-muted: #a8a8b3;
  --out23-cyan: #09ffea;
  --out23-cyan-soft: #00ffc8;
  --out23-teal: #1dc8cd;
  --out23-purple: #733eee;
  --out23-purple-dark: #4834d4;
  --out23-border: rgba(115, 62, 238, 0.35);
  --out23-glow: 0 0 24px rgba(115, 62, 238, 0.25);
  --out23-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  --nav-h: 116px;
  --font-orbitron: "Orbitron", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --review-star-gold: #e3b842;
  --review-star-idle: rgba(227, 184, 66, 0.28);
  --site-bottom-gradient: linear-gradient(107.19deg, rgba(19, 18, 23, 0.5) 0%, #020b1f 101.3%);
  --site-bottom-gradient-h: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--nav-h);
  font-family: "Montserrat", "Open Sans", sans-serif;
  background: linear-gradient(to bottom, var(--out23-deep) 0%, var(--out23-bg) 55%);
  color: var(--out23-text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(115, 62, 238, 0.12), transparent 45%),
              radial-gradient(circle at 80% 20%, rgba(0, 255, 200, 0.06), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; }
a { color: var(--out23-cyan); transition: color 0.2s ease; }
a:hover { color: var(--out23-teal); }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.97);
  border-bottom-color: rgba(9, 255, 234, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  flex-wrap: wrap;
  overflow: visible;
}

.brand {
  flex-shrink: 0;
  line-height: 0;
}

.brand img {
  width: 220px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0;
}

.main-nav a:hover,
.main-nav a.active { color: var(--out23-cyan); }

.nav-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--out23-muted);
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.7;
}

.nav-marketplace {
  outline: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-marketplace:hover,
.nav-marketplace:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.nav-marketplace-hover {
  display: none;
}

.nav-marketplace:hover .nav-marketplace-default,
.nav-marketplace:focus-visible .nav-marketplace-default {
  display: none;
}

.nav-marketplace:hover .nav-marketplace-hover,
.nav-marketplace:focus-visible .nav-marketplace-hover {
  display: inline;
  color: var(--out23-cyan);
}

.header-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

/* Logged-in user menu (Figma: avatar + hi name + chevron) */
.nav-user-menu {
  position: relative;
  flex-shrink: 0;
}

.nav-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: min(220px, 42vw);
  height: 44px;
  padding: 0 0.15rem 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-transform: capitalize;
  white-space: nowrap;
}

.nav-user-trigger:hover,
.nav-user-menu.is-open .nav-user-trigger {
  color: var(--out23-cyan);
}

.nav-user-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--out23-cyan);
  box-shadow: 0 0 12px rgba(9, 255, 234, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(115, 62, 238, 0.22);
  color: var(--out23-cyan);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-user-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-user-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.nav-user-menu.is-open .nav-user-chevron {
  transform: rotate(180deg);
}

.nav-user-dropdown {
  position: fixed;
  z-index: 10001;
  box-sizing: border-box;
  width: 350px;
  height: 500px;
  margin: 0;
  padding: 96px 0 0 29px;
  border-radius: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.72);
}

.nav-user-dropdown[hidden] {
  display: none;
}

.nav-user-dropdown-grid {
  width: 259px;
  height: 290px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.nav-user-dropdown-grid li {
  margin: 0;
  padding: 0;
}

.nav-user-dropdown-link {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-user-dropdown-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.nav-user-dropdown-link span {
  white-space: nowrap;
}

.nav-user-dropdown-link:hover,
.nav-user-dropdown-link.is-active {
  background: transparent;
  color: var(--out23-cyan);
}

.nav-user-dropdown-link:hover .nav-user-dropdown-icon,
.nav-user-dropdown-link.is-active .nav-user-dropdown-icon {
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(78%) sepia(52%) saturate(600%) hue-rotate(118deg) brightness(103%) contrast(101%);
}

.nav-user-dropdown-link.is-logout {
  color: #fff;
}

@media (max-width: 900px) {
  .nav-user-label {
    display: none;
  }

  .nav-user-trigger {
    max-width: none;
    gap: 0.35rem;
  }
}

.lang-switch {
  color: var(--out23-cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid var(--out23-border);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--out23-border);
  color: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .brand img {
    width: 176px;
    height: 80px;
  }
  .header-inner {
    min-height: 96px;
  }
  body {
    padding-top: 96px;
  }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
  }
  .main-nav.open { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--out23-purple), var(--out23-purple-dark));
  color: #fff;
  box-shadow: var(--out23-shadow);
}

.btn-outline {
  border-color: var(--out23-purple);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--out23-shadow);
}

.btn-ghost { color: var(--out23-cyan); background: transparent; border: none; padding-left: 0; }
.btn-block { width: 100%; }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }

/* Hero video */
.hero-video {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(13,15,64,0.75));
}

.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  text-shadow: var(--out23-shadow);
}

.hero-overlay p {
  color: #e8e8ef;
  max-width: 760px;
  margin: 0 auto 0.75rem;
  line-height: 1.65;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions { margin-top: 1.75rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 3px solid var(--out23-purple);
  padding-bottom: 0.35rem;
  display: inline-block;
}

.meta { color: var(--out23-muted); font-size: 0.85rem; }

/* Game cards — estilo legacy OUT23 */
.grid-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--out23-purple);
  box-shadow: var(--out23-glow);
  background: #000;
  min-height: 320px;
}

.game-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.game-card img,
.game-card .card-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.game-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, transparent 70%);
}

.game-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-shadow: var(--out23-shadow);
}

.game-card .card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.game-card:hover .card-hover { opacity: 1; }
.game-card:hover .game-card-body { opacity: 0; }

.card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.card-stats span {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--out23-border);
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--out23-cyan);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Filters */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-pills button {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--out23-border);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.filter-pills button.active,
.filter-pills button:hover {
  background: var(--out23-purple);
  border-color: var(--out23-purple);
}

/* Game detail — see .page-game section at end of file */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: #f5f5f5;
  color: #111;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--out23-shadow);
}

.stat-card h3 { margin: 0 0 0.5rem; font-size: 0.95rem; color: #333; }
.stat-card .value { font-size: 1.75rem; font-weight: 800; }

.progress-bar-wrap {
  height: 8px;
  background: #ddd;
  border-radius: 999px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--out23-purple);
}

.story-block {
  background: rgba(17, 17, 34, 0.85);
  border: 1px solid var(--out23-border);
  border-radius: 16px;
  padding: 2rem;
  line-height: 1.75;
}

.story-block h2 {
  text-align: center;
  margin-top: 0;
  font-size: 1.75rem;
  border-bottom: 3px solid var(--out23-purple);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.buy-box {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--out23-border);
  margin-top: 2rem;
}

.buy-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.reviews-mock {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px dashed var(--out23-border);
  border-radius: 12px;
  color: var(--out23-muted);
  font-size: 0.9rem;
}

/* Auth */
.auth-wrap {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.auth-card {
  width: min(480px, 100%);
  background: var(--out23-card);
  border: 1px solid var(--out23-border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--out23-glow);
}

.auth-card h1 { margin-top: 0; font-size: 1.6rem; }

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.auth-split-visual {
  background: linear-gradient(135deg, var(--out23-deep), #000);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid var(--out23-border);
}

.auth-split-visual img { max-width: 280px; border-radius: 12px; border: 3px solid var(--out23-purple); }

.auth-split-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (max-width: 860px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-split-visual { display: none; }
}

/* Account layout */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .account-layout { grid-template-columns: 1fr; }
}

.account-sidebar {
  background: var(--out23-card);
  border: 1px solid var(--out23-border);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
}

@media (min-width: 861px) {
  .account-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
  }
}

.account-sidebar h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.account-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.account-nav a:hover,
.account-nav a.active {
  background: rgba(115, 62, 238, 0.25);
  color: var(--out23-cyan);
}

.account-panel {
  background: var(--out23-card);
  border: 1px solid var(--out23-border);
  border-radius: 16px;
  padding: 1.75rem;
}

.account-panel h1 { margin-top: 0; font-size: 1.5rem; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--out23-muted);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--out23-border);
  background: rgba(0, 0, 0, 0.45);
  color: var(--out23-text);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--out23-cyan);
  box-shadow: 0 0 0 2px rgba(0, 255, 200, 0.15);
}

textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Tables */
.table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.data-table th { color: var(--out23-cyan); font-weight: 700; }

/* Flash */
.flash-banner {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.flash-success { color: #55efc4; }
.flash-error { color: #ff7675; }

/* Contact (legacy grid — superseded by page-contact below) */

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--out23-muted);
  font-size: 0.85rem;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--out23-muted); text-decoration: none; font-weight: 600; }
.footer-social a:hover { color: var(--out23-cyan); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--out23-card);
  border: 1px solid var(--out23-border);
  border-radius: 16px;
  padding: 2rem;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-success { background: rgba(85, 239, 196, 0.15); color: #55efc4; }
.badge-warning { background: rgba(255, 200, 100, 0.15); color: #fdcb6e; }
.badge-muted { background: rgba(255,255,255,0.08); color: var(--out23-muted); }

/* ─── Home (Figma 1920px reference) ─── */
.page-home {
  --home-cyan: #09ffea;
  --home-chips-w: min(1720px, 89.6vw);
  --home-panel-w: min(1390px, 72.4vw);
  --home-side: max(0px, calc((100vw - 1920px) / 2));
  --home-panel-gradient: linear-gradient(
    180deg,
    rgba(2, 11, 31, 0.38) 0%,
    rgba(2, 11, 31, 0.38) 30%,
    rgba(0, 0, 0, 0.62) 100%
    
  );
}

.page-home .home-hero-inner,
.page-home .home-games-wrap,
.page-home .home-testimonials-wrap,
.page-home .home-stats-wrap,
.page-home .home-partners-wrap {
  width: var(--home-panel-w);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-hero-inner {
  width: var(--home-chips-w);
  padding: 3.5rem 0 2rem;
}

.page-home .home-hero-top {
  grid-template-columns: minmax(0, 683px) minmax(0, 670px);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.btn-nav-user {
  color: var(--out23-cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--out23-border);
  border-radius: 999px;
  background: rgba(115, 62, 238, 0.15);
}

.home-hero {
  position: relative;
  min-height: auto;
  padding-top: 1.5rem;
  padding-bottom: 0;
  display: block;
  overflow: hidden;
  background: #000;
}

.home-hero-video { display: none; }
.home-hero-overlay { display: none; }

.page-home .home-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(0px, calc((100vw - var(--home-chips-w)) / 2));
  right: max(0px, calc((100vw - var(--home-chips-w)) / 2));
  overflow: hidden;
  background: #000;
  position: absolute;
  inset: 0;
}

.home-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.30);
  border-radius: 20px;
}

.home-hero-bg-shade {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.5) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.home-hero-top {
  display: grid;
  align-items: center;
}

@media (max-width: 900px) {
  .home-hero-top { grid-template-columns: 1fr; }
  .home-hero-visual { min-height: 240px; }
  .page-home .home-hero-top { grid-template-columns: 1fr; }
}

.home-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-hero-visual-frame {
  width: 670px;
  max-width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.home-hero-visual-frame img {
  display: block;
  width: 670px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 30px;

}

.home-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.home-subtitle {
  margin: 0 0 1.5rem;
  max-width: 378px;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-orbitron);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 900px) {
  .home-brand { font-size: clamp(2rem, 8vw, 64px); }
}

.title-accent {
  color: var(--out23-cyan);
}

.home-cta {
  min-width: 272px;
  height: 40px;
  padding: 0 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-orbitron);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--out23-cyan);
  border-radius: 10px;
  box-shadow: none;
}

.home-cta:hover {
  background: rgba(9, 255, 234, 0.1);
  color: var(--out23-cyan);
  transform: none;
}

.home-chips-bar {
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  padding: 1.35rem 2.5rem 1.2rem;
  min-height: 148px;
  display: flex;
  align-items: center;
  background:
    var(--home-panel-gradient),
    url('../images/design/home/panel-chips-bg.png') center / cover no-repeat;
  box-sizing: border-box;
}

.home-chip-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 30px;
  object-fit: contain;
}

.home-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: center;
}

@media (max-width: 900px) {
  .home-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .home-chips { grid-template-columns: 1fr; }
}

.home-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
}

.home-chip-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.home-chip-title {
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.home-chip-sub {
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.home-section { padding: 4rem 0; }
.home-section-title {
  margin: 0 0 2rem;
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-section-title.center { text-align: center; }
.home-stats-heading {
  font-size: 32px;
  line-height: 1.25;
}

.home-games { background: #000; padding-top: 2rem; }

.home-games-wrap,
.home-stats-wrap,
.home-partners-wrap {
  width: var(--home-panel-w, min(1390px, 72.4vw));
  margin: 0 auto;
}

.home-games .home-section-title,
.home-games-title {
  margin: 0 0 1.25rem;
  font-size: 24px;
}

.home-panel {
  position: relative;
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  padding: 2.25rem 6.5% 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.home-games-panel {
  min-height: 672px;
  background:
    var(--home-panel-gradient),
    url('../images/design/home/panel-games-bg.png') center / cover no-repeat;
}

.home-games-panel-deco { display: none; }

.home-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 250px));
  justify-content: space-between;
  gap: clamp(0.75rem, 3.1vw, 60px);
  max-width: 1182px;
  margin: 0 auto;
}

.home-game-card {
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.35s ease;
}

.home-game-card.is-highlighted {
  box-shadow:
    0 0 24px rgba(10, 115, 235, 0.55),
    0 0 42px rgba(0, 168, 255, 0.28);
}

.home-game-card:hover {
  transform: translateY(-2px);
}

.home-game-card:not(.is-highlighted):hover {
  box-shadow: none;
}

.home-game-card.is-highlighted:hover {
  box-shadow:
    0 0 34px rgba(10, 115, 235, 0.75),
    0 0 58px rgba(0, 168, 255, 0.45),
    0 0 88px rgba(10, 115, 235, 0.22);
}

.home-game-media {
  position: relative;
  aspect-ratio: 250 / 366;
  overflow: hidden;
  border-radius: 10px;
}

.home-game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 28%, rgba(0, 0, 0, 0.28) 52%, transparent 78%);
  transition: background 0.7s ease;
  z-index: 2;
}

.home-game-overlay h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  transition: transform 0.7s ease, font-size 0.7s ease, margin 0.7s ease;
}

.home-game-hover-preview {
  display: block;
  width: 0;
  height: 0;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  align-self: center;
  transform: scale(0.92);
  transition:
    opacity 0.7s ease,
    width 0.7s ease,
    height 0.7s ease,
    max-width 0.7s ease,
    max-height 0.7s ease,
    margin 0.7s ease,
    transform 0.7s ease;
  pointer-events: none;
}

.home-game-overlay .home-game-meta {
  margin: 0;
  max-height: 120px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.6s ease, max-height 0.7s ease, margin 0.7s ease;
}

.home-game-play {
  display: inline-block;
  max-height: 0;
  margin-top: 0;
  padding: 0 1.1rem;
  overflow: hidden;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.7s ease, max-height 0.7s ease, margin 0.7s ease, padding 0.7s ease, border-color 0.7s ease;
  pointer-events: none;
  align-self: center;
}

.home-game-card:hover .home-game-media img {
  transform: scale(1.06);
  transition: transform 0.9s ease;
}

.home-game-card:hover .home-game-overlay {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.58);
}

.home-game-card:hover .home-game-overlay h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  transform: scale(1.08);
  margin-bottom: 0;
  align-self: center;
}

.home-game-card:hover .home-game-meta {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-game-card:hover .home-game-hover-preview {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
  opacity: 1;
  margin: 0.65rem 0;
  transform: scale(1);
}

.home-game-card:hover .home-game-play {
  opacity: 1;
  max-height: 48px;
  margin-top: 0.65rem;
  padding: 0.45rem 1.1rem;
  border-color: var(--out23-cyan);
  transform: translateY(0);
}

.home-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.home-game-info { display: none; }

@media (max-width: 1024px) {
  .home-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: center; }
}
@media (max-width: 560px) { .home-games-grid { grid-template-columns: 1fr; } }

.home-game-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.home-more-games {
  min-width: 314px;
  height: 40px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid var(--out23-cyan);
  border-radius: 10px;
}

.home-more-games:hover {
  background: rgba(9, 255, 234, 0.1);
  color: var(--out23-cyan);
}

.home-game-info h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
}
.game-title-myth { color: #d9a412; }
.game-title-colossus {
  color: #7702ff;
  -webkit-text-stroke: 1.5px #fff;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #fff,
    1px 0 0 #fff,
    -1px 0 0 #fff,
    0 1px 0 #fff,
    0 -1px 0 #fff;
}
.game-title-mint-house { color: #fff; }
.game-title-mint-accent { color: #ff1919; }
.game-title-last-step { color: #ff1919; }
.game-title-zombie-lab { color: #2ecc40; }
.game-title-el-bar { color: #0a73eb; }
.game-title-barbanegra { color: #fff; }
.game-title-el-camerino { color: #2ecc40; }
.game-title-default { color: #fff; }

.home-game-meta {
  margin: 0;
  padding: 0;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.66;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.home-game-meta li { display: none; }

.home-section-cta { text-align: center; margin-top: 2rem; }

.home-testimonials {
  background: #000;
  text-align: center;
  padding: 3rem 0 4rem;
}

.home-testimonials-wrap {
  width: var(--home-panel-w, min(1390px, 72.4vw));
  margin: 0 auto;
}

.home-testimonials-panel {
  width: 100%;
  min-height: 520px;
  padding: 2.75rem 2rem 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  
  background:
    var(--home-panel-gradient),
    url('../images/design/home/testimonials-bg.png') center / cover no-repeat;
}

.home-testimonials-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-testimonials-slides {
  display: grid;
  width: 100%;
  justify-items: center;
}

.home-testimonials-title {
  margin: 0 0 3.5rem;
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.home-quote-featured {
  grid-area: 1 / 1;
  margin: 0 auto;
  padding: 0;
  max-width: 593px;
  border: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.home-quote-featured.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-quote-featured p {
  margin: 0 0 3.5rem;
  font-family: var(--font-orbitron);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
}

.home-quote-featured footer {
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--out23-cyan);
  text-transform: lowercase;
}

.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 1.25rem;
}

.home-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.home-carousel-dot.active {
  background: var(--out23-cyan);
  box-shadow: 0 0 8px var(--out23-cyan);
}

.home-testimonial-logo {
  display: block;
  margin: 0 auto;
  width: 290px;
  height: 190px;
  object-fit: contain;
  opacity: 0.95;
}

.home-stats {
  background: #000;
  padding: 2rem 0 3rem;
}

.home-stats-panel {
  position: relative;
  width: 100%;
  min-height: 453px;
  padding: 3.5rem 2rem 2.5rem;
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  background:
    var(--home-panel-gradient),
    url('../images/design/home/stats-bg.png') center / cover no-repeat;
}

.home-stats-title {
  margin: 0 0 4.5rem;
  font-family: var(--font-orbitron);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
  align-items: start;
}

.home-stat {
  padding: 0 0.5rem;
}

.home-stat-icon {
  display: block;
  margin: 0 auto 0.65rem;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-stat-value {
  font-family: var(--font-orbitron);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.66;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-stat-value span {
  display: block;
  font-size: 30px;
  font-weight: 800;
}

@media (max-width: 760px) { .home-stats-grid { grid-template-columns: 1fr; } }

.home-partners {
  background: var(--site-bottom-gradient);
  background-size: 100% var(--site-bottom-gradient-h);
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 3rem;
}

.home-partners-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-partners-track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: max-content;
  padding: 1.25rem 0;
  animation: home-partners-scroll 28s linear infinite;
}

.home-partners-track:hover {
  animation-play-state: paused;
}

.home-partner-item {
  flex: 0 0 260px;
  width: 260px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-partner-item img {
  display: block;
  width: 260px;
  height: 240px;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
}

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

@media (max-width: 900px) {
  .home-partner-item,
  .home-partner-item img {
    width: 200px;
    height: 185px;
  }
  .home-partner-item { flex-basis: 200px; }
}

@media (max-width: 560px) {
  .home-partner-item,
  .home-partner-item img {
    width: 160px;
    height: 148px;
  }
  .home-partner-item { flex-basis: 160px; }
}

.home-partners-row { display: none; }
.home-partners-grid { display: none; }

.home-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

@media (max-width: 1024px) {
  .home-quotes-3 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) { .home-quotes { grid-template-columns: 1fr; } }

.home-quote {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--out23-border);
  border-radius: 16px;
  background: rgba(10, 10, 22, 0.8);
}

.home-quote p {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  font-style: normal;
  text-transform: none;
}

.home-quote footer {
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--out23-cyan);
  text-transform: lowercase;
}

.home-partners-grid {
  display: flex;
  justify-content: center;
}

.home-partners-grid img {
  width: min(420px, 100%);
  height: auto;
  display: block;
}

.home-partner-logo {
  min-width: 140px;
  padding: 1.25rem 1.5rem;
  border: 1px dashed var(--out23-border);
  border-radius: 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--out23-muted);
}

.site-footer-extended {
  background: var(--site-bottom-gradient);
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--out23-border);
  padding-top: 2.5rem;
}

main:has(.home-partners) + .site-footer-extended {
  background-size: 100% var(--site-bottom-gradient-h);
  background-position: bottom center;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.footer-social-title {
  margin: 1.25rem 0 0.75rem;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

.footer-col a {
  display: block;
  color: var(--out23-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.footer-col a:hover { color: #fff; }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links-col h4 {
  margin: 0 0 0.75rem;
}

.footer-links-col-secondary {
  padding-top: calc(1rem + 0.75rem);
}

@media (max-width: 560px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-links-col-secondary {
    padding-top: 0;
  }
}

.footer-logo {
  width: 240px;
  height: 88px;
  display: block;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.footer-lei { display: block; opacity: 0.95; }
.footer-tagline { margin: 0; color: var(--out23-muted); font-size: 0.85rem; }

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}

.footer-social-icons a {
  display: block;
  margin: 0;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social-icons img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-legal-row .footer-lei {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-lei-label {
  margin: 0;
  color: var(--out23-muted);
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 220px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0 1.5rem;
  color: var(--out23-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Figma-aligned pages */
.page-home,
.page-games,
.page-about,
.page-contact { font-family: var(--font-orbitron); }
.page-home .home-section-title,
.page-games .home-section-title,
.page-about .home-section-title {
  font-family: var(--font-orbitron);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-chip {
  font-family: var(--font-orbitron);
  font-size: 1rem;
  letter-spacing: 0;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(13, 15, 64, 0.55), transparent);
}
.page-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-orbitron);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--out23-cyan);
}
.page-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.page-lead {
  margin: 0;
  max-width: 640px;
  font-family: var(--font-orbitron);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: #d8d8e3;
}

.page-games {
  --home-chips-w: min(1720px, 89.6vw);
  --home-panel-w: min(1390px, 72.4vw);
  --games-hero-content-w: min(1290px, calc(100vw - 2rem));
  --games-hero-w: var(--games-hero-content-w);
  --games-hero-ar: 1290 / 733;
  --games-hero-visual-max-w: 1146px;
  --games-hero-visual-w: min(
    var(--games-hero-visual-max-w),
    calc(100vw - var(--games-hero-side-pad) - var(--games-hero-copy-w) - 1.5rem)
  );
  --games-hero-h: calc(var(--games-hero-visual-w) * 733 / 1290);
  --games-hero-copy-w: 420px;
  --games-hero-side-pad: clamp(1rem, 2vw, 1.5rem);
  --home-panel-gradient: linear-gradient(
    180deg,
    rgba(2, 11, 31, 0.38) 0%,
    rgba(2, 11, 31, 0.38) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.page-games .home-partners-wrap,
.page-games .games-catalog-wrap {
  width: var(--home-panel-w);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.games-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  margin-top: calc(-1 * var(--nav-h));
  min-height: calc(var(--games-hero-h) + 100px);
}

.games-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.games-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(1.12);
}

.games-hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.5) 100%);
}

.games-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: var(--games-hero-h);
  margin: 100px 0 0;
  padding: 0;
  padding-left: max(
    var(--games-hero-side-pad),
    calc((100vw - var(--games-hero-content-w)) / 2 + var(--games-hero-side-pad))
  );
  box-sizing: border-box;
}

.games-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--games-hero-copy-w));
  max-width: var(--games-hero-copy-w);
  padding: calc(var(--nav-h) + 0.85rem) 0 1.25rem;
}

.games-hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.games-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: clamp(2rem, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
}

.games-hero-subtitle {
  margin: 0 0 1.5rem;
  max-width: 560px;
  font-family: var(--font-orbitron);
  font-size: clamp(1rem, 2vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
}

.games-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.65rem 1.35rem;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.games-hero-cta:hover {
  background: rgba(9, 255, 234, 0.1);
  border-color: var(--out23-cyan);
  color: var(--out23-cyan);
}

.games-hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: var(--games-hero-visual-w);
  max-width: var(--games-hero-visual-max-w);
  height: var(--games-hero-h);
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.games-hero-visual-frame {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  line-height: 0;
}

.games-hero-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.games-main {
  position: relative;
  z-index: 2;
  background: transparent;
}

.games-catalog {
  position: relative;
  z-index: 2;
  padding: 1.25rem 0 3rem;
  margin-top: 0;
}

.games-catalog-panel {
  position: relative;
  z-index: 2;
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  background:
    url('../images/design/home/panel-games-bg.png') center / cover no-repeat,
    linear-gradient(180deg, #020b1f 0%, #000000 100%);
}

.games-catalog-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.games-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: min(1211px, 100%);
  margin: 0 auto;
}

.games-row {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.games-row.is-highlighted {
  border-color: rgba(10, 132, 255, 0.95);
  box-shadow:
    0 0 28px rgba(10, 115, 235, 0.5),
    inset 0 0 70px rgba(10, 115, 235, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.games-row.is-highlighted:hover {
  border-color: rgba(30, 160, 255, 1);
  box-shadow:
    0 0 38px rgba(10, 115, 235, 0.68),
    0 0 62px rgba(0, 168, 255, 0.32),
    inset 0 0 95px rgba(10, 115, 235, 0.2);
}

.experience-badge-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 8;
}

.experience-badge {
  position: absolute;
  top: 24px;
  right: -30px;
  width: 162px;
  padding: 7px 0 7px 12px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #0044ee 0%, #0088ff 52%, #0066ff 100%);
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #000;
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 #000,
    -1px 0 0 #000,
    0 1px 0 #000,
    0 -1px 0 #000,
    1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  box-shadow:
    0 0 14px rgba(0, 140, 255, 0.75),
    0 0 26px rgba(0, 100, 255, 0.45);
  pointer-events: none;
  white-space: nowrap;
}

.experience-badge--week {
  top: 26px;
  right: -38px;
  width: 192px;
  padding: 8px 0 8px 12px;
  font-size: 9.5px;
  letter-spacing: 0.04em;
}

.home-game-card.is-highlighted .home-game-media {
  outline: 2px solid rgba(10, 132, 255, 0.9);
  box-shadow:
    inset 0 0 55px rgba(10, 115, 235, 0.38),
    0 0 26px rgba(0, 140, 255, 0.35);
  transition: box-shadow 0.35s ease, outline-color 0.35s ease;
}

.home-game-card.is-highlighted:hover .home-game-media {
  outline-color: rgba(30, 160, 255, 1);
  box-shadow:
    inset 0 0 75px rgba(10, 115, 235, 0.52),
    0 0 40px rgba(0, 140, 255, 0.55);
}

.home-game-media .experience-badge-wrap {
  border-radius: 10px;
}

.home-game-media .experience-badge {
  top: 22px;
  right: -28px;
  width: 146px;
  padding: 7px 0 7px 12px;
  font-size: 9.5px;
  letter-spacing: 0.065em;
}

.home-game-media .experience-badge--week {
  top: 24px;
  right: -34px;
  width: 172px;
  padding: 8px 0 8px 12px;
  font-size: 9.5px;
  letter-spacing: 0.032em;
}

.games-row .experience-badge {
  top: 28px;
  right: -32px;
  width: 168px;
  padding: 7px 0 7px 12px;
  font-size: 10.5px;
}

.games-row .experience-badge--week {
  top: 30px;
  right: -38px;
  width: 198px;
  padding: 8px 0 8px 12px;
  font-size: 9.5px;
  letter-spacing: 0.035em;
}

.games-row:hover {
  transform: translateY(-2px);
  border-color: var(--out23-cyan);
  box-shadow: 0 0 20px rgba(9, 255, 234, 0.22);
}

.games-row-bg {
  position: absolute;
  inset: 0;
}

.games-row-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.38) 100%);
  transition: background 0.65s ease;
}

.games-row:hover .games-row-bg::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.5) 100%);
}

.games-row-bg img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.games-row-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.games-row-main {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: calc(100% - 8rem);
  transform: translate(-50%, -50%);
  transition: left 0.7s ease, transform 0.7s ease;
}

.games-row:hover .games-row-main,
.games-row:focus-visible .games-row-main {
  left: 1.25rem;
  transform: translate(0, -50%);
}

.games-row-thumb {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
  transition: border-color 0.65s ease, box-shadow 0.65s ease;
}

.games-row-thumb img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: cover;
}

.games-row-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.games-row-title {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: clamp(1.75rem, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: left;
  transition: transform 0.7s ease;
}

.games-row:hover .games-row-title,
.games-row:focus-visible .games-row-title {
  transform: translateY(-4px);
}

.games-row-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.55s ease 0.08s,
    max-height 0.7s ease,
    margin 0.7s ease,
    transform 0.65s ease 0.08s;
}

.games-row:hover .games-row-stats {
  margin-top: 0.55rem;
  max-height: 40px;
  opacity: 1;
  transform: translateY(0);
}

.games-row-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.games-row-stat i {
  font-size: 1.05rem;
  color: #fff;
}

.games-row-play {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  top: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease 0.12s,
    transform 0.65s ease 0.12s,
    border-color 0.65s ease;
  pointer-events: none;
}

.games-row:hover .games-row-play,
.games-row:focus-visible .games-row-play {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--out23-cyan);
  pointer-events: auto;
}

@media (min-width: 901px) {
  .games-row-play {
    top: 105px;
    right: 32px;
    bottom: auto;
    width: 150px;
    height: 40px;
    transform: translateY(10px);
  }

  .games-row:hover .games-row-play,
  .games-row:focus-visible .games-row-play {
    transform: translateY(0);
  }
}

.game-hero-main.is-rotated img,
.game-hero-thumb.is-rotated img {
  transform: rotate(-90deg) scale(1.12);
  transform-origin: center center;
}

.game-hero-languages {
  margin: 0 0 0.85rem;
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.game-hero-languages i {
  color: var(--out23-cyan);
  margin-right: 0.35rem;
}

.games-row-myth .games-row-thumb { border-color: #d9a412; }
.games-row-myth:hover .games-row-thumb { box-shadow: 0 0 22px rgba(217, 164, 18, 0.42); }

.games-row-last-step .games-row-thumb { border-color: #ff1919; }
.games-row-last-step:hover .games-row-thumb { box-shadow: 0 0 22px rgba(255, 25, 25, 0.35); }

.games-row-colossus .games-row-thumb { border-color: #7702ff; }
.games-row-colossus:hover .games-row-thumb { box-shadow: 0 0 22px rgba(119, 2, 255, 0.35); }

.games-row-mint-house .games-row-thumb { border-color: rgba(255, 255, 255, 0.85); }

.games-row-barbanegra .games-row-thumb { border-color: #e82222; }
.games-row-barbanegra:hover .games-row-thumb { box-shadow: 0 0 22px rgba(232, 34, 34, 0.45); }

.games-row-barbanegra {
  border-color: rgba(232, 34, 34, 0.85);
  box-shadow: 0 0 18px rgba(232, 34, 34, 0.22);
}

.games-row-barbanegra:hover {
  border-color: #ff3333;
  box-shadow: 0 0 22px rgba(255, 51, 51, 0.38);
}

.games-row-barbanegra .games-row-bg::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.55) 100%);
}

.home-game-card--barbanegra .home-game-media {
  border: 1px solid rgba(232, 34, 34, 0.35);
}

.home-game-card--barbanegra:hover .home-game-media {
  box-shadow: 0 0 24px rgba(232, 34, 34, 0.28);
}

.home-game-card--barbanegra:hover .home-game-hover-preview {
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.home-game-card--barbanegra:hover .home-game-play {
  border-color: #e82222;
}

.games-row-el-camerino .games-row-thumb { border-color: #2ecc40; }
.games-row-el-camerino:hover .games-row-thumb { box-shadow: 0 0 22px rgba(46, 204, 64, 0.35); }

.games-row-zombie-lab .games-row-thumb { border-color: #2ecc40; }
.games-row-zombie-lab:hover .games-row-thumb { box-shadow: 0 0 22px rgba(46, 204, 64, 0.35); }

.games-row-el-bar .games-row-thumb { border-color: #0a73eb; }
.games-row-el-bar:hover .games-row-thumb { box-shadow: 0 0 22px rgba(10, 115, 235, 0.35); }

.games-row-default .games-row-thumb { border-color: var(--out23-cyan); }
.games-row-default:hover .games-row-thumb { box-shadow: 0 0 22px rgba(9, 255, 234, 0.3); }

.games-row-myth {
  border-color: #d9a412;
  box-shadow: 0 0 18px rgba(217, 164, 18, 0.25);
}

.games-row-last-step {
  border-color: #ff1919;
  box-shadow: 0 0 18px rgba(255, 25, 25, 0.25);
}

.games-row-colossus {
  border-color: #7702ff;
  box-shadow: 0 0 18px rgba(119, 2, 255, 0.3);
}

.games-row-mint-house {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.games-row-el-camerino {
  border-color: #2ecc40;
  box-shadow: 0 0 18px rgba(46, 204, 64, 0.25);
}

.games-row-zombie-lab {
  border-color: #2ecc40;
  box-shadow: 0 0 18px rgba(46, 204, 64, 0.28);
}

.games-row-el-bar {
  border-color: #0a73eb;
  box-shadow: 0 0 18px rgba(10, 115, 235, 0.28);
}

.games-row-default {
  border-color: var(--out23-cyan);
}

.games-row-myth:hover,
.games-row-last-step:hover,
.games-row-colossus:hover,
.games-row-mint-house:hover,
.games-row-el-camerino:hover,
.games-row-zombie-lab:hover,
.games-row-el-bar:hover,
.games-row-default:hover {
  border-color: var(--out23-cyan);
  box-shadow: 0 0 20px rgba(9, 255, 234, 0.22);
}

.games-partners {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

@media (max-width: 900px) {
  .page-games {
    --games-hero-content-w: calc(100vw - 1.5rem);
    --games-hero-visual-w: min(var(--games-hero-visual-max-w), calc(100vw - 1.5rem));
    --games-hero-h: auto;
  }

  .games-hero {
    min-height: 0;
  }

  .games-hero-inner {
    height: auto;
    margin-top: 0;
    padding-left: 0.75rem;
    padding-right: 0;
  }

  .games-hero-copy {
    width: 100%;
    max-width: none;
    padding:
      calc(var(--nav-h) + 0.75rem)
      0.75rem
      1rem
      0;
  }

  .games-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: var(--games-hero-visual-w);
    max-width: var(--games-hero-visual-max-w);
    height: auto;
    aspect-ratio: var(--games-hero-ar);
    margin-top: 0.5rem;
  }

  .games-hero-visual-frame {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: var(--games-hero-ar);
    margin-left: auto;
    margin-right: 0;
  }

  .games-hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
}

.game-card-price {
  margin: 0.75rem 0 0;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--out23-cyan);
  text-transform: none;
}

.about-story { padding: 2rem 0 1rem; }
.about-visual img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid var(--out23-purple);
  box-shadow: var(--out23-glow);
}
.about-copy p {
  font-family: var(--font-poppins);
  font-size: 1rem;
  line-height: 1.65;
  color: #ececf1;
  text-transform: none;
  font-weight: 400;
}

/* ─── About (Figma 77:307) ─── */
.page-about {
  --home-cyan: #09ffea;
  --home-chips-w: min(1720px, 89.6vw);
  --home-panel-w: min(1390px, 72.4vw);
  --home-panel-gradient: linear-gradient(
    180deg,
    rgba(2, 11, 31, 0.38) 0%,
    rgba(2, 11, 31, 0.38) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
  background: #000;
}

.page-about .about-story-wrap,
.page-about .home-games-wrap,
.page-about .home-partners-wrap {
  width: var(--home-panel-w);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.36);
}

.about-hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1920px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 3vw, 2.5rem) 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 683px) minmax(0, 520px);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.about-hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.about-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.about-hero-subtitle {
  margin: 0 0 1.5rem;
  max-width: 683px;
  font-family: var(--font-orbitron);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.about-hero-cta {
  min-width: 180px;
  height: 40px;
}

.about-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-hero-visual-frame {
  width: min(520px, 100%);
  max-width: 100%;
  background: transparent;
}

.about-hero-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-main {
  background: #000;
}

.about-story {
  padding: 1.5rem 0 2rem;
  background: #000;
}

.about-story-panel {
  position: relative;
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  min-height: 520px;
  padding: 2.75rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url('../images/design/about/story-bg.png') center / cover no-repeat;
}

.about-story-title {
  margin: 0 0 2.5rem;
  font-family: var(--font-orbitron);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.about-story-body {
  margin: 0 auto 1.5rem;
  max-width: 1100px;
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.about-story-body:last-of-type {
  margin-bottom: 2.5rem;
}

.about-story-logo {
  display: block;
  margin: 0 auto;
  width: 290px;
  height: 190px;
  object-fit: contain;
  opacity: 0.95;
}

.about-partners {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

/* ─── Info pages (Marketplace, Terms, Trust, Partnership, Blog) ─── */
.page-info {
  --home-cyan: #09ffea;
  --home-panel-w: min(1390px, 72.4vw);
  background: #000;
}

.page-info .info-wrap,
.page-info .home-partners-wrap {
  width: var(--home-panel-w);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.info-hero {
  background: #000;
  border-bottom: 1px solid rgba(9, 255, 234, 0.12);
}

.info-hero-inner {
  width: min(1920px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 3vw, 2.5rem) 2.25rem;
  box-sizing: border-box;
  text-align: center;
}

.info-hero-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.info-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: clamp(2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.info-hero-lead {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.info-main {
  background: #000;
}

.info-content {
  padding: 1.75rem 0 1rem;
}

.info-panel {
  border: 2px solid var(--out23-cyan);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(2, 11, 31, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.info-block {
  text-align: left;
}

.info-block-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.info-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border: 1px solid rgba(9, 255, 234, 0.45);
  border-radius: 12px;
  font-family: var(--font-orbitron);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--out23-cyan);
  background: rgba(9, 255, 234, 0.06);
}

.info-block-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-orbitron);
  font-size: clamp(1.05rem, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.info-block-body {
  margin: 0 0 0 4.75rem;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.info-block-body p {
  margin: 0 0 0.85rem;
}

.info-block-body p:last-child {
  margin-bottom: 0;
}

.info-block-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.info-block-body li {
  margin-bottom: 0.45rem;
}

.info-block-body a {
  color: var(--out23-cyan);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.info-block-body a:hover {
  color: #fff;
}

.info-block-body strong {
  color: #fff;
  font-weight: 600;
}

.info-divider {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid rgba(9, 255, 234, 0.18);
}

.info-partners {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

@media (max-width: 720px) {
  .info-block-head {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .info-block-num {
    min-width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .info-block-body {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-title {
    font-size: clamp(2rem, 8vw, 64px);
  }

  .about-hero-visual {
    justify-content: center;
  }

  .about-story-body {
    font-size: 14px;
    line-height: 1.85;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Contact (Figma 76:347) ─── */
.page-contact {
  --contact-panel-w: min(1560px, calc(100vw - 360px));
  --contact-panel-h: 784px;
  --contact-inner-w: 1196px;
  --contact-inner-h: 667px;
  --contact-inner-top: 47px;
  --contact-inner-left: 182px;
  --contact-info-col: 364px;
  background: #000;
}

.page-contact .contact-wrap,
.page-contact .home-partners-wrap {
  width: var(--contact-panel-w);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.contact-main {
  background: #000;
}

.contact-section {
  padding: clamp(3rem, 8.33vw, 160px) 0 1.5rem;
}

.contact-panel {
  position: relative;
  width: 100%;
  height: var(--contact-panel-h);
  min-height: var(--contact-panel-h);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  opacity: 1;
  background: url('../images/design/contact/panel-bg.png') center / cover no-repeat;
  box-sizing: border-box;
}

.contact-inner {
  position: absolute;
  top: 6%;
  left: 11.667%;
  width: 76.667%;
  height: 85.08%;
  max-width: var(--contact-inner-w);
  max-height: var(--contact-inner-h);
  display: grid;
  grid-template-columns: 364fr 832fr;
  box-sizing: border-box;
  opacity: 1;
  overflow: hidden;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.5rem 1.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.94);
  box-sizing: border-box;
}

.contact-brand-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  flex-shrink: 0;
}

.contact-form-box {
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
  overflow: auto;
  background: linear-gradient(180deg, rgba(7, 13, 31, 0.98) 0%, rgba(5, 8, 18, 1) 100%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: var(--contact-inner-h);
  padding: 2rem clamp(1.25rem, 2vw, 2.25rem) 1.75rem;
  background: transparent;
  box-sizing: border-box;
}

.contact-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-transform: none;
}

.contact-lead {
  margin: 0 0 1.5rem;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  text-transform: none;
}

.contact-email i {
  font-size: 1.15rem;
  color: #fff;
}

.contact-email:hover {
  color: var(--out23-cyan);
}

.contact-info-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: auto;
}

.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.contact-social-icons a {
  display: block;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-social-icons img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-message-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.page-contact .contact-form textarea.form-control {
  flex: none;
  width: 100%;
  min-height: 0;
  height: auto;
  resize: none;
  margin-top: 0;
  padding: 0.35rem 0 0.65rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
}

.page-contact .contact-form textarea.form-control:focus {
  border-bottom-color: var(--out23-cyan);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.page-contact .contact-form .form-group {
  margin-bottom: 0;
}

.page-contact .contact-form .form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
}

.page-contact .contact-form .form-control {
  width: 100%;
  padding: 0.35rem 0 0.65rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.page-contact .contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.page-contact .contact-form .form-control:focus {
  outline: none;
  border-bottom-color: var(--out23-cyan);
  box-shadow: none;
}

.page-contact .contact-phone-input {
  color: var(--out23-cyan);
}

.contact-phone-row {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.contact-phone-country {
  position: relative;
  flex: 0 0 7.5rem;
}

.contact-phone-dial-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  min-height: 100%;
  padding: 0.55rem 0.75rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--out23-cyan);
  font-family: var(--font-orbitron);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.contact-phone-dial-trigger:hover,
.contact-phone-dial-trigger:focus {
  outline: none;
  border-bottom-color: var(--out23-cyan);
}

.contact-phone-dial-trigger .bi {
  font-size: 0.72rem;
  opacity: 0.85;
}

.contact-phone-country-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid #fff;
  border-radius: 16px;
  background: rgba(2, 8, 18, 0.98);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
}

.contact-phone-country-panel[hidden] {
  display: none;
}

.contact-phone-country-search {
  width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-poppins);
  font-size: 0.85rem;
}

.contact-phone-country-search:focus {
  outline: none;
  border-color: var(--out23-cyan);
}

.contact-phone-country-list {
  max-height: 220px;
  margin: 0;
  padding: 0.2rem 0;
  overflow-y: auto;
  list-style: none;
}

.contact-phone-country-option {
  padding: 0.65rem 0.85rem;
  color: var(--out23-cyan);
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
}

.contact-phone-country-option:hover,
.contact-phone-country-option.is-active {
  background: rgba(9, 255, 234, 0.12);
}

.contact-phone-country-empty {
  padding: 0.75rem 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-poppins);
  font-size: 0.82rem;
}

.contact-phone-row .contact-phone-input {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 640px) {
  .contact-phone-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-phone-country {
    flex-basis: auto;
  }

  .contact-phone-country-panel {
    width: 100%;
  }
}

.contact-subjects {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.contact-subjects legend {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: none;
  margin-bottom: 0.75rem;
  color: #fff;
  padding: 0;
}

.contact-subjects-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
}

.subject-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-transform: none;
}

.subject-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--out23-cyan);
}

.contact-send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 314px;
  height: 40px;
  margin: 1rem auto 0;
  padding: 0 1.75rem;
  border: 1px solid var(--out23-cyan);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: none;
}

.contact-send:hover {
  background: rgba(9, 255, 234, 0.1);
  color: var(--out23-cyan);
  transform: none;
}

.contact-partners {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

@media (max-width: 960px) {
  .contact-panel {
    height: auto;
    min-height: 0;
    padding: 1.25rem;
  }

  .contact-inner {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact-info {
    min-height: 280px;
  }

  .contact-form {
    min-height: 520px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-form textarea.form-control {
    flex: none;
    resize: vertical;
  }

  .contact-send {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .contact-subjects-options {
    flex-direction: column;
    align-items: flex-start;
  }
}


.page-auth .auth-split-visual {
  background: #000;
  padding: 2rem;
}
.page-auth .auth-split-visual img {
  max-width: min(100%, 480px);
  border: none;
  border-radius: 12px;
}
.page-auth .auth-title {
  font-family: var(--font-orbitron);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
}
.page-auth .auth-links {
  margin-top: 1rem;
  font-family: var(--font-poppins);
  font-size: 0.88rem;
}

.footer-col h4 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 1rem;
}

.footer-col-brand .footer-tagline {
  font-family: var(--font-poppins);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 260px;
}
.footer-link-muted {
  display: block;
  color: var(--out23-muted);
  opacity: 0.65;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-poppins);
}
.footer-col .meta {
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-home .home-game-info h3 { font-family: var(--font-orbitron); }

/* === HOME / GAMES / ABOUT SHARED CHROME (Figma pages) === */
.page-home,
.page-games,
.page-about,
.page-contact,
.page-info,
.page-auth,
.page-game {
  background: #000;
}

.page-home::before,
body.page-games::before,
body.page-about::before,
body.page-contact::before,
body.page-info::before,
body.page-auth::before,
body.page-game::before,
body.page-game-hints::before,
body.page-game-play::before {
  display: none;
}

.page-game-play {
  background: #000;
}

.page-game-hints {
  background: #000;
}

body.page-game-hints {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-game-hints .site-footer-extended {
  display: none;
}

.page-game-hints .game-hints-main {
  flex: 1 1 auto;
  width: 100%;
  padding: 0;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

.page-game-hints .game-hints-section {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
  border: none;
  border-radius: 0;
}

.page-game-hints .game-hints-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.page-game-hints .game-hints-panel {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.page-game-hints .game-hints-accordion {
  flex: 1 1 auto;
  min-height: 0;
}

.page-game-play .site-header {
  background: #000;
  border-bottom: 1px solid rgba(9, 255, 234, 0.15);
}

.page-home .site-header,
.page-games .site-header,
.page-about .site-header,
.page-contact .site-header,
.page-info .site-header,
.page-auth .site-header,
.page-game .site-header,
.page-game-hints .site-header,
.page-commercial-demo .site-header,
.page-account .site-header {
  background: #000;
  border-bottom: 1px solid rgba(9, 255, 234, 0.15);
}

body.page-commercial-demo {
  overflow-x: hidden;
  background: #000;
}

body.page-commercial-demo::before {
  display: none;
}

.commercial-demo-main {
  padding: 0.75rem 0 0;
  min-height: calc(100vh - var(--nav-h));
  background: #000;
}

.page-commercial-demo .commercial-demo-content .game-play-kicker {
  margin-bottom: 0.45rem;
}

.page-commercial-demo .commercial-demo-content .game-play-lead {
  margin-bottom: 0.75rem;
}

.page-home .main-nav a,
.page-games .main-nav a,
.page-about .main-nav a,
.page-contact .main-nav a,
.page-info .main-nav a,
.page-auth .main-nav a,
.page-game .main-nav a,
.page-account .main-nav a,
.page-home .nav-disabled,
.page-games .nav-disabled,
.page-about .nav-disabled,
.page-contact .nav-disabled,
.page-info .nav-disabled,
.page-auth .nav-disabled,
.page-game .nav-disabled,
.page-account .nav-disabled {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .lang-switch,
.page-games .lang-switch,
.page-about .lang-switch,
.page-contact .lang-switch,
.page-info .lang-switch,
.page-auth .lang-switch,
.page-game .lang-switch,
.page-account .lang-switch {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
}

.page-account .nav-user-trigger {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
}

.btn-nav-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  width: 150px;
  height: 40px;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none;
}

.btn-nav-outline:hover {
  border-color: var(--out23-cyan);
  color: var(--out23-cyan);
  transform: none;
}

.page-home .home-main,
.page-about .about-main,
.page-contact .contact-main,
.page-info .info-main,
.page-game .game-main {
  background: #000;
}

/* ─── Game detail (Figma GAME frame) ─── */
.page-game {
  --game-page-w: min(1390px, 72.4vw);
  --home-panel-gradient: linear-gradient(
    180deg,
    rgba(2, 11, 31, 0.38) 0%,
    rgba(2, 11, 31, 0.38) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.page-game-myth { --game-accent: #d9a412; --game-accent-glow: rgba(217, 164, 18, 0.42); }
.page-game-colossus { --game-accent: #7702ff; --game-accent-glow: rgba(119, 2, 255, 0.4); }
.page-game-mint-house { --game-accent: #09ffea; --game-accent-glow: rgba(9, 255, 234, 0.35); }
.page-game-last-step { --game-accent: #ff1919; --game-accent-glow: rgba(255, 25, 25, 0.38); }
.page-game-barbanegra { --game-accent: #cca22e; --game-accent-glow: rgba(204, 162, 46, 0.38); }
.page-game-el-camerino { --game-accent: #2ecc40; --game-accent-glow: rgba(46, 204, 64, 0.38); }
.page-game-zombie-lab { --game-accent: #2ecc40; --game-accent-glow: rgba(46, 204, 64, 0.38); }
.page-game-el-bar { --game-accent: #0a73eb; --game-accent-glow: rgba(10, 115, 235, 0.38); }
.page-game-default { --game-accent: #09ffea; --game-accent-glow: rgba(9, 255, 234, 0.32); }

.game-page {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 2rem;
}

.game-page-wrap,
.game-related-wrap,
.page-game .home-partners-wrap {
  width: var(--game-page-w);
  max-width: none;
  margin: 0 auto;
}

.game-page-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-page-panel {
  position: relative;
  border: 2px solid var(--game-accent, var(--out23-cyan));
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
  overflow: hidden;
  background:
    var(--home-panel-gradient),
    linear-gradient(180deg, #020b1f 0%, #000 100%);
  box-shadow: 0 0 28px rgba(9, 255, 234, 0.06);
}

.game-page-panel.is-highlighted,
.game-hero-panel.is-highlighted {
  border-color: rgba(10, 132, 255, 0.95);
  box-shadow:
    0 0 32px rgba(10, 115, 235, 0.45),
    inset 0 0 80px rgba(10, 115, 235, 0.12);
}

.game-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.game-hero-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  border-radius: 12px;
}

.game-hero-gallery .experience-badge-wrap {
  border-radius: 12px;
}

.game-hero-gallery .experience-badge {
  top: 26px;
  right: -30px;
  width: 168px;
  padding: 7px 0 7px 12px;
  font-size: 9.5px;
}

.game-hero-gallery .experience-badge--week {
  top: 28px;
  right: -36px;
  width: 198px;
  padding: 8px 0 8px 12px;
  font-size: 9.5px;
  letter-spacing: 0.035em;
}

.game-hero-main {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-hero-main:hover,
.game-hero-main:focus-visible {
  border-color: var(--game-accent, var(--out23-cyan));
  box-shadow: 0 0 24px var(--game-accent-glow, rgba(9, 255, 234, 0.22));
  outline: none;
}

.game-hero-main img {
  display: block;
  width: 100%;
  aspect-ratio: 580 / 326;
  object-fit: cover;
}

.game-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.game-hero-thumb {
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-hero-thumb.is-active,
.game-hero-thumb:hover,
.game-hero-thumb:focus-visible {
  border-color: var(--game-accent, var(--out23-cyan));
  outline: none;
}

.game-hero-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.game-hero-info {
  min-width: 0;
}

.game-hero-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.game-hero-title {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: clamp(1.75rem, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.game-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #ffd700;
  font-size: 0.95rem;
}

.game-hero-rating-count {
  margin-left: 0.35rem;
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.game-hero-stats {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.game-hero-stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.game-hero-stats i {
  color: var(--game-accent, var(--out23-cyan));
  font-size: 1.1rem;
}

.game-hero-actions {
  margin-bottom: 1.75rem;
}

.game-hero-price {
  margin: 0 0 0.85rem;
  font-family: var(--font-orbitron);
  font-size: 16px;
  font-weight: 700;
  color: var(--game-accent, var(--out23-cyan));
}

.game-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.game-hero-secure {
  margin: 0.75rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.game-hero-secure i {
  color: var(--game-accent, var(--out23-cyan));
}

.game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 1.5rem;
  border-radius: 10px;
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.25s ease;
}

button.game-btn {
  font: inherit;
}

.game-btn-buy {
  border: 1px solid var(--out23-cyan);
  background: var(--out23-cyan);
  color: #020b1f;
  box-shadow: 0 0 0 transparent;
}

.game-btn-buy:hover,
.game-btn-buy:focus-visible {
  background: #33fff0;
  border-color: #33fff0;
  color: #000;
  transform: translateY(-1px);
  box-shadow:
    0 0 24px var(--game-accent-glow, rgba(9, 255, 234, 0.45)),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

.game-btn-trailer,
.game-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}

.game-btn-trailer:hover,
.game-btn-outline:hover {
  border-color: var(--game-accent, var(--out23-cyan));
  color: var(--game-accent, var(--out23-cyan));
  transform: none;
}

.game-inline-title,
.game-panel-title {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--game-accent, var(--out23-cyan));
}

.game-panel-title.center {
  text-align: center;
}

.game-hero-story-body {
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.game-hero-story-body p {
  margin: 0 0 0.85rem;
}

.game-hero-story-body p:last-child {
  margin-bottom: 0;
}

.game-data-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.game-data-item {
  text-align: center;
}

.game-data-item i {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  color: var(--game-accent, var(--out23-cyan));
}

.game-data-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.game-data-value {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.game-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.game-reviews-head .game-panel-title {
  margin-bottom: 0;
}

.game-reviews-summary {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.game-reviews-mock-note {
  margin: -0.35rem 0 1rem;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.game-review-form-panel {
  margin: 0 0 1.25rem;
}

.game-review-experience-form {
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(9, 255, 234, 0.55);
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(9, 255, 234, 0.05), transparent 55%),
    rgba(2, 8, 18, 0.92);
}

.game-review-experience-form--account {
  max-width: 640px;
}

.game-review-experience-title {
  margin: 0 0 1rem;
  font-family: var(--font-orbitron);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
  color: #fff;
}

.game-review-experience-divider {
  height: 1px;
  margin: 0 0 1.35rem;
  background: rgba(9, 255, 234, 0.55);
}

.game-review-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.game-review-rate-label {
  font-family: var(--font-orbitron);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.game-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.game-review-star {
  position: relative;
  cursor: pointer;
  line-height: 1;
}

.game-review-star input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.game-review-star .bi-star {
  font-size: 1.35rem;
  color: var(--review-star-idle);
  transition: color 0.18s ease;
}

.game-review-star:has(input:checked) .bi-star,
.game-review-star:has(~ .game-review-star input:checked) .bi-star,
.game-review-stars:hover .game-review-star:hover .bi-star,
.game-review-stars:hover .game-review-star:has(~ .game-review-star:hover) .bi-star {
  color: var(--review-star-gold);
}

.game-review-star:has(input:checked) .bi-star::before,
.game-review-star:has(~ .game-review-star input:checked) .bi-star::before,
.game-review-stars:hover .game-review-star:hover .bi-star::before,
.game-review-stars:hover .game-review-star:has(~ .game-review-star:hover) .bi-star::before {
  content: "\f586";
}

.game-review-comment-label {
  display: block;
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-orbitron);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.game-review-comment-input {
  width: 100%;
  min-height: 150px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(9, 255, 234, 0.55);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--font-poppins);
  font-size: 0.92rem;
  line-height: 1.5;
  resize: vertical;
}

.game-review-comment-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.game-review-comment-input:focus {
  outline: none;
  border-color: var(--out23-cyan);
  box-shadow: 0 0 0 1px rgba(9, 255, 234, 0.25);
}

.game-review-send-btn {
  display: block;
  min-width: 150px;
  margin: 1.35rem auto 0;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(9, 255, 234, 0.55);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.game-review-send-btn:hover {
  background: rgba(9, 255, 234, 0.12);
  border-color: var(--out23-cyan);
  color: var(--out23-cyan);
}

.game-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.game-review-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}

.game-review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 255, 234, 0.12);
  border: 1px solid rgba(9, 255, 234, 0.35);
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  color: var(--out23-cyan);
}

.game-review-author {
  margin: 0 0 0.15rem;
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  color: var(--game-accent, var(--out23-cyan));
}

.game-review-short {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.game-review-text {
  margin: 0.35rem 0 0;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.game-review-score {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  color: #ffd700;
  white-space: nowrap;
}

.game-all-comments {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
}

.game-related {
  padding: 0 0 2rem;
}

.game-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 250px));
  justify-content: space-between;
  gap: clamp(0.75rem, 3vw, 60px);
  max-width: 1182px;
  margin: 0 auto 1.5rem;
}

.game-related-cta {
  display: flex;
  justify-content: center;
}

.game-partners {
  padding-bottom: 2.5rem;
}

.page-game .home-partners-wrap {
  width: var(--game-page-w);
}

body.game-gallery-open { overflow: hidden; }

.game-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.game-gallery-modal[hidden] { display: none; }

.game-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

.game-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 2rem));
  padding: 1.25rem;
  border: 2px solid var(--game-accent, var(--out23-cyan));
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(2, 11, 31, 0.96) 0%, rgba(0, 0, 0, 0.98) 100%);
  box-shadow: 0 0 40px var(--game-accent-glow, rgba(9, 255, 234, 0.18));
  box-sizing: border-box;
}

.game-gallery-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.game-gallery-close:hover,
.game-gallery-close:focus-visible {
  border-color: var(--game-accent, var(--out23-cyan));
  color: var(--game-accent, var(--out23-cyan));
  outline: none;
}

.game-gallery-title {
  margin: 0 2.5rem 0.85rem 0;
  font-family: var(--font-orbitron);
  font-size: clamp(1rem, 2.2vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.game-gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1180 / 664;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.game-gallery-slide {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.game-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.game-gallery-nav:hover:not(:disabled),
.game-gallery-nav:focus-visible:not(:disabled) {
  border-color: var(--game-accent, var(--out23-cyan));
  color: var(--game-accent, var(--out23-cyan));
  outline: none;
}

.game-gallery-nav:disabled { opacity: 0.35; cursor: default; }
.game-gallery-prev { left: 0.85rem; }
.game-gallery-next { right: 0.85rem; }

.game-gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.game-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.game-gallery-dot.is-active,
.game-gallery-dot:hover {
  border-color: var(--game-accent, var(--out23-cyan));
  background: var(--game-accent, var(--out23-cyan));
}

.game-trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.game-trailer-modal[hidden] {
  display: none;
}

.game-trailer-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 2rem));
  padding: 1.25rem;
  border: 2px solid var(--game-accent, var(--out23-cyan));
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(2, 11, 31, 0.96) 0%, rgba(0, 0, 0, 0.98) 100%);
  box-shadow: 0 0 40px var(--game-accent-glow, rgba(9, 255, 234, 0.18));
  box-sizing: border-box;
}

.game-trailer-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 540px);
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

@media (max-width: 1100px) {
  .game-hero-grid {
    grid-template-columns: 1fr;
  }

  .game-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .game-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

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

  .game-hero-buttons,
  .game-btn {
    width: 100%;
    min-width: 0;
  }

  .game-related-grid {
    grid-template-columns: 1fr;
  }

  .game-review-rate-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .game-review-experience-form {
    padding: 1.25rem 1rem 1rem;
  }
}

@media (max-width: 560px) {
  .page-game {
    --game-page-w: calc(100vw - 1.5rem);
  }

  .game-review-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .game-review-score {
    grid-column: 2;
    justify-self: start;
  }
}

.game-checkout-options {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.game-checkout-note {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

body.game-checkout-modal-open {
  overflow: hidden;
}

.game-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.game-checkout-modal[hidden] {
  display: none;
}

.game-checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.game-checkout-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 2rem));
}

.game-checkout-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.game-checkout-modal-panel {
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(9, 255, 234, 0.35);
  background:
    radial-gradient(circle at 20% 0%, rgba(9, 255, 234, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.98), rgba(2, 6, 13, 1));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.game-checkout-modal-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.game-checkout-modal-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-orbitron);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.game-checkout-modal-price {
  margin: 0 0 1.25rem;
  font-family: var(--font-orbitron);
  font-size: 1.35rem;
  color: var(--out23-cyan);
}

.game-checkout-modal-options {
  display: grid;
  gap: 0.85rem;
}

.game-checkout-modal-form {
  margin: 0;
}

.game-checkout-modal-option {
  width: 100%;
  min-height: 72px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-align: left;
}

.game-checkout-modal-option-label {
  font-family: var(--font-orbitron);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.game-checkout-modal-option-note {
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.82;
  text-transform: none;
  letter-spacing: 0;
}

.game-play-main,
.game-hints-main,
.game-launch-main {
  padding: 2rem 0 3rem;
}

.game-launch-main {
  padding-top: calc(var(--nav-h) + 1rem);
  min-height: calc(100vh - var(--nav-h));
  background: #000;
}

.game-launch-section {
  width: min(1400px, calc(100vw - 2rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: calc(100vh - var(--nav-h) - 4rem);
}

.game-launch-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}

.game-launch-back {
  color: var(--out23-cyan);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.game-launch-back:hover {
  text-decoration: underline;
}

.game-launch-toolbar-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.game-launch-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.game-launch-lead {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-poppins);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.game-launch-lead strong {
  color: var(--out23-cyan);
  font-weight: 700;
}

.game-launch-frame-wrap {
  flex: 1;
  min-height: 60vh;
  border: 1px solid rgba(9, 255, 234, 0.35);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 28px rgba(9, 255, 234, 0.06);
}

.game-launch-frame {
  display: block;
  width: 100%;
  height: min(78vh, 900px);
  min-height: 60vh;
  border: 0;
  background: #000;
}

.game-launch-section--manual {
  max-width: 720px;
}

.game-launch-manual-card {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--out23-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.game-launch-manual-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  color: var(--out23-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-launch-manual-code {
  margin: 0 0 1rem;
  font-family: var(--font-rajdhani);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--out23-cyan);
}

.game-launch-manual-copy {
  margin-bottom: 1.25rem;
}

.game-launch-manual-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-poppins);
  font-size: 0.92rem;
  line-height: 1.55;
}

.game-launch-manual-steps li + li {
  margin-top: 0.45rem;
}

.game-launch-open-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  margin-bottom: 1rem;
}

.game-hints-main {
  background: #000;
}

.game-play-wrap,
.game-hints-wrap {
  width: min(var(--game-page-w, 980px), calc(100vw - 2rem));
  margin: 0 auto;
}

.game-play-hero,
.game-hints-section {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 255, 234, 0.35);
}

.game-play-hero {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 255, 234, 0.35);
  background: transparent;
}

.game-play-hero .game-play-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 580 / 326;
  min-height: 240px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.8vw, 2rem) clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 2px solid var(--game-accent, var(--out23-cyan));
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)),
    var(--game-play-bg, none) center/cover no-repeat;
  box-shadow: 0 0 28px rgba(9, 255, 234, 0.06);
}

.game-hints-section {
  min-height: 520px;
  background: #060a1a center/cover no-repeat;
  background-image:
    linear-gradient(180deg, rgba(6, 10, 36, 0.55), rgba(2, 3, 10, 0.82)),
    var(--game-hints-bg, none);
}

.game-hints-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.game-hints-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
}

.game-play-panel,
.game-hints-panel {
  max-width: 820px;
  margin: 0 auto;
}

.game-play-kicker {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--out23-cyan);
}

.game-play-title {
  margin: 0 0 0.85rem;
}

.game-play-lead,
.game-play-note {
  margin: 0 0 1rem;
  font-family: var(--font-poppins);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.game-play-access-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(9, 255, 234, 0.35);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.game-play-access-code span {
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.game-play-access-code strong {
  font-family: var(--font-orbitron);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--out23-cyan);
}

.game-play-access-code--launch {
  margin: 0;
  padding: 1rem 1.15rem;
}

.game-play-access-code--launch strong {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.game-play-access-code--compact {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
}

.game-play-access-code--compact strong {
  font-size: 0.95rem;
}

.game-access-code-copy {
  margin-left: auto;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(9, 255, 234, 0.45);
  border-radius: 999px;
  background: rgba(9, 255, 234, 0.08);
  color: var(--out23-cyan);
  font-family: var(--font-orbitron);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.game-access-code-copy:hover {
  background: rgba(9, 255, 234, 0.16);
}

.game-access-code-paste {
  margin-left: 0;
}

.game-launch-access-status {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  color: var(--out23-cyan);
}

.game-launch-access {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.game-launch-access-hint {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.game-play-actions,
.game-hints-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.game-play-links-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.game-play-links-secondary a {
  font-family: var(--font-poppins);
  font-size: 0.85rem;
  color: var(--out23-cyan);
  text-decoration: none;
}

.game-play-section {
  padding: 0;
}

@media (max-width: 760px) {
  .game-play-actions,
  .game-hints-actions {
    flex-direction: column;
  }

  .game-play-actions .game-btn,
  .game-hints-actions .game-btn {
    width: 100%;
  }
}

.site-header-minimal .header-inner {
  flex-wrap: nowrap;
}

.site-header-minimal .header-actions {
  margin-left: auto;
}

@media (max-width: 640px) {
  .site-header-minimal .brand img {
    width: 160px;
    height: 72px;
  }

  .site-header-minimal .btn-nav-outline {
    width: auto;
    min-width: 120px;
    padding: 0 0.85rem;
    font-size: 12px;
  }
}

.commercial-demo-wrap {
  width: min(var(--game-page-w, 980px), calc(100vw - 2rem));
  margin: 0 auto;
}

.commercial-demo-section {
  padding: 0 1rem;
}

.commercial-demo-content {
  max-width: 860px;
  margin: 0 auto;
}

.commercial-demo-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-orbitron);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-demo-title-prefix {
  color: #fff;
}

.commercial-demo-title-sep {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.commercial-demo-title-game {
  font-size: clamp(1.35rem, 3.4vw, 2rem);
}

.commercial-demo-video {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - var(--nav-h) - 9.5rem);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.commercial-demo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.commercial-demo-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.commercial-demo-gallery-grid {
  display: grid;
  gap: 0.65rem;
}

.commercial-demo-gallery-grid--3x2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commercial-demo-gallery-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commercial-demo-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.commercial-demo-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.page-commercial-hints .commercial-hints-main {
  padding-top: calc(var(--nav-h) + 1.5rem);
}

@media (max-width: 760px) {
  .commercial-demo-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .commercial-demo-title-sep {
    display: none;
  }

  .commercial-demo-gallery-grid--3x2,
  .commercial-demo-gallery-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

.game-hints-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.game-hints-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(9, 255, 234, 0.06));
}

.game-hints-score-ring {
  --hints-score-pct: 100%;
  position: relative;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 12, 18, 0.96) 58%, transparent 59%),
    conic-gradient(
      var(--game-accent, var(--out23-cyan)) calc(var(--hints-score-pct) * 1%),
      rgba(255, 255, 255, 0.12) 0
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.game-hints-score-value {
  font-family: var(--font-orbitron);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.game-hints-score-unit {
  position: absolute;
  bottom: 18px;
  font-family: var(--font-orbitron);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.game-hints-score-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.game-hints-score-label {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--game-accent, var(--out23-cyan));
}

.game-hints-score-summary,
.game-hints-score-message,
.game-hints-score-note {
  margin: 0;
  font-family: var(--font-poppins);
  line-height: 1.45;
}

.game-hints-score-summary {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.game-hints-score-message {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.game-hints-score-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.game-hints-step.is-viewed .game-hints-step-summary {
  opacity: 0.82;
}

.game-hints-step.is-viewed .game-hints-step-badge {
  border-color: rgba(9, 255, 234, 0.45);
  color: var(--game-accent, var(--out23-cyan));
}

.game-hints-lang-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-hints-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.game-hints-lang-btn:hover,
.game-hints-lang-btn.is-active {
  border-color: var(--game-accent, var(--out23-cyan));
  color: var(--game-accent, var(--out23-cyan));
  background: rgba(9, 255, 234, 0.08);
}

.game-hints-disclaimer {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.game-hints-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.game-hints-chapter {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-hints-chapter[open] {
  border-color: color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 55%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 18%, transparent);
}

.game-hints-chapter-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  list-style: none;
}

.game-hints-chapter-summary::-webkit-details-marker {
  display: none;
}

.game-hints-chapter-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 18%, transparent);
  color: var(--game-accent, var(--out23-cyan));
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  font-weight: 700;
}

.game-hints-chapter-title {
  font-family: var(--font-orbitron);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.game-hints-chapter-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--game-accent, var(--out23-cyan));
  border-bottom: 2px solid var(--game-accent, var(--out23-cyan));
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.game-hints-chapter[open] .game-hints-chapter-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.game-hints-chapter-body {
  padding: 0 1rem 1rem;
}

.game-hints-chapter-media {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.game-hints-chapter-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.25);
}

.game-hints-steps {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.game-hints-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.game-hints-step--solution {
  border-color: color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 35%, transparent);
  background: color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 8%, rgba(0, 0, 0, 0.2));
}

.game-hints-step-summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  list-style: none;
}

.game-hints-step-summary::-webkit-details-marker {
  display: none;
}

.game-hints-step-badge {
  flex: 0 0 auto;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--game-accent, var(--out23-cyan));
  font-family: var(--font-orbitron);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-hints-step--solution .game-hints-step-badge {
  background: color-mix(in srgb, var(--game-accent, var(--out23-cyan)) 22%, transparent);
  color: #fff;
}

.game-hints-step-title {
  font-family: var(--font-poppins);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.game-hints-step-body {
  padding: 0 0.85rem 0.9rem;
  font-family: var(--font-poppins);
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.game-hints-step-media {
  margin: 0 0 0.85rem;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.game-hints-step-media img {
  display: block;
  width: 100%;
  height: auto;
}

.game-hints-footer-links {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 760px) {
  .game-hints-score {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .game-hints-chapter-summary {
    grid-template-columns: auto 1fr;
  }

  .game-hints-chapter-chevron {
    display: none;
  }
}
