/* ============================================================
   CODEFINDER007 — Hall of Fame Styles
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hof-hero {
  padding: 120px 2rem 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hof-hero-inner { max-width: 600px; margin: 0 auto; }

.hof-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hof-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hof-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── AdSense ──────────────────────────────────────────────── */
.adsense-container {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.adsense-placeholder {
  background: rgba(201,168,76,0.05);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── Stats ────────────────────────────────────────────────── */
.hof-stats-section { position: relative; z-index: 1; }

.hof-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .hof-stats-grid { grid-template-columns: 1fr; }
}

.hof-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}
.hof-stat-card:hover { transform: translateY(-3px); }
.hof-stat-card.gold  { border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.15); }

.hof-stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.hof-stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ── Gewinner Liste ───────────────────────────────────────── */
.hof-list-section { position: relative; z-index: 1; }

.hof-loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.hof-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hof-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}
.hof-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.hof-empty h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}
.hof-empty p { color: var(--text-muted); font-size: 0.9rem; }

.hof-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.hof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.hof-card:hover {
  transform: translateX(4px);
  border-color: var(--border-bright);
}
.hof-card-first {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201,168,76,0.15);
  background: linear-gradient(135deg, var(--bg-card) 80%, rgba(201,168,76,0.05));
}

.hof-card-rank {
  font-size: 1.8rem;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.hof-card-info { flex: 1; }

.hof-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hof-premium-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.hof-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hof-card-prize {
  text-align: right;
  flex-shrink: 0;
}
.hof-prize-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.hof-prize-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 500px) {
  .hof-card { flex-wrap: wrap; }
  .hof-card-prize { width: 100%; text-align: left; }
}

/* ── CTA ──────────────────────────────────────────────────── */
.hof-cta-section { position: relative; z-index: 1; padding-bottom: 4rem; }

.hof-cta-inner {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(201,168,76,0.12);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hof-cta-icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.hof-cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-main);
  margin-bottom: 0.8rem;
}
.hof-cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hof-cta-btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
}

/* ── Footer Support Link ──────────────────────────────────── */
.footer-support {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.footer-support a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-support a:hover { color: var(--gold-light); }
