:root {
  --bg: #050813;
  --bg-2: #08111f;
  --panel: rgba(10, 14, 28, 0.78);
  --panel-2: rgba(7, 10, 20, 0.94);
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(84, 241, 255, 0.28);
  --text: #eef3ff;
  --muted: #a4afcb;
  --primary: #67f0ff;
  --primary-dark: #37dff5;
  --primary-light: #90fbff;
  --accent: #ff38b8;
  --success: #4df3a0;
  --warning: #ffd45d;
  --danger: #ff5c79;
  --radius: 16px;
  --shadow: 0 18px 60px rgba(0,0,0,0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 0%, rgba(62, 231, 255, 0.10), transparent 22%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(180deg, #050813 0%, #08111f 100%);
  background-size: auto, 34px 34px, 34px 34px, auto;
  color: var(--text);
  font-family: "Poppins", "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 36px), 1280px);
  margin: 0 auto;
}

.glass-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 8, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 148px;
  height: auto;
}

.back-button,
.btn-download,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.back-button:hover,
.btn-download:hover,
.copy-btn:hover {
  transform: translateY(-1px);
}

.back-button,
.btn-download {
  background: linear-gradient(90deg, #697cff, #4ee9ff);
  color: #08101d;
  box-shadow: 0 14px 30px rgba(78,233,255,0.16);
}

.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs li {
  position: relative;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--text);
}

.game-details {
  padding: 56px 0 72px;
}

.game-details-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.game-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.game-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.game-info-card {
  padding: 28px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.game-info-card h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.game-info-card .accent {
  background: linear-gradient(90deg, #8fa0ff, #43d9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-box {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-box .label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4dcff;
}

.stat-box .value {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.status-value,
.status-value.checked {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.status-value.checked {
  color: var(--success);
}

.status-stack {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status-row:last-child {
  border-bottom: none;
}

.status-label {
  font-weight: 700;
}

.game-description {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.game-description h3,
.password-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
}

.game-description p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.password-section {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(103, 240, 255, 0.08);
  border: 1px solid rgba(103, 240, 255, 0.16);
}

.password-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

#password-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  color: var(--primary);
  word-break: break-all;
}

.copy-btn {
  margin-left: auto;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}

.btn-download {
  width: 100%;
  margin-top: 24px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.25s ease;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(103, 240, 255, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-content i {
  color: var(--success);
}

.recommended {
  padding: 12px 0 72px;
}

.recommended h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recommended .game-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.recommended .game-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.recommended .game-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.recommended .game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended .game-card-content {
  padding: 18px;
}

.recommended .game-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.recommended .game-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(5,8,18,0.72);
}

.footer-inner {
  padding: 26px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .game-details-grid,
  .recommended-grid {
    grid-template-columns: 1fr;
  }

  .game-image img {
    min-height: 360px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu-btn span {
    width: 16px;
    height: 2px;
    background: white;
    border-radius: 999px;
  }

  .status-row,
  .password-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn,
  .btn-download,
  .back-button {
    width: 100%;
  }
}
.game-details {
  padding: 42px 0 64px;
}

.game-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.game-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.78), rgba(7, 10, 20, 0.94));
  padding: 18px;
}

.game-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.game-info-card {
  padding: 28px;
  min-height: 100%;
}

.game-info-card h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.stats-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-box {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-box .value {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.status-stack {
  margin-top: 22px;
  display: grid;
  gap: 0;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status-row:last-child {
  border-bottom: none;
}

.game-description {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.game-description p {
  margin: 0;
  color: #a4afcb;
  font-size: 15px;
  line-height: 1.82;
  max-width: 58ch;
}

.password-section {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(103, 240, 255, 0.08);
  border: 1px solid rgba(103, 240, 255, 0.16);
}

.password-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

#password-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.4;
  color: #67f0ff;
  word-break: break-all;
}

.copy-btn {
  margin-left: auto;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #eef3ff;
}

.btn-download {
  width: 100%;
  margin-top: 24px;
}

footer {
  margin-top: 16px;
}

.footer-inner {
  padding: 22px 0;
}

@media (max-width: 980px) {
  .game-details-grid,
  .recommended-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .status-row,
  .password-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn,
  .btn-download,
  .back-button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .game-details {
    padding: 28px 0 48px;
  }

  .game-image,
  .game-info-card {
    padding: 14px;
  }

  .game-info-card h1 {
    font-size: 32px;
  }
}
footer {
  margin-top: 40px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(
    180deg,
    rgba(8, 12, 26, 0.6),
    rgba(5, 8, 18, 0.9)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(103, 240, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-bottom p:hover {
  color: var(--primary);
  opacity: 1;
}
/* ===== PRODUCT PAGE 2026 OVERRIDE ===== */

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(62, 231, 255, 0.10), transparent 22%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(180deg, #050813 0%, #08111f 100%);
  background-size: auto, 34px 34px, 34px 34px, auto;
  color: #eef3ff;
}

/* header */
header {
  background: rgba(5, 8, 18, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

header .container {
  min-height: 76px;
}

.logo img {
  width: 148px;
  height: auto;
}

.desktop-only.btn.btn-primary {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #697cff, #4ee9ff);
  color: #08101d;
  box-shadow: 0 14px 30px rgba(78,233,255,0.16);
  border: none;
}

/* breadcrumbs */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

.breadcrumbs ul {
  gap: 22px;
}

.breadcrumbs li {
  color: #a4afcb;
  font-size: 14px;
}

.breadcrumbs li a {
  color: #eef3ff;
}

.breadcrumbs li:not(:last-child)::after {
  color: #7f8bb0;
}

/* main spacing */
.game-details {
  padding: 42px 0 56px;
}

/* layout */
.game-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 26px;
  align-items: start;
}

/* left image card */
.game-image {
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.78), rgba(7, 10, 20, 0.94));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: 18px;
  overflow: hidden;
}

.game-details-grid .game-image img,
.game-image img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  min-height: 0 !important;
}

/* right card */
.game-info-card {
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.78), rgba(7, 10, 20, 0.94));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: 28px;
  min-height: 100%;
}

.game-info-card h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #eef3ff;
}

/* status / rating / downloads */
.game-status,
.game-rating {
  margin-top: 14px;
}

.status-item,
.game-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}

.status-label {
  font-size: 15px;
  font-weight: 700;
  color: #eef3ff;
}

.status-value {
  color: #cfd7f6;
  font-size: 15px;
  font-weight: 700;
}

.status-value.checked {
  color: #4df3a0;
}

.status-value i,
.stars i {
  margin-left: 4px;
}

.stars {
  color: #ffd45d;
  font-size: 15px;
  font-weight: 800;
}

/* cleaner separators */
.game-description {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.game-description h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #eef3ff;
}

.game-description p {
  margin: 0;
  color: #a4afcb;
  font-size: 15px;
  line-height: 1.82;
  max-width: 58ch;
}

/* password block */
.password-section {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(103, 240, 255, 0.08);
  border: 1px solid rgba(103, 240, 255, 0.16);
}

.password-section .status-label {
  display: block;
  margin-bottom: 12px;
}

.password-container {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

#password-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.4;
  color: #67f0ff;
  word-break: break-all;
}

.copy-btn {
  margin-left: auto;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: #eef3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.copy-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 241, 255, 0.28);
  background: rgba(255,255,255,0.05);
}

/* download button */
.btn-download.btn.btn-primary,
.btn.btn-primary.btn-download {
  width: 100%;
  margin-top: 24px;
  min-height: 54px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #697cff, #4ee9ff);
  color: #08101d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(78,233,255,0.16);
}

/* footer */
footer {
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(8, 12, 26, 0.6), rgba(5, 8, 18, 0.9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(103, 240, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #a4afcb;
}

/* mobile */
@media (max-width: 980px) {
  .game-details-grid {
    grid-template-columns: 1fr;
  }

  .game-image {
    padding: 14px;
  }

  .game-info-card {
    padding: 22px;
  }
}

@media (max-width: 820px) {
  .status-item,
  .game-rating,
  .password-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn {
    margin-left: 0;
    width: 100%;
  }

  .btn-download.btn.btn-primary,
  .desktop-only.btn.btn-primary {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(calc(100% - 24px), 1280px);
  }

  .game-details {
    padding: 28px 0 42px;
  }

  .game-info-card h1 {
    font-size: 34px;
  }

  .game-description h3 {
    font-size: 20px;
  }
}
/* =========================
   PRODUCT PAGE 2026 REBUILD
   ========================= */

:root {
  --page-bg: #050813;
  --page-bg-2: #08111f;
  --page-panel: rgba(9, 14, 28, 0.78);
  --page-panel-2: rgba(7, 10, 20, 0.94);
  --page-line: rgba(255,255,255,0.06);
  --page-line-strong: rgba(84,241,255,0.22);
  --page-text: #eef3ff;
  --page-muted: #9eabc9;
  --page-primary: #67f0ff;
  --page-primary-2: #7f8fff;
  --page-success: #4df3a0;
  --page-warning: #ffd45d;
  --page-radius: 18px;
  --page-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

/* base */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", "Inter", "Montserrat", sans-serif;
  color: var(--page-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(62,231,255,0.10), transparent 22%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-2) 100%);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.container {
  width: min(calc(100% - 36px), 1280px);
  margin: 0 auto;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 18, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 250px;
  height: auto;
  display: block;
}

/* ровная кнопка exit */
.desktop-only.btn.btn-primary,
a.btn.btn-primary.desktop-only {
  min-height: 50px;
  height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #6f7dff, #53dbff);
  border: none;
  color: #08101d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(83,219,255,0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.desktop-only.btn.btn-primary:hover,
a.btn.btn-primary.desktop-only:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs li {
  position: relative;
  font-size: 14px;
  color: var(--page-muted);
  letter-spacing: 0.01em;
}

.breadcrumbs li a {
  color: var(--page-text);
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -14px;
  color: #7d89ad;
}

/* main section */
.game-details {
  padding: 40px 0 48px;
  overflow: hidden;
}

.game-details .container {
  overflow: hidden;
}

.game-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: 26px;
  align-items: start;
  overflow: hidden;
}

/* left card */
.game-image {
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--page-panel), var(--page-panel-2));
  border: 1px solid var(--page-line);
  box-shadow: var(--page-shadow);
}

.game-details-grid .game-image img,
.game-image img {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  filter: saturate(0.98) contrast(1.01);
}

/* right card */
.game-info-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--page-panel), var(--page-panel-2));
  border: 1px solid var(--page-line);
  box-shadow: var(--page-shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: none !important;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.game-info-card:hover {
  transform: none !important;
  border-color: var(--page-line-strong);
}

.game-info-card h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--page-text);
  text-wrap: balance;
}

/* rows */
.game-status,
.game-rating {
  margin-top: 10px;
}

.status-item,
.game-rating {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
}

.status-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--page-text);
  letter-spacing: -0.01em;
}

/* icons via CSS */
.game-status .status-label::before,
.game-rating > .status-label::before,
.game-status + .game-status .status-label::before {
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  text-align: center;
  color: var(--page-primary);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.game-status .status-label::before {
  content: "\f058"; /* check-circle */
}

.game-rating > .status-label::before {
  content: "\f005"; /* star */
}

.game-status + .game-status .status-label::before {
  content: "\f019"; /* download */
}

/* value side */
.status-value,
.status-value.checked,
.stars {
  justify-self: end;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.status-value {
  color: #d9e1ff;
}

.status-value.checked {
  color: var(--page-success);
}

.stars {
  color: var(--page-warning);
}

.status-value i,
.stars i {
  margin-left: 6px;
}

/* desc */
.game-description {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.game-description h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--page-text);
}

.game-description p {
  margin: 0;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.82;
  max-width: 58ch;
}

/* password */
.password-section {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(103,240,255,0.08), rgba(103,240,255,0.04));
  border: 1px solid rgba(103,240,255,0.14);
}

.password-section .status-label {
  display: block;
  margin-bottom: 12px;
}

.password-section .status-label::before {
  content: "\f084";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--page-primary);
  margin-right: 8px;
}

.password-container {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

#password-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.4;
  color: var(--page-primary);
  word-break: break-all;
}

.copy-btn {
  margin-left: auto;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--page-text);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.copy-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(103,240,255,0.18);
  background: rgba(255,255,255,0.06);
}

/* download button */
.btn-download.btn.btn-primary,
.btn.btn-primary.btn-download {
  width: 100%;
  margin-top: 24px;
  min-height: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(90deg, #6f7dff, #53dbff);
  border: none;
  color: #08101d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(83,219,255,0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.btn-download.btn.btn-primary:hover,
.btn.btn-primary.btn-download:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* footer */
footer {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(8, 12, 26, 0.6), rgba(5, 8, 18, 0.9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(103,240,255,0.08), transparent 60%);
  pointer-events: none;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--page-muted);
}

/* mobile */
@media (max-width: 980px) {
  .game-details-grid {
    grid-template-columns: 1fr;
  }

  .game-info-card h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .status-item,
  .game-rating,
  .password-container {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .status-value,
  .status-value.checked,
  .stars {
    justify-self: start;
  }

  .copy-btn,
  .btn-download,
  .desktop-only.btn.btn-primary {
    width: 100%;
  }

  .password-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(calc(100% - 24px), 1280px);
  }

  .game-details {
    padding: 28px 0 42px;
  }

  .game-image,
  .game-info-card {
    padding: 14px;
  }

  .game-info-card h1 {
    font-size: 36px;
  }

  .game-description h3 {
    font-size: 18px;
  }
}
/* thumbnails под картинкой */
.image-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.image-thumbs img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);

  cursor: pointer;
  transition: all 0.25s ease;
}

/* hover эффект */
.image-thumbs img:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(103,240,255,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
footer {
  background: transparent !important;
  border-top: none;
  box-shadow: none;
  padding: 30px 0;
  margin-top: 60px;
}

/* текст */
.footer-bottom {
  text-align: center;
  opacity: 0.6;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* текст цвет под стиль */
.footer-bottom p {
  color: rgba(255,255,255,0.5);
}
section,
.game-details,
.container {
  background: transparent !important;
}
body {
  background:
    radial-gradient(circle at 80% 20%, rgba(80,180,255,0.12), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(120,80,255,0.12), transparent 40%),
    #05070d;
}

/* grid поверх всего */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
footer {
  background: transparent !important;
  border: none;
  margin-top: 100px;
  padding: 40px 0 20px;
  position: relative;
  z-index: 1;
}

/* плавное растворение сверху (ВАЖНО 🔥) */
footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #05070d);
  pointer-events: none;
}
.footer-bottom {
  text-align: center;
  opacity: 0.5;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
}