/* ===================================================
   PLAY HAPPY — Publisher Subdomain Design
   publishing.playhappyy.com
=================================================== */

@import url('../../style.css'); /* Inherit base tokens and typography */

body {
  background: var(--bg-surface); /* Slightly lighter dark background for a document feel */
}

.publisher-header {
  padding-block: var(--gap-lg);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.publisher-header__inner {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.publisher-header__logo img {
  width: 48px;
  height: 48px;
}

.publisher-header__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.publisher-header__subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.publisher-lang {
  margin-top: 8px;
  font-size: 0.85rem;
}

.content-section {
  padding-block: var(--gap-md);
  max-width: 800px;
  margin-inline: auto;
}

.content-box {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--gap-md);
  margin-bottom: var(--gap-md);
}

.content-box h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--gap-sm);
  color: var(--amber);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.content-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: var(--gap-sm);
  margin-bottom: 8px;
}

.content-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.content-box ul {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.content-box li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}

.info-item {
  margin-bottom: 8px;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.info-value {
  font-weight: 500;
  color: var(--text-primary);
}

.enamad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: var(--r-sm);
  color: #333;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border: 2px dashed #ccc;
  font-size: 0.85rem;
}

/* ─── GAMES LIST IN PUBLISHER ───────────────────── */
.pub-game-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-game-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
}

.pub-game-item img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

.pub-game-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.pub-game-info span {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
}
