/* =============================================
   BigNGames - Ad Slots
   ============================================= */

.ad-slot {
  overflow: hidden;
  text-align: center;
}

/* Dev placeholder */
.ad-slot__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Leaderboard 728x90 */
.ad-slot--leaderboard .ad-slot__placeholder {
  width: 100%;
  height: 90px;
  max-width: 728px;
  margin: 0 auto;
}

/* Medium Rectangle 300x250 */
.ad-slot--rectangle .ad-slot__placeholder {
  width: 300px;
  height: 250px;
  margin: 0 auto;
}

/* In-feed responsive */
.ad-slot--in-feed .ad-slot__placeholder {
  width: 100%;
  height: 100px;
}

/* In-article responsive */
.ad-slot--in-article {
  margin: var(--space-8) 0;
}

.ad-slot--in-article .ad-slot__placeholder {
  width: 100%;
  height: 90px;
}

/* Wrapper spacings */
.ad-wrapper--header {
  padding: var(--space-3) 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
}

.ad-wrapper--footer {
  padding: var(--space-3) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.ad-wrapper--sidebar {
  margin-bottom: var(--space-5);
}

.ad-wrapper--in-feed {
  margin: var(--space-5) 0;
}
