/* Base styles for AI-generated gaming platform sites */
:root {
  --gp-brand: #6c5ce7;
  --gp-dark: #4834d4;
  --gp-light: #6c5ce722;
  --gp-gold: #f0c020;
  --gp-text: #e8e8e8;
  --gp-muted: #aaa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  background: #0f0f14;
}

a { color: var(--gp-brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.gp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.gp-header {
  background: rgba(0,0,0,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-logo {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.gp-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 10px;
}

.gp-header-light .gp-logo-img {
  height: 48px;
}

.gp-header-mobile .gp-logo-img {
  height: 44px;
  max-width: 140px;
}

.gp-logo:hover { color: var(--gp-gold); text-decoration: none; }

.gp-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.gp-nav a { color: #ccc; font-size: 13px; font-weight: 600; text-decoration: none; }
.gp-nav a:hover { color: var(--gp-gold); }

.gp-header-cta { display: flex; gap: 8px; }

.gp-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.gp-btn:hover { text-decoration: none; transform: translateY(-1px); }
.gp-btn-sm { padding: 8px 16px; font-size: 12px; }
.gp-btn-lg { padding: 14px 32px; font-size: 15px; }

.gp-btn-primary { background: var(--gp-brand); color: #fff; }
.gp-btn-outline { border: 2px solid var(--gp-brand); color: var(--gp-brand); background: transparent; }
.gp-btn-gold { background: var(--gp-gold); color: #1a1a1a; }
.gp-btn-neon { background: linear-gradient(90deg, #00f5ff, #bf00ff); color: #fff; }
.gp-btn-cyber { background: linear-gradient(135deg, #00cec9, #6c5ce7); color: #fff; }

.gp-promo {
  background: linear-gradient(90deg, var(--gp-brand), var(--gp-dark));
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
}

.gp-hero { color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.gp-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.gp-hero p { font-size: 16px; opacity: .9; max-width: 640px; margin-bottom: 24px; }

.gp-hero-wide {
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gp-hero-wide .gp-hero-actions { justify-content: center; }
.gp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.gp-section { padding: 48px 0; background: #12121a; color: #ddd; }
.gp-section-alt { background: #1a1a24; }
.gp-section-dark { background: #0a0a10; }
.gp-section-warm { background: #1e1810; }
.gp-section-blue { background: #0d1b2a; }
.gp-section-neon { background: #0f0520; }
.gp-section-arcade { background: #1a0a0a; }
.gp-section-cyber { background: #0a1520; }
.gp-section-gold { background: linear-gradient(135deg, #1a1500, #2a2000); text-align: center; }

.gp-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: #fff; }

.gp-stats { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; padding: 20px 0; }
.gp-stat { text-align: center; min-width: 100px; }
.gp-stat strong { display: block; font-size: 28px; color: var(--gp-gold); font-weight: 800; }
.gp-stat span { font-size: 12px; color: #aaa; }

.gp-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gp-cards-3 { grid-template-columns: repeat(3, 1fr); }

.gp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 14px;
}

.gp-card i { color: var(--gp-gold); font-size: 20px; margin-top: 4px; }
.gp-card h3 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.gp-card p { color: #aaa; font-size: 13px; }

.gp-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gp-feature {
  background: rgba(255,255,255,.04);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid var(--gp-brand);
}
.gp-feature i { color: var(--gp-gold); margin-bottom: 8px; }
.gp-feature h3 { color: #fff; font-size: 14px; margin-bottom: 6px; }
.gp-feature p { color: #999; font-size: 13px; }

.gp-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.gp-gallery-2 { grid-template-columns: 1fr 1fr; }
.gp-gallery-wide { grid-template-columns: 1fr 1fr; }
.gp-gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; }
.gp-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gp-gallery-main { grid-row: span 1; }
.gp-gallery-placeholder {
  background: rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  gap: 8px;
}
.gp-gallery-placeholder i { font-size: 32px; color: var(--gp-brand); }

.gp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.gp-split-img img { width: 100%; border-radius: 12px; }

.gp-rating-line { color: var(--gp-gold); font-weight: 700; margin-bottom: 16px; }
.gp-about { color: #bbb; margin-bottom: 20px; line-height: 1.7; }

.gp-specs { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.gp-specs th, .gp-specs td { padding: 10px 14px; border: 1px solid rgba(255,255,255,.1); text-align: left; }
.gp-specs th { background: rgba(255,255,255,.05); color: #aaa; width: 35%; }
.gp-specs td { color: #eee; }

.gp-faq, .gp-faq-list { display: flex; flex-direction: column; gap: 8px; }
.gp-faq {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.08);
}
.gp-faq summary { cursor: pointer; font-weight: 700; color: #fff; }
.gp-faq p { margin-top: 10px; color: #aaa; font-size: 13px; }

.gp-review {
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
}
.gp-stars { color: var(--gp-gold); }
.gp-review h4 { color: #fff; margin: 8px 0; font-size: 14px; }
.gp-review p { color: #999; font-size: 13px; }

.gp-log { border-left: 3px solid var(--gp-brand); padding: 12px 20px; margin-bottom: 16px; }
.gp-log-head { color: #888; font-size: 12px; margin-bottom: 6px; }
.gp-log h4 { color: #fff; margin-bottom: 8px; }
.gp-log ul { padding-left: 18px; color: #aaa; font-size: 13px; }

.gp-thread {
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}
.gp-thread-head { font-size: 12px; color: #888; margin-bottom: 8px; }
.gp-thread-head strong { color: var(--gp-brand); }
.gp-thread p { color: #bbb; font-size: 13px; }
.gp-thread-meta { font-size: 11px; color: #666; margin-top: 8px; }

.gp-footer {
  background: #08080c;
  color: #666;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.gp-steps { display: flex; gap: 20px; flex-wrap: wrap; }
.gp-step { flex: 1; min-width: 180px; background: rgba(255,255,255,.05); padding: 20px; border-radius: 10px; text-align: center; }
.gp-step span { display: inline-block; width: 36px; height: 36px; line-height: 36px; background: var(--gp-brand); color: #fff; border-radius: 50%; font-weight: 800; margin-bottom: 10px; }

.gp-gameplay-wide { width: 100%; border-radius: 12px; margin-bottom: 24px; aspect-ratio: 16/9; object-fit: cover; }

.gp-esports-badge { width: 180px; border-radius: 12px; }

@media (max-width: 768px) {
  .gp-hero h1 { font-size: 26px; }
  .gp-split, .gp-gallery, .gp-cards-3 { grid-template-columns: 1fr; }
  .gp-nav { display: none; }
  .gp-header-cta .gp-btn-outline { display: none; }
}
