.pgw-game-page {
  --pgw-bg: #f6f8fc;
  --pgw-card: #ffffff;
  --pgw-card-soft: #f9fbff;
  --pgw-text: #162033;
  --pgw-muted: #61708a;
  --pgw-line: #dfe6f2;
  --pgw-accent: #315efb;
  --pgw-accent-soft: #ebf1ff;
  --pgw-shadow: 0 16px 44px rgba(22, 32, 51, 0.08);
  background: var(--pgw-bg);
  color: var(--pgw-text);
}

.pgw-game-page * {
  box-sizing: border-box;
}

.pgw-game-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.pgw-game-hero {
  background:
    radial-gradient(circle at top right, rgba(49, 94, 251, 0.14), transparent 34%),
    linear-gradient(180deg, #eef4ff 0%, #f6f8fc 100%);
  padding: 24px 0 28px;
}

.pgw-game-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--pgw-muted);
  margin-bottom: 18px;
}

.pgw-game-breadcrumb a {
  color: var(--pgw-muted);
  text-decoration: none;
}

.pgw-game-breadcrumb a:hover {
  color: var(--pgw-accent);
}

.pgw-game-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.pgw-game-copy,
.pgw-game-visual-card,
.pgw-game-intro-card,
.pgw-game-feature-card,
.pgw-game-text-card,
.pgw-game-side-card,
.pgw-game-bonus-card,
.pgw-game-related-card,
.pgw-game-empty-card,
.pgw-game-faq-item {
  background: var(--pgw-card);
  border: 1px solid var(--pgw-line);
  border-radius: 24px;
  box-shadow: var(--pgw-shadow);
}

.pgw-game-copy {
  padding: 22px;
}

.pgw-game-kicker,
.pgw-game-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--pgw-accent-soft);
  color: var(--pgw-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pgw-game-title {
  margin: 14px 0 10px;
  font-size: 31px;
  line-height: 1.14;
}

.pgw-game-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--pgw-muted);
}

.pgw-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pgw-game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}

.pgw-game-btn-primary {
  background: var(--pgw-accent);
  color: #fff;
}

.pgw-game-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(49, 94, 251, 0.22);
}

.pgw-game-btn-secondary {
  background: #fff;
  color: var(--pgw-text);
  border: 1px solid var(--pgw-line);
}

.pgw-game-btn-secondary:hover {
  transform: translateY(-1px);
  border-color: #c9d6eb;
}

.pgw-game-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.pgw-game-point {
  padding: 14px;
  border-radius: 16px;
  background: var(--pgw-card-soft);
  border: 1px solid var(--pgw-line);
}

.pgw-game-point-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--pgw-muted);
}

.pgw-game-point-value {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.pgw-game-visual-card {
  padding: 16px;
}

.pgw-game-media,
.pgw-game-media-fallback,
.pgw-game-related-thumb {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #edf3ff, #f8fbff);
}

.pgw-game-media img,
.pgw-game-related-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.pgw-game-media-fallback {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--pgw-text);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}

.pgw-game-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.pgw-game-mini-stat {
  padding: 12px;
  border-radius: 16px;
  background: var(--pgw-card-soft);
  border: 1px solid var(--pgw-line);
}

.pgw-game-mini-stat span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--pgw-muted);
}

.pgw-game-mini-stat strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.pgw-game-section {
  padding: 18px 0;
}

.pgw-game-section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(237,243,255,0.42) 100%);
}

.pgw-game-section-head {
  margin-bottom: 16px;
}

.pgw-game-section-head h2 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.22;
}

.pgw-game-intro-card,
.pgw-game-text-card,
.pgw-game-side-card,
.pgw-game-empty-card {
  padding: 20px;
}

.pgw-game-intro-card p,
.pgw-game-text-card p,
.pgw-game-empty-card p,
.pgw-game-faq-answer p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--pgw-text);
}

.pgw-game-intro-card p:last-child,
.pgw-game-text-card p:last-child,
.pgw-game-empty-card p:last-child,
.pgw-game-faq-answer p:last-child {
  margin-bottom: 0;
}

.pgw-game-text-card h2,
.pgw-game-text-card h3,
.pgw-game-text-card h4 {
  margin: 22px 0 10px;
  line-height: 1.3;
}

.pgw-game-text-card ul,
.pgw-game-text-card ol {
  margin: 0 0 16px 18px;
  padding: 0;
}

.pgw-game-text-card li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.pgw-game-text-card a {
  color: var(--pgw-accent);
}

.pgw-game-text-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.pgw-game-feature-grid,
.pgw-game-bonus-grid,
.pgw-game-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pgw-game-feature-card,
.pgw-game-bonus-card {
  padding: 18px;
}

.pgw-game-feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.pgw-game-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pgw-muted);
}

.pgw-game-bonus-card span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pgw-text);
}

.pgw-game-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pgw-game-side-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
}

.pgw-game-side-list {
  margin: 0;
  padding-left: 18px;
}

.pgw-game-side-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--pgw-muted);
}

.pgw-game-faq {
  display: grid;
  gap: 12px;
}

.pgw-game-faq-item {
  padding: 16px 18px;
}

.pgw-game-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
  padding-right: 28px;
  position: relative;
}

.pgw-game-faq-item summary::-webkit-details-marker {
  display: none;
}

.pgw-game-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--pgw-accent);
  font-size: 22px;
  line-height: 1;
}

.pgw-game-faq-item[open] summary::after {
  content: "–";
}

.pgw-game-faq-answer {
  padding-top: 10px;
}

.pgw-game-related-card {
  overflow: hidden;
}

.pgw-game-related-thumb {
  display: block;
  aspect-ratio: 16 / 10;
}

.pgw-game-related-thumb span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.pgw-game-related-body {
  padding: 16px;
}

.pgw-game-related-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.pgw-game-related-body h3 a {
  color: var(--pgw-text);
  text-decoration: none;
}

.pgw-game-related-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--pgw-muted);
}

.pgw-game-related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--pgw-accent-soft);
  color: var(--pgw-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

@media (min-width: 768px) {
  .pgw-game-hero {
    padding: 30px 0 34px;
  }

  .pgw-game-title {
    font-size: 40px;
  }

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

  .pgw-game-feature-grid,
  .pgw-game-bonus-grid,
  .pgw-game-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgw-game-two-col {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr);
  }
}

@media (min-width: 1024px) {
  .pgw-game-shell {
    width: min(1240px, calc(100% - 48px));
  }

  .pgw-game-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 22px;
  }

  .pgw-game-copy {
    padding: 28px;
  }

  .pgw-game-visual-card {
    padding: 18px;
  }

  .pgw-game-section {
    padding: 24px 0;
  }

  .pgw-game-section-head h2 {
    font-size: 30px;
  }

  .pgw-game-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pgw-game-bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pgw-game-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}