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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #080808;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Header */
header {
  padding: 1.5rem 1rem;
  background-color: rgba(22, 22, 22, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #909090;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FF6B00;
}

/* Hero Section with Pitch Background */
.hero {
  position: relative;
  padding: 4rem 1rem;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.95)),
    repeating-linear-gradient(
      0deg,
      rgba(34, 139, 34, 0.03) 0px,
      transparent 1px,
      transparent 50px,
      rgba(34, 139, 34, 0.03) 51px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(34, 139, 34, 0.03) 0px,
      transparent 1px,
      transparent 50px,
      rgba(34, 139, 34, 0.03) 51px
    ),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6B00, transparent);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #909090;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.app-badge {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-badge:hover {
  transform: translateY(-2px);
}

.app-badge img {
  height: 50px;
  width: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #FFFFFF;
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: #161616;
  border-radius: 16px;
  padding: 2rem;
  border-top: 4px solid #FF6B00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.feature-card p {
  color: #909090;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hub Stats */
.hub-stats {
  background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

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

.stat-item {
  background: rgba(255, 107, 0, 0.1);
  border: 2px solid #FF6B00;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF6B00;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: #161616;
  border-radius: 16px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 4rem 0;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.cta-content p {
  color: #909090;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-mockup {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-mockup::before {
  content: '⚽';
  position: absolute;
  font-size: 15rem;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone-frame {
  width: 200px;
  height: 400px;
  background: #080808;
  border-radius: 32px;
  border: 8px solid #0a0a0a;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #161616;
  border-radius: 2px;
}

/* Footer */
footer {
  background: #161616;
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #909090;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF6B00;
}

.footer-text {
  color: #909090;
  font-size: 0.85rem;
}

/* Policy Pages */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.policy-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.policy-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #FF6B00;
}

.policy-page h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: #FFFFFF;
}

.policy-page p {
  color: #909090;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-page ul {
  color: #909090;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.8;
}

.policy-page a {
  color: #FF6B00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-page a:hover {
  color: #FF8C00;
  text-decoration: underline;
}

.effective-date {
  color: #909090;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-box {
  background: #161616;
  border-radius: 16px;
  padding: 2rem;
  border-top: 4px solid #FF6B00;
  margin-top: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info strong {
  color: #FF6B00;
}

.contact-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .app-badge img {
    height: 60px;
  }

  .cta-section {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    gap: 2.5rem;
  }
}

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

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

  nav {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}
