:root {
  --primary-orange: #ff6b35;
  --dark-orange: #e55a2b;
  --light-orange: #ffb199;
  --accent-orange: #ff8c69;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --light-bg: #fafafa;
  --white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-light: rgba(255, 107, 53, 0.1);
  --shadow-medium: rgba(255, 107, 53, 0.2);
  --shadow-heavy: rgba(255, 107, 53, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Football Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--dark-orange) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.football-loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.football {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  animation: bounce 1.5s infinite ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.football::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(
      45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    );
  border-radius: 50%;
}

.football-emoji {
  font-size: 100px;
  animation: bounce 1.5s infinite ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.football-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: shadowPulse 1.5s infinite ease-in-out;
}
.loader-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  animation: textFade 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.1;
  }
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Navigation with Orange Accents */
.navbar {
  background: var(--white);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow-light);
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 5px 40px var(--shadow-medium);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border: 3px solid var(--white);
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-placeholder {
  transform: rotate(360deg);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 1.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transition: width 0.3s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section with Enhanced Orange Elements */
.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f2 100%);
  padding: 8rem 0 6rem;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.hero-content .highlight {
  color: var(--primary-orange);
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 3px;
  animation: expandWidth 2s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-heavy);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-orange);
  padding: 18px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
@media (max-width: 425px) {
  .navbar-brand span {
    display: none;
  }
}

.hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Enhanced Goals Section */
.goals-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px var(--shadow-medium);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px var(--shadow-heavy);
}

.feature-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* Enhanced Programs Section */
.programs-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff8f5 100%);
  position: relative;
}

.program-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px var(--shadow-medium);
}

.program-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image {
  transform: scale(1.1);
}

.program-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.program-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.program-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.program-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.program-cta {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-light);
}

.program-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--shadow-medium);
  color: white;
}

/* Enhanced Video Section */
.video-section {
  padding: 8rem 0;
  background: var(--white);
}

.video-content h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.video-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.video-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
}

.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.video-item.large {
  grid-row: span 2;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-item:hover img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

/* Footer with Orange Accents */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0f0f0f 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Floating animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glitch effect for title */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 10000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  width: 0%;
  transition: width 0.3s ease;
}

/* Enhanced button animations */
.cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Additional modern animations */
.feature-icon {
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced program card effects */
.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.program-card:hover::before {
  left: 100%;
}

/* Modern loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Interactive hover states */
.navbar-brand:hover {
  filter: drop-shadow(0 0 20px var(--primary-orange));
}

/* Enhanced footer styling */
.footer {
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .scroll-progress {
    height: 3px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .feature-card,
  .program-card {
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --text-gray: #b0b0b0;
    --light-bg: #1a1a1a;
    --white: #2a2a2a;
    --border-light: #404040;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-item.large {
    grid-row: span 1;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .goals-section,
  .programs-section,
  .video-section {
    padding: 5rem 0;
  }
}
