.game-header {
  padding: 64px 0 48px;
  text-align: center;
}

.game-page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(var(--glow-cyan));
}

.game-page-description {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.game-play-section {
  padding: 48px 0 64px;
}

.game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.game-frame {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5),
              inset 0 0 0 1px var(--border-color);
  min-height: 700px;
}

.game-iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
  background: var(--bg-dark);
}

.age-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-cta);
  color: #0B1224;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 20px;
  z-index: 100;
  box-shadow: var(--glow-gold);
  opacity: 0.85;
  pointer-events: none;
}

.game-placeholder-large {
  min-height: 700px;
  background: linear-gradient(135deg,
    rgba(16, 26, 50, 0.9) 0%,
    rgba(22, 33, 67, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--border-color);
}

.placeholder-content {
  text-align: center;
  padding: 48px;
}

.placeholder-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  filter: drop-shadow(var(--glow-cyan));
}

.placeholder-content p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 12px;
}

.placeholder-note {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}

.game-description-section {
  padding: var(--section-spacing) 0;
  background: rgba(16, 26, 50, 0.3);
}

.game-mechanics {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.mechanic-card {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mechanic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-violet);
  border-color: var(--secondary);
}

.mechanic-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  filter: drop-shadow(var(--glow-cyan));
}

.mechanic-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.mechanic-card p:last-child {
  margin-bottom: 0;
}

.game-cta-section {
  padding: var(--section-spacing) 0;
}

.cta-card {
  background: var(--bg-surface);
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--glow-violet);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
}

@media (max-width: 968px) {
  .game-header {
    padding: 48px 0 32px;
  }

  .game-play-section {
    padding: 32px 0 48px;
  }

  .game-frame {
    min-height: 500px;
  }

  .game-iframe {
    height: 500px;
  }

  .game-placeholder-large {
    min-height: 500px;
  }

  .age-badge-overlay {
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    font-size: 16px;
  }

  .mechanic-card {
    padding: 32px 24px;
  }

  .cta-card {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .game-frame {
    min-height: 400px;
  }

  .game-iframe {
    height: 400px;
  }

  .game-placeholder-large {
    min-height: 400px;
  }

  .placeholder-content {
    padding: 24px;
  }

  .placeholder-content h3 {
    font-size: 24px;
  }

  .placeholder-content p {
    font-size: 16px;
  }

  .mechanic-card {
    padding: 24px;
  }

  .cta-card {
    padding: 40px 24px;
  }
}
