: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;
  --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: 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: #cca22e; }
.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-social-icons .footer-social-link-tiktok img {
  filter: none;
}

.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-collage-w: min(1350px, 70.3vw);
  --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;
}

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

.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: 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, 520px) minmax(0, var(--games-hero-collage-w));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.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 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.games-hero-visual-frame {
  width: var(--games-hero-collage-w);
  max-width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

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

.games-main {
  background: #000;
}

.games-catalog {
  padding: 1rem 0 3rem;
}

.games-catalog-panel {
  position: relative;
  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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.45rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  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 {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--out23-cyan);
  pointer-events: auto;
}

.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: #cca22e; }
.games-row-barbanegra:hover .games-row-thumb { box-shadow: 0 0 22px rgba(204, 162, 46, 0.35); }

.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-barbanegra {
  border-color: #cca22e;
  box-shadow: 0 0 18px rgba(204, 162, 46, 0.25);
}

.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-barbanegra: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) {
  .games-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .games-row {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }

  .games-row-main {
    gap: 0.85rem;
  }

  .games-row-title {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .games-row-stats {
    gap: 0.5rem 0.85rem;
  }

  .games-row-stat {
    font-size: 11px;
  }

  .games-row-play {
    right: 1rem;
    bottom: 1rem;
    min-width: 72px;
    padding: 0.4rem 0.85rem;
  }
}

.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;
  filter:
    drop-shadow(0 0 1px rgba(0, 245, 255, 1))
    drop-shadow(0 0 5px rgba(0, 232, 255, 1))
    drop-shadow(0 0 12px rgba(0, 210, 255, 0.95))
    drop-shadow(0 0 24px rgba(0, 180, 255, 0.75))
    drop-shadow(0 0 40px rgba(0, 140, 255, 0.5));
}

.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;
}

@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: space-between;
  gap: 1.5rem;
  min-height: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.94);
  box-sizing: border-box;
}

.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: flex-end;
  justify-content: space-between;
  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-social-icons .contact-social-link-tiktok img {
  filter: none;
}

.contact-badge {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(0, 245, 255, 1))
    drop-shadow(0 0 8px rgba(0, 232, 255, 0.95))
    drop-shadow(0 0 18px rgba(0, 210, 255, 0.7));
}

.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-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-auth,
.page-game {
  background: #000;
}

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

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

.page-home .main-nav a,
.page-games .main-nav a,
.page-about .main-nav a,
.page-contact .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-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-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-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;
}

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

.game-btn-buy:hover {
  background: #33fff0;
  border-color: #33fff0;
  color: #000;
  transform: none;
}

.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(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.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-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;
  }
}

@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;
  }
}

