:root {
  --bg: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --bg-card: #242424;
  --fg: #FAFAFA;
  --fg-muted: #A0A0A0;
  --accent: #FF6D00;
  --accent-light: #FF9E40;
  --accent-glow: rgba(255, 109, 0, 0.15);
  --warm: #FFF3E0;
  --court-line: rgba(255, 109, 0, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 18vw, 20rem);
  color: rgba(255, 109, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.05em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tag {
  padding: 0.4rem 1rem;
  background: var(--bg-card);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-volleyball {
  position: absolute;
  right: -5%;
  top: 15%;
  width: clamp(200px, 30vw, 400px);
  opacity: 0.12;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ====== PUNS SECTION ====== */
.puns {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.puns-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.puns-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.puns-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.pun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pun-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pun-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.pun-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pun-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--warm);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pun-context {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ====== FEATURES ====== */
.features {
  padding: 6rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.feature-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== TEAM SECTION ====== */
.team-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.team-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.team-content h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.team-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
}

.audience-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.audience-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.audience-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ====== CLOSING ====== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 109, 0, 0.05) 100%);
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .pun-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-volleyball {
    display: none;
  }
}

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

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .puns, .features, .team-section {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }
}