* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-main, #0d0f14);
  color: var(--text-main, #f8fafc);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.profile-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 48px;
}
.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.top-links a, .creator-socials a {
  border: 1px solid var(--border, #334155);
  border-radius: 8px;
  color: var(--text-main, #c7d7ff);
  padding: 9px 12px;
  font-weight: 800;
}
.creator-hero, .creator-section {
  background: var(--bg-card, #141a26);
  border: 1px solid var(--border, #2f3a52);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 28px);
}
.creator-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.creator-hero > img {
  width: 150px;
  height: 150px;
  border-radius: 28px;
  border: 1px solid #334155;
  background: #0f172a;
}
.eyebrow {
  margin: 0 0 6px;
  color: #60a5fa;
  font-weight: 900;
  text-transform: uppercase;
}
h1 { margin: 0 0 10px; font-size: clamp(34px, 5vw, 56px); }
h2 { margin: 0 0 16px; font-size: clamp(24px, 3.5vw, 34px); }
p { color: var(--text-muted, #d5dcec); line-height: 1.7; }
.creator-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.creator-stats span {
  background: var(--bg-card, #1e293b);
  border: 1px solid var(--border, #334155);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-main, #d5dcec);
}
.creator-stats strong { color: #fff; }
.creator-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.creator-section { margin-top: 22px; }
.creator-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.game-card, .recommendation-card {
  overflow: hidden;
  background: var(--bg-card, #1e293b);
  border: 1px solid var(--border, #334155);
  border-radius: 8px;
  color: var(--text-main, #f8fafc);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.game-card:hover, .recommendation-card:hover {
  transform: translateY(-4px);
  border-color: #60a5fa;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.thumb, .recommendation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
}
.thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  padding: 10px;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-info, .recommendation-card-body {
  display: grid;
  gap: 7px;
  padding: 12px;
}
.game-category, .recommendation-tag {
  width: fit-content;
  border: 1px solid #3b82f6;
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  text-transform: uppercase;
}
.status {
  position: absolute;
  margin: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16,185,129,0.88);
  font-size: 12px;
  font-weight: 800;
}
.status.soon { background: rgba(234,179,8,0.88); }
.game-card { position: relative; }
.game-title, .recommendation-card-body strong { font-weight: 900; }
.game-desc, .recommendation-desc { color: #cbd5e1; font-size: 13px; line-height: 1.45; }
.recommendation-play, .game-creator { color: #93c5fd; font-size: 13px; font-weight: 800; }
@media (max-width: 760px) {
  .creator-hero { grid-template-columns: 1fr; }
  .creator-hero > img { width: 120px; height: 120px; }
  .creator-game-grid { grid-template-columns: 1fr; }
}
@media (min-width: 761px) and (max-width: 980px) {
  .creator-game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
