/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  overflow: hidden;
  padding: 60px 20px 80px;
}

/* Spotlight lights effect */
.lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}

.hero h1 {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* ===== BUTTONS ===== */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn.primary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.btn.primary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 20px;
  background: #0f0f0f;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.sports-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2.2rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  padding: 30px 20px;
  background: #000;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
  font-size: 0.9rem;
  color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    padding: 40px 16px 60px;
  }

  .logo {
    max-width: 240px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .sports-icons {
    gap: 20px;
    font-size: 1.8rem;
  }

  .about {
    padding: 60px 16px;
  }
}