* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0b;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.global-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-title {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.difficulty-badge {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.difficulty-badge.easy { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.difficulty-badge.medium { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.difficulty-badge.hard { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.header-small {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 24px;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.title-small {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  background: none;
  border: 1px solid #333;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #fff;
  border-color: #555;
}

.back-link {
  color: #888;
  font-size: 28px;
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover {
  color: #fff;
}

.score-display {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 12px;
}

.score-display strong {
  color: #fff;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  position: relative;
  width: 100%;
}

.image-container {
  width: 100%;
  height: clamp(300px, 60vh, 70vh);
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1c;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vote-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
}

.vote-btn {
  flex: 1;
  padding: 20px 16px;
  min-height: 80px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vote-btn.ai {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
}

.vote-btn.real {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.next-btn {
  width: 100%;
  padding: 20px 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #0a0a0b;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.next-btn:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.result-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.verdict {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.verdict.correct {
  color: #10b981;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.verdict.incorrect {
  color: #ef4444;
  text-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.answer {
  font-size: clamp(16px, 3vw, 20px);
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.answer span {
  color: #fff;
  font-weight: 600;
}

.stats-container {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
  margin-top: 16px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-percent {
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-bar {
  width: 100%;
  max-width: 200px;
  height: 8px;
  border-radius: 4px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease-out;
  width: 0%;
}

.stat-bar.ai .stat-bar-fill { background: linear-gradient(90deg, #6366f1, #818cf8); }
.stat-bar.real .stat-bar-fill { background: linear-gradient(90deg, #10b981, #34d399); }

.stat-label {
  font-size: clamp(12px, 2vw, 16px);
  color: #888;
  text-transform: uppercase;
}

.stat-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

.total-votes {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

.mode-grid {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #1a1a1c;
  border: 2px solid #2a2a2c;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.mode-card:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
}

.mode-icon { font-size: 32px; width: 50px; text-align: center; }
.mode-info { flex: 1; }
.mode-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.mode-desc { font-size: 14px; color: #888; }
.mode-arrow { font-size: 20px; color: #444; transition: all 0.2s; }
.mode-card:hover .mode-arrow { transform: translateX(4px); color: #6366f1; }

.difficulty-card {
  display: block;
  padding: 24px;
  background: #1a1a1c;
  border: 2px solid #2a2a2c;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.difficulty-card:hover { transform: translateY(-2px); }
.difficulty-card.easy:hover { border-color: #10b981; }
.difficulty-card.medium:hover { border-color: #f59e0b; }
.difficulty-card.hard:hover { border-color: #ef4444; }

.difficulty-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.difficulty-card.easy .difficulty-name { color: #10b981; }
.difficulty-card.medium .difficulty-name { color: #f59e0b; }
.difficulty-card.hard .difficulty-name { color: #ef4444; }
.difficulty-desc { font-size: 14px; color: #888; }

.leaderboard-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #1a1a1c;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active { background: #6366f1; color: #fff; }
.tab-btn:hover:not(.active) { color: #fff; }

.tab-btn.small {
  padding: 8px 16px;
  font-size: 13px;
}

.time-tabs {
  margin-top: -8px;
  margin-bottom: 16px;
}

.leaderboard-table { width: 100%; max-width: 600px; }

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #1a1a1c;
  border-radius: 12px;
  margin-bottom: 8px;
}

.rank { font-size: 18px; font-weight: 700; width: 40px; color: #666; }
.rank.gold { color: #f59e0b; }
.rank.silver { color: #94a3b8; }
.rank.bronze { color: #b45309; }
.player-name { flex: 1; font-weight: 500; }
.player-score { font-weight: 700; color: #10b981; }
.player-correct { font-weight: 600; color: #10b981; width: 60px; text-align: right; }
.player-accuracy { font-weight: 600; color: #6366f1; width: 50px; text-align: right; }

.leaderboard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.leaderboard-header .col-rank { width: 40px; }
.leaderboard-header .col-name { flex: 1; }
.leaderboard-header .col-score { width: 60px; text-align: right; }
.leaderboard-header .col-correct { width: 60px; text-align: right; }
.leaderboard-header .col-accuracy { width: 50px; text-align: right; }

.leaderboard-note {
  padding: 8px 16px;
  margin-bottom: 8px;
  color: #f59e0b;
  font-size: 12px;
  font-style: italic;
}

.show-more-btn {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  background: transparent;
  border: 1px dashed #333;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.show-more-btn:hover {
  border-color: #555;
  color: #fff;
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  gap: 16px;
}

.game-title {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress { font-size: 14px; color: #666; }
.timer { font-size: 24px; font-weight: 700; color: #fff; }
.timer.warning { color: #f59e0b; }
.timer.danger { color: #ef4444; }
.lives { display: flex; gap: 4px; font-size: 20px; }
.life.lost { opacity: 0.3; }

.game-over {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.game-over-title { font-size: 32px; font-weight: 700; }

.final-score { display: flex; align-items: baseline; gap: 8px; }

.score-number {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-label { font-size: 24px; color: #666; }
.percentage { font-size: 18px; color: #a0a0a0; }
.game-id { font-size: 14px; color: #666; font-family: monospace; }

/* Game Stats */
.game-stats {
  display: flex;
  gap: 32px;
  margin: 12px 0;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-size: 14px;
  color: #a0a0a0;
  font-weight: 500;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* Leaderboard Position */
.leaderboard-position {
  margin: 16px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  max-width: 320px;
}

.leaderboard-header {
  font-size: 14px;
  font-weight: 600;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.rank-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.rank-label {
  font-size: 16px;
  color: #a0a0a0;
  font-weight: 500;
}

.rank-value {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rank-context {
  font-size: 14px;
  color: #999;
}

.percentile {
  font-size: 16px;
  color: #10b981;
  font-weight: 600;
}

.game-over-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}

.primary-btn {
  padding: 16px 40px;
  background: #fff;
  color: #0a0a0b;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.primary-btn:hover { background: #e5e5e5; transform: translateY(-2px); }

.secondary-btn {
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid #333;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.secondary-btn:hover { border-color: #555; }

.footer { margin-top: 16px; width: 100%; text-align: center; font-size: 14px; color: #666; }
.footer strong { color: #fff; }

.hidden { display: none !important; }

@media (max-width: 480px) {
  .page { padding: 16px; }
  .logo { font-size: 28px; }
  .vote-buttons { flex-direction: column; }
  .score-number { font-size: 48px; }
  .game-over-buttons { flex-direction: column; width: 100%; }
  .primary-btn, .secondary-btn { width: 100%; }
}

/* Auth Pages */
.auth-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.auth-description {
  color: #888;
  text-align: center;
  margin-bottom: 24px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1c;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #6366f1;
}

.form-group input::placeholder {
  color: #555;
}

.form-group.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #6366f1;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label a {
  color: #6366f1;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.auth-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
}

.auth-btn:hover { opacity: 0.9; }
.auth-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-btn.secondary {
  background: #1a1a1c;
  border: 1px solid #333;
}

.auth-links {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.auth-links a {
  color: #6366f1;
  text-decoration: none;
}

.auth-links a:hover { text-decoration: underline; }

.auth-links .divider {
  margin: 0 12px;
  color: #444;
}

.guest-note {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #666;
}

.guest-note a {
  color: #10b981;
  text-decoration: none;
}

.guest-note a:hover { text-decoration: underline; }

.social-login-divider {
  text-align: center;
  margin: 24px 0 16px;
  position: relative;
}

.social-login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #222;
}

.social-login-divider span {
  position: relative;
  background: #0a0a0b;
  padding: 0 12px;
  font-size: 13px;
  color: #666;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1c;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: #444;
  background: #222;
}

.social-btn svg {
  flex-shrink: 0;
}

.social-btn.google:hover {
  border-color: #4285F4;
}

.social-btn.facebook:hover {
  border-color: #1877F2;
}

.social-btn.twitter:hover {
  border-color: #1DA1F2;
}

.error-message {
  padding: 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 14px;
  text-align: center;
}

.success-message {
  padding: 12px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 14px;
  text-align: center;
}

.success-message a {
  color: #10b981;
  font-weight: 600;
}

/* Email Verification */
.verify-state {
  text-align: center;
  padding: 24px 0;
}

.verify-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.verify-state h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.verify-state p {
  color: #888;
  margin-bottom: 8px;
}

.verify-state .auth-btn {
  display: inline-block;
  margin-top: 24px;
}

.verify-note {
  margin-top: 24px;
  font-size: 14px;
}

.link-btn {
  background: none;
  border: none;
  color: #6366f1;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

.link-btn:hover { text-decoration: underline; }
.link-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* User Menu */
.auth-nav {
  margin-left: 8px;
}

.sign-in-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.sign-in-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.user-menu {
  position: relative;
}

.user-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.user-btn:hover {
  border-color: #555;
}

.hamburger-icon {
  width: 18px;
  height: 2px;
  background: #888;
  border-radius: 1px;
  position: relative;
  transition: background 0.2s;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #888;
  border-radius: 1px;
  transition: background 0.2s;
}

.hamburger-icon::before {
  top: -6px;
}

.hamburger-icon::after {
  bottom: -6px;
}

.user-btn:hover .hamburger-icon,
.user-btn:hover .hamburger-icon::before,
.user-btn:hover .hamburger-icon::after {
  background: #fff;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 160px;
  background: #1a1a1c;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100;
}

.user-info {
  padding: 8px 16px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin-bottom: 4px;
}

.verify-warning {
  padding: 6px 16px;
  font-size: 12px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: none;
  background: none;
  color: #888;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: #222;
  color: #fff;
}

/* Game Over Prompts */
.guest-prompt {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}

.guest-prompt p {
  color: #888;
  margin-bottom: 12px;
}

.signup-prompt-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.signup-prompt-btn:hover {
  opacity: 0.9;
}

.save-status {
  padding: 12px;
  border-radius: 8px;
  margin: 16px 0;
  text-align: center;
  font-size: 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

.save-status.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.save-status a {
  color: inherit;
  font-weight: 600;
}

/* Global Footer */
.global-footer {
  width: 100%;
  max-width: 900px;
  margin: auto auto 0;
  padding: 24px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #888;
}

.footer-divider {
  color: #444;
}

/* Ad Banner - base styles (component has scoped styles) */
.ad-banner {
  width: 100%;
  margin-top: 16px;
  min-height: 90px;
}

/* AdSense responsive container */
.adsbygoogle {
  display: block;
  min-height: 90px;
}

/* Development placeholder (used by AdBanner component) */
.ad-placeholder {
  background: #1a1a1c;
  border: 1px dashed #333;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ad-placeholder small {
  font-size: 10px;
  color: #444;
}

/* Avatar styles */
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 8px;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-section .profile-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-username {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-email {
  color: #888;
  font-size: 14px;
}
