/* ──────────────────────────────────────────────────────────────────────
   Oyun sayfası (/game/{slug}) — komple yeniden tasarım (Basket Random tarzı)
   React #root gizlenir, kendi #gp-root render edilir
   2-kolonlu layout: ana içerik (sol) + benzer oyunlar (sağ)
   ────────────────────────────────────────────────────────────────────── */

:root {
  --gp-bg: #0B0E1A;
  --gp-card: #11152A;
  --gp-card-2: #161A30;
  --gp-text: #ffffff;
  --gp-text-dim: #b0b3c4;
  --gp-text-mute: #6b7080;
  --gp-red: #E11D48;
  --gp-red-2: #ff3d6b;
  --gp-yellow: #facc15;
  --gp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* NOT: React #root'u GİZLEME — GamePage'in iframe'i ve hero React tarafından çiziliyor.
   game-page.js sadece altına #gp-panel inject ediyor; React'i kapatınca iframe de gider.
   (Eski "#gp-root" full takeover planı bırakıldı; #gp-panel React'in altına ekleniyor.) */

/* ── Container ──────────────────────────────────────────────────────── */
#gp-root {
  background: var(--gp-bg);
  min-height: 100vh;
  padding: calc(var(--gv-h, 72px) + 16px) 0 64px;
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  color: var(--gp-text);
}
@media (min-width: 1024px) {
  #gp-root { padding-left: var(--gv-sb-w, 64px); }
}

/* Panel — game-page.js tarafından React'in .space-y-5 container'ı içine
   taşınır. O zaman React zaten spacing/padding veriyor, biz extra eklemeyiz.
   Fallback: panel React'in dışındaysa (eski akış), kendi container'ı olur. */
#gp-panel {
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  color: var(--gp-text);
}
/* Integrated: React'in space-y-5 children'ı gibi davran */
.space-y-5 > #gp-panel { padding: 0; }
/* Fallback: panel React container dışındaysa kendi padding'i */
body > #gp-panel {
  padding: 0 24px 80px;
}
@media (min-width: 1024px) {
  body > #gp-panel { padding-left: calc(var(--gv-sb-w, 64px) + 24px); }
}
body:not(.gp-page) #gp-panel { display: none; }

/* ── Card containers — React kartlarıyla aynı görsel dil ─────────────── */
.gpx-card {
  background: var(--gp-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.gpx-meta-card { padding: 18px 22px; }
.gpx-meta-card .gpx-meta-list { margin: 0; }
.gpx-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gp-text);
}
.gpx-card-title .gpx-icon { color: var(--gp-red); display: inline-flex; }
.gpx-card-title .gpx-icon svg { width: 20px; height: 20px; }

/* ── Iframe control bar (gameVgames style) ─────────────────────────── */
.gp-iframe-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #1A1F33;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 0 14px 14px;
  flex-wrap: wrap;
}
.gp-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.gp-bar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.gp-bar-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--gp-text);
  font-family: 'Nunito', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.gp-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gp-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 0 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--gp-text-dim);
  cursor: pointer;
  transition: all 0.15s var(--gp-ease);
}
.gp-bar-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--gp-text);
  border-color: rgba(255,255,255,0.18);
}
.gp-vote-group {
  display: inline-flex;
  align-items: center;
}
.gp-vote-up {
  width: auto;
  min-width: 56px;
  padding: 0 10px;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.gp-vote-up .gp-vote-count {
  font-weight: 800;
  font-size: 13px;
  color: var(--gp-text);
}
.gp-vote-down {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gp-bar-btn.gp-voted {
  background: rgba(225,29,72,0.18);
  color: var(--gp-red-2);
  border-color: var(--gp-red);
}
@media (max-width: 640px) {
  .gp-bar-title { max-width: 140px; font-size: 14px; }
  .gp-bar-btn { width: 32px; height: 32px; }
  .gp-bar-right { gap: 4px; }
}

/* ── Mega-header card (iframe altı: breadcrumb + ikon + title + meta + tags) ── */
.gpx-header-card { padding: 22px 24px; }
.gpx-header-card .gpx-card-title { display: none; }

.gpx-breadcrumb {
  font-size: 13px;
  color: var(--gp-text-mute);
  margin-bottom: 14px;
}
.gpx-breadcrumb a {
  color: var(--gp-red-2);
  text-decoration: none;
  font-weight: 700;
}
.gpx-breadcrumb a:hover { text-decoration: underline; }
.gpx-breadcrumb span { color: var(--gp-text-mute); margin: 0 4px; }
.gpx-breadcrumb .gpx-current { color: var(--gp-text); font-weight: 700; margin: 0; }

.gpx-title-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.gpx-icon-big {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.gpx-game-h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  font-family: 'Orbitron', 'Nunito', sans-serif;
  letter-spacing: 0.5px;
  color: var(--gp-text);
  line-height: 1.1;
}
@media (max-width: 640px) {
  .gpx-game-h1 { font-size: 26px; }
  .gpx-icon-big { width: 60px; height: 60px; }
}

/* ── Meta list (Developer/Released/Tech/Platforms) ──────────────────── */
.gpx-meta-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 18px;
  margin: 0 0 18px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .gpx-meta-list { grid-template-columns: 1fr; gap: 4px 0; }
  .gpx-meta-list dt { margin-top: 8px; }
}
.gpx-meta-list dt {
  color: var(--gp-text-dim);
  font-weight: 700;
  margin: 0;
}
.gpx-meta-list dd {
  margin: 0;
  color: var(--gp-text);
}
.gpx-meta-list dd a {
  color: var(--gp-red-2);
  text-decoration: none;
  font-weight: 700;
}
.gpx-meta-list dd a:hover { text-decoration: underline; }
.gpx-platforms-icons {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gpx-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(225,29,72,0.1);
  border: 1px solid rgba(225,29,72,0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-red-2);
}

/* ── Tag pills (under meta) ─────────────────────────────────────────── */
.gpx-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 6px;
}
.gpx-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--gp-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s var(--gp-ease);
}
.gpx-tag-pill:hover {
  background: rgba(225,29,72,0.15);
  border-color: var(--gp-red);
  color: var(--gp-red-2);
}
.gpx-tag-pill .gpx-count {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  background: rgba(225,29,72,0.18);
  border-radius: 10px;
  font-size: 11px;
  color: var(--gp-red-2);
  font-weight: 800;
  min-width: 18px;
  text-align: center;
}

/* ── Rich content (About, Features, Pro Tips) ───────────────────────── */
.gpx-rich { font-size: 15px; line-height: 1.65; color: #d8dbe8; }
.gpx-rich p { margin: 0 0 12px; }
.gpx-rich strong { color: var(--gp-text); font-weight: 800; }
.gpx-rich h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gp-text);
}
.gpx-rich h3:first-child { margin-top: 0; }
.gpx-rich ul, .gpx-rich ol { margin: 12px 0; padding-left: 4px; list-style: none; }
.gpx-rich li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
}
.gpx-rich li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--gp-red);
  font-weight: 900;
}

/* ── How to Play kbd badges ─────────────────────────────────────────── */
.gpx-how-to-play strong { color: var(--gp-red-2); }
.gpx-how-to-play kbd {
  display: inline-block;
  padding: 3px 8px;
  background: #1f2436;
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom-width: 2px;
  border-radius: 5px;
  font-family: 'Consolas', monospace;
  font-size: 12px;
  font-weight: 800;
  color: var(--gp-text);
  margin: 0 2px;
}

/* ── FAQ accordion ──────────────────────────────────────────────────── */
.gpx-faq-item {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.gpx-faq-item:first-child { border-top: 0; padding-top: 4px; }
.gpx-faq-q {
  cursor: pointer;
  font-weight: 800;
  color: var(--gp-red-2);
  list-style: none;
  position: relative;
  padding-right: 24px;
  font-size: 15px;
  user-select: none;
}
.gpx-faq-q::-webkit-details-marker { display: none; }
.gpx-faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  font-weight: 400;
  color: var(--gp-text-dim);
  transition: transform 0.2s var(--gp-ease);
}
.gpx-faq-item[open] .gpx-faq-q::after { content: '−'; }
.gpx-faq-a {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: #c8cbd8;
}

/* ── Gameplay Video ─────────────────────────────────────────────────── */
.gpx-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.gpx-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Date footer (Yayınlanma / Son Güncelleme) ──────────────────────── */
.gpx-date-footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 14px 0 4px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--gp-text-mute);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.gpx-date-footer strong {
  color: var(--gp-text-dim);
  font-weight: 700;
  margin-right: 4px;
}

/* ── Store buttons (App Store / Google Play) ────────────────────────── */
.gpx-store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}
.gpx-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s var(--gp-ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.gpx-store-btn:hover { transform: translateY(-2px); }
.gpx-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.gpx-store-btn .gpx-store-sub { font-size: 10px; opacity: 0.7; display: block; }
.gpx-store-btn .gpx-store-main { font-size: 16px; font-weight: 800; }

/* ── Rating widget (kept for compatibility) ─────────────────────────── */
.gpx-rating-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gpx-rating-widget .gpx-stars { display: inline-flex; gap: 4px; }
.gpx-rating-widget .gp-star {
  cursor: pointer;
  color: var(--gp-text-mute);
  transition: color 0.15s;
}
.gpx-rating-widget .gp-star.filled,
.gpx-rating-widget .gp-star.hover {
  color: var(--gp-yellow);
}
.gpx-rating-widget.gp-rated .gp-star { cursor: default; }

/* ── Share buttons row ──────────────────────────────────────────────── */
.gpx-share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.gpx-share-row .gp-share-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--gp-card-2);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--gp-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s var(--gp-ease);
  text-decoration: none;
}
.gpx-share-row .gp-share-btn:hover { color: white; transform: translateY(-2px); }
.gpx-share-row .gp-share-x:hover { background: #1da1f2; }
.gpx-share-row .gp-share-fb:hover { background: #1877f2; }
.gpx-share-row .gp-share-wa:hover { background: #25d366; }
.gpx-share-row .gp-share-tg:hover { background: #0088cc; }
.gpx-share-row .gp-share-copy:hover { background: var(--gp-red); }

.gp-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}
@media (max-width: 1100px) {
  .gp-shell { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────────────── */
/* SOL KOLON — ana içerik                                                 */
/* ────────────────────────────────────────────────────────────────────── */
.gp-main { min-width: 0; }

/* ── Oyun çerçevesi ─────────────────────────────────────────────────── */
.gp-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.gp-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.gp-frame.gp-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  aspect-ratio: unset;
  border-radius: 0;
}

/* PLAY overlay (iframe yüklenmeden önce) */
.gp-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 5;
}
.gp-play-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}
.gp-play-text {
  position: relative;
  z-index: 1;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: 0.05em;
  display: inline-flex;
  gap: 4px;
  text-shadow: 0 4px 0 rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.6);
  transition: transform 0.22s var(--gp-ease);
}
.gp-play-text:hover { transform: scale(1.05); }
.gp-play-text span:nth-child(1) { color: #facc15; }
.gp-play-text span:nth-child(2) { color: #fb923c; }
.gp-play-text span:nth-child(3) { color: #ef4444; }
.gp-play-text span:nth-child(4) { color: #a855f7; }

/* ── Toolbar (iframe altı) ──────────────────────────────────────────── */
.gp-toolbar {
  background: var(--gp-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gp-tb-game {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.gp-tb-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gp-card-2);
}
.gp-tb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-tb-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gp-tb-sub {
  font-size: 11px;
  color: var(--gp-text-mute);
}

.gp-tb-actions {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
}
.gp-tb-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--gp-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  position: relative;
  font-family: inherit;
}
.gp-tb-btn:hover {
  background: rgba(255,29,72,0.15);
  color: var(--gp-red-2);
  transform: translateY(-1px);
}
.gp-tb-btn svg { width: 18px; height: 18px; }
.gp-tb-btn.gp-active { color: var(--gp-red-2); background: rgba(255,29,72,0.15); }
.gp-tb-like-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--gp-text-dim);
  margin: 0 4px 0 -2px;
  align-self: center;
}

/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.gp-breadcrumb {
  font-size: 12px;
  color: var(--gp-text-mute);
  margin: 14px 0 8px;
}
.gp-breadcrumb a {
  color: var(--gp-text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.gp-breadcrumb a:hover { color: var(--gp-red-2); }
.gp-breadcrumb-sep { margin: 0 6px; color: var(--gp-text-mute); }

/* ── Oyun bilgi kartı ───────────────────────────────────────────────── */
.gp-info-card {
  background: var(--gp-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.gp-info-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.gp-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--gp-text-dim);
}
.gp-info-meta b { color: #fff; font-weight: 700; }
.gp-info-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gp-yellow);
  font-weight: 800;
}

/* ── Tag chips ──────────────────────────────────────────────────────── */
.gp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}
.gp-chip {
  background: var(--gp-card-2);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--gp-text-dim);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gp-chip:hover {
  background: rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.4);
  color: #fff;
}
.gp-chip-count {
  color: var(--gp-text-mute);
  font-weight: 600;
  margin-left: 4px;
}

/* ── Genel section başlığı (Hakkında, Mekanik, FAQ, vs.) ────────────── */
.gp-section {
  background: var(--gp-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.gp-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gp-section h2 .gp-h-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-red-2);
}
.gp-section h3 {
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--gp-red-2);
}
.gp-section h4 {
  margin: 12px 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.gp-section p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gp-text-dim);
}
.gp-section ul {
  margin: 6px 0 12px;
  padding-left: 22px;
}
.gp-section li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gp-text-dim);
  margin-bottom: 4px;
}
.gp-section li::marker { color: var(--gp-red-2); }
.gp-section strong { color: #fff; font-weight: 800; }
.gp-section a { color: var(--gp-red-2); text-decoration: none; }
.gp-section a:hover { text-decoration: underline; }
.gp-section kbd {
  display: inline-block;
  background: #2a2e44;
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 8px;
  font-family: monospace;
  font-size: 12px;
  color: #fff;
  margin: 0 2px;
}

/* ── Update dates ───────────────────────────────────────────────────── */
.gp-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 4px 0 14px;
  font-size: 13px;
  color: var(--gp-text-mute);
}
.gp-dates b { color: #fff; font-weight: 700; }

/* ── Promo video card ───────────────────────────────────────────────── */
.gp-promo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1f2e;
  cursor: pointer;
  margin-bottom: 14px;
}
.gp-promo img,
.gp-promo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gp-promo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.95);
  border: 4px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.22s var(--gp-ease), background 0.22s var(--gp-ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gp-promo:hover .gp-promo-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gp-red-2);
}
.gp-promo-play svg { width: 36px; height: 36px; fill: #fff; margin-left: 4px; }

/* ── App store buttons ──────────────────────────────────────────────── */
.gp-app-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4px 0 22px;
}
.gp-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 180px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gp-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.gp-app-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.gp-app-label-top {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  line-height: 1.1;
  text-transform: uppercase;
}
.gp-app-label-main {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

/* ── FAQ accordion ──────────────────────────────────────────────────── */
.gp-faq-item {
  background: var(--gp-card-2);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.gp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  background: rgba(225, 29, 72, 0.1);
  border-left: 3px solid var(--gp-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.18s ease;
}
.gp-faq-q:hover { background: rgba(225, 29, 72, 0.2); }
.gp-faq-q .gp-faq-chev {
  transition: transform 0.22s var(--gp-ease);
  color: var(--gp-red-2);
}
.gp-faq-item.gp-open .gp-faq-q .gp-faq-chev { transform: rotate(180deg); }
.gp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--gp-ease);
}
.gp-faq-item.gp-open .gp-faq-a { max-height: 500px; }
.gp-faq-a-inner {
  padding: 14px 16px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gp-text-dim);
}

/* ────────────────────────────────────────────────────────────────────── */
/* SAĞ KOLON — Önerilen oyunlar                                           */
/* ────────────────────────────────────────────────────────────────────── */
.gp-side {
  min-width: 0;
}
.gp-side-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gp-side-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--gp-red);
  border-radius: 2px;
}
.gp-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gp-side-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gp-card);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--gp-ease), box-shadow 0.18s var(--gp-ease);
}
.gp-side-card:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5), 0 0 0 2px var(--gp-red);
  z-index: 1;
}
.gp-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gp-side-card-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
.gp-side-card-badge.new { background: linear-gradient(135deg, #ec4899, #db2777); }
.gp-side-card-badge.featured { background: linear-gradient(135deg, #fb923c, #ea580c); }
.gp-side-card-score {
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #facc15;
  background: rgba(0,0,0,0.65);
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

/* ── Toast bildirim ─────────────────────────────────────────────────── */
.gp-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20,22,32,0.95);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ──────────────────────────────────────────────────────────────────────
   Related-games slider on /game/{slug} — restyled to match the
   home-page "1 Player Games" / category row look.
   - Cards: 80×80 → 150×150 with rounded thumbnail
   - Arrow buttons: small inline ‹› → 38×38 white circular pink (hp-row-arrow)
   - Title: small uppercase faded → larger uppercase white (hp-section-title)
   Selectors are all stable bundle hooks ("w-[80px]" is unique across
   bundles, aria-label texts are React-internal labels).
   ────────────────────────────────────────────────────────────────────── */

/* Arrows → big bold pink chevron at the slider's vertical-center edges,
   with a faint dark gradient fade (matches the home-page reference).
   Pulled out of the bundle's top-right header and absolutely positioned
   over the card row. Card size stays at the bundle's original 80×80. */
.space-y-2:has([class~="w-[80px]"]) {
  position: relative !important;
}
button[aria-label="Sola kaydır"],
button[aria-label="Sağa kaydır"] {
  position: absolute !important;
  top: auto !important;
  bottom: 20px !important;          /* anchor to the thumbnail strip (above labels) */
  height: 80px !important;          /* = thumbnail height → chevron centers on it */
  width: 46px !important;
  z-index: 20 !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--hp-pink, #ff3d7f) !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
  opacity: 0.92;
  transition: transform 0.15s ease, color 0.15s ease, opacity 0.15s ease !important;
}
button[aria-label="Sola kaydır"] {
  left: 0 !important;
  background: linear-gradient(to right, rgba(8, 8, 16, 0.85) 0%, transparent 100%) !important;
  border-radius: 0 12px 12px 0 !important;
}
button[aria-label="Sağa kaydır"] {
  right: 0 !important;
  background: linear-gradient(to left, rgba(8, 8, 16, 0.85) 0%, transparent 100%) !important;
  border-radius: 12px 0 0 12px !important;
}
button[aria-label="Sola kaydır"]:hover,
button[aria-label="Sağa kaydır"]:hover {
  color: var(--hp-pink-2, #ff1a6b) !important;
  transform: scale(1.18) !important;
  opacity: 1;
}

/* Section title — Title Case white (matches .hp-section-title), drop the
   tiny gradient stripe React renders beside it. */
h2.uppercase.tracking-widest {
  font-size: 20px !important;
  color: #fff !important;
  letter-spacing: -0.01em !important;
  font-weight: 800 !important;
  text-transform: none !important;
}
h2.uppercase.tracking-widest > span[style*="linear-gradient"] {
  display: none !important;
}
