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

:root {
  --primary-green: #0b0bd4;
  --secondary-green: #05065f;
  --accent-gold: #d4af37;
  --dark-bg: #0d1f0d;
  --light-text: #f5f5f5;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0d1f0d 0%,
    var(--primary-green) 50%,
    #0d1f0d 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>')
    repeat;
  background-size: 200px;
  animation: float 20s linear infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  }
  to {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.9;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-top: 2rem;
  max-width: 600px;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #0d1f0d 0%, var() 100%);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1rem auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
}

.about-card p {
  line-height: 1.8;
  opacity: 0.9;
}

/* Sponsorship Section */
.sponsorship {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--primary-green) 0%, #0d1f0d 100%);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sponsor-card {
  background: linear-gradient(
    145deg,
    var(--primary-green),
    rgba(13, 31, 13, 0.9)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.sponsor-card:hover::before {
  left: 100%;
}

.sponsor-card:hover {
  border-color: var(--accent-gold);
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.sponsor-type {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem 0;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.benefits-list {
  list-style: none;
  margin-top: 1.5rem;
}

.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.highlight-box {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 0 10px 10px 0;
}

.discount-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

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

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a5f2a 0%, #0d1f0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #b8941f);
  color: #000;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
  background: #0a150a;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-text {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

/* Print styles */
@media print {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .scroll-indicator {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .about-card,
  .sponsor-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
