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

:root {
  --green: #203731;
  --gold: #FFB612;
  --white: #ffffff;
  --dark: #111111;
  --card-bg: #1a1a1a;
}

body {
  font-family: 'Georgia', serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--green) 0%, #0d1f1b 100%);
  text-align: center;
  padding: 80px 20px 100px;
  border-bottom: 6px solid var(--gold);
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.trophy {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 var(--green);
  line-height: 1.1;
}

.tagline { font-size: 1.2rem; color: #ccc; margin: 16px 0 24px; }

.record-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,182,18,0.4); }

.section { padding: 80px 20px; text-align: center; }

.section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sub {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section.dark { background: #111; }
.section.dark h2 { color: var(--gold); }
.section.green { background: var(--green); }
.section.green h2 { color: var(--gold); }
.section.green .sub { color: #9cc; }
.section.gold { background: var(--gold); }
.section.gold h2 { color: var(--green); }
.section.gold .sub { color: var(--green); opacity: 0.8; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 28px 20px;
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: #ccc; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.stat { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label { font-size: 0.9rem; color: #9cc; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.legends {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.legend-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 28px 20px;
  transition: transform 0.2s;
}

.legend-item:hover { transform: translateY(-4px); }

.legend-number { font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.legend-name { font-size: 1.15rem; font-weight: 700; margin: 8px 0 6px; color: #fff; }
.legend-desc { font-size: 0.88rem; color: #aaa; }

.video-wrapper { max-width: 700px; margin: 0 auto; }

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 4px solid var(--green);
}

.video-note { margin-top: 12px; font-size: 0.85rem; color: var(--green); opacity: 0.75; }

.chant-section { background: #0a0a0a; }

.chant {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.chant span {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #333;
  animation: pulse 2.5s ease-in-out infinite;
}

.chant span:nth-child(2) { animation-delay: 0.2s; }
.chant span:nth-child(3) { animation-delay: 0.4s; }
.chant span:nth-child(4) { animation-delay: 0.6s; color: #ff4444; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.btn-chant {
  background: var(--gold);
  color: var(--green);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
}

.btn-chant:active { transform: scale(0.96); }
.btn-chant:hover { box-shadow: 0 6px 20px rgba(255,182,18,0.45); }

.chant-response { margin-top: 24px; font-size: 1.4rem; color: var(--gold); min-height: 2rem; font-weight: 700; letter-spacing: 1px; }

.footer {
  background: var(--green);
  border-top: 6px solid var(--gold);
  text-align: center;
  padding: 40px 20px;
}

.footer p { font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.footer-sub { font-size: 0.8rem; color: #9cc; font-weight: 400; margin-top: 8px; }

/* ===== DRAFT BUST HOF ===== */
.bust-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.bust-track-wrapper { overflow: hidden; flex: 1; }

.bust-track { position: relative; min-height: 260px; }

.bust-card {
  display: none;
  background: #111;
  border: 1px solid #2a2a2a;
  border-top: 4px solid #C83803;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.bust-card.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bust-emoji { font-size: 3.5rem; display: block; margin-bottom: 12px; }

.bust-pick {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C83803;
  margin-bottom: 6px;
  font-weight: 700;
}

.bust-name {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.bust-roast { font-size: 0.97rem; color: #bbb; line-height: 1.7; }

.bust-nav {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  line-height: 1;
}

.bust-nav:hover { background: var(--gold); color: var(--green); }

.bust-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.bust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.bust-dot.active { background: var(--gold); }

/* ===== WHEEL OF PAIN ===== */
.wheel-container {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  padding-top: 24px;
}

.wheel-pointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--gold);
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  line-height: 1;
}

#wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 5px var(--gold);
  max-width: calc(100vw - 60px);
}

.btn-spin {
  display: block;
  margin: 0 auto 20px;
  background: var(--gold);
  color: var(--green);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 44px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
  transition: transform 0.1s, box-shadow 0.15s;
}

.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,182,18,0.45); }
.btn-spin:active { transform: scale(0.96); }
.btn-spin:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.wheel-result {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  min-height: 2.5rem;
  max-width: 540px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(255,182,18,0.08);
  border: 1px solid rgba(255,182,18,0.2);
  transition: opacity 0.3s;
}

@media (max-width: 480px) {
  .hero { padding: 60px 16px 70px; }
  .section { padding: 60px 16px; }
  .chant { gap: 10px; }
}
