::selection {
  background-color: #fbbf24;
  color: #1e3a8a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enhanced Body Background */
body {
  font-family: "Roboto", "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.5;
  /* background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 25%, #1e40af 50%, #1e3a8a 75%, #0a1628 100%); */
  background: #1e3a8a;
  /* background-size: 400% 400%;
  animation: gradientShift 15s ease infinite; */
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  animation: backgroundPulse 20s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(251, 191, 36, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: floatingStars 25s linear infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes floatingStars {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-150px);
  }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  width: 80px;
  /* height: 40px; */
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(251, 191, 36, 0.4));
  /* animation: logoSpin 10s linear infinite; */
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.nav-link.active {
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  /* transition: all 0.3s ease; */
}

.nav-toggle:hover {
  background: rgba(251, 191, 36, 0.1);
}

.bar {
  width: 25px;
  height: 3px;
  background: #fbbf24;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Adjust header to account for navbar */
.championship-header {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 70px; /* Account for fixed navbar */
}

/* Responsive Navigation */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: 200px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin: 5px 0;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px;
    height: 60px;
  }

  .navbar {
    height: 60px;
  }

  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .championship-header {
    margin-top: 60px;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .nav-logo-img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }

  .nav-brand {
    font-size: 0.9rem;
  }

  .nav-logo-img {
    width: 30px;
    height: 30px;
  }
}

.championship-header {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 15px;
}


.championship-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(5deg);
}

.uae-flag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flag-image {
  width: 100px;
  height: 67px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
}

.content-left {
  flex: 1;
  text-align: center;
}

.main-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  color: #fbbf24;
  /* padding-left: 250px; */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.subtitle {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.description {
  margin-bottom: 30px;
}

.clubs-academies {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-bottom: 12px;
  font-weight: 400;
}

.locations {
  font-size: 1.1rem;
  color: #fbbf24;
  margin-bottom: 12px;
  font-weight: 500;
}

.champion {
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
}

.content-right {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trophy-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trophy-image {
  width: 250px;
  height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.trophy-image:hover {
  filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.4)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

/* Bottom Section */
.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 30px;
  gap: 30px;
}

.event-details {
  flex: 1;
}

.dates-info p {
  margin-bottom: 4px;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 400;
}

.dates-info p:first-child {
  font-weight: 600;
  margin-bottom: 8px;
}

.organizer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.organizer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.organizer-logo-image {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.organizer-details p {
  margin-bottom: 2px;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 400;
}

/* Image loading states */
.logo-image,
.flag-image,
.trophy-image,
.organizer-logo-image {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Ensure images maintain aspect ratio */
.logo-image {
  aspect-ratio: 1 / 1;
}

.flag-image {
  aspect-ratio: 3 / 2;
}

.trophy-image {
  aspect-ratio: 3 / 4;
}

.organizer-logo-image {
  aspect-ratio: 1 / 1;
}

/* Loading animation for images */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.logo-image:not([src*="blob"]):not([src*="data"]),
.flag-image:not([src*="blob"]):not([src*="data"]),
.trophy-image:not([src*="blob"]):not([src*="data"]),
.organizer-logo-image:not([src*="blob"]):not([src*="data"]) {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Participating Teams & Scope Section */
.teams-scope-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
}

.teams-scope-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle h3 {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stats-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-stats {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emirates-card {
  grid-column: 2;
  grid-row: 1;
}

.highlight-card {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number.large {
  font-size: 3.8rem;
}

.stat-label {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  margin-bottom: 15px;
}

.stat-divider {
  width: 80%;
  height: 2px;
  background: #fbbf24;
  margin: 15px auto;
}

.sub-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.sub-number {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  min-width: 50px;
}

.sub-label {
  font-size: 1rem;
  color: white;
  font-weight: 400;
}

.highlight-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Total Participants Section - FIXED DIAMONDS */
.total-participants-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.total-participants-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.diamonds-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 40px 0;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.diamond-card {
  width: 250px;
  height: 250px;
  
  background: linear-gradient(135deg, #1e40af, #3b82f6, #1e40af);
  transform: rotate(45deg);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.diamond-content {
  transform: rotate(-45deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coaching-card {
  margin-top: 80px;
}

.diamond-card:hover {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.diamond-icon {
  margin-bottom: 10px;
}

.icon-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.diamond-number {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.diamond-label {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.diamond-sublabel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.diamond-text {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Championship Description Section */
.championship-description-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.championship-description-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.championship-description-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.section-title-group {
  flex: 1;
}

.championship-description-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.championship-description-section .section-subtitle {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  color: #fbbf24;
  font-weight: 600;
  margin: 0;
}

.description-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 40px 0;
}

.description-card {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 25px;
  padding: 40px 30px;
  flex: 0 0 45%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.description-text {
  flex: 1;
}

.description-text p {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: white;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* Venue & Event Details Section */
.venue-details-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.venue-details-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.venue-details-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.venue-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 40px 0;
}

.venue-image-container {
  flex: 0 0 45%;
  position: relative;
}

.stadium-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stadium-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.venue-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.info-card {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-icon,
.calendar-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 6px;
  line-height: 1;
}

.card-text {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
  margin: 0;
}

.dates-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.date-item {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.date-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.attendance-card {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 20px;
  padding: 20px;
  transform: rotate(45deg);
  width: 150px;
  height: 150px;
  position: absolute;
  right: -15px;
  bottom: -30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attendance-content {
  transform: rotate(-45deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.attendance-label {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.75rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1;
}

.attendance-number {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 6px;
}

.attendance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0);
}

/* Tournament Structure Section */
.tournament-structure-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.tournament-structure-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.tournament-structure-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.tournament-structure-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
}

.tournament-structure-section .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.tournament-structure-section .section-subtitle h3 {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tournament-cards {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.tournament-card {
  flex: 1;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 10px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.card-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fbbf24;
  line-height: 1.2;
  max-width: 70%;
}

.card-icon {
  flex-shrink: 0;
}

.icon-diamond {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: rotate(45deg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.icon-text {
  font-family: "Poppins", "Roboto", sans-serif;
  transform: rotate(-45deg);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.trophy-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0);
  transform: rotate(-45deg);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #fbbf24;
  border-radius: 50%;
  margin-top: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  line-height: 1.2;
}

.timeline-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
}

.finals-structure {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.final-match,
.final-result {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 15px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.match-icon,
.result-icon {
  width: 25px;
  height: 25px;
  background: #fbbf24;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0);
}

.match-content,
.result-content {
  flex: 1;
  text-align: center;
}

.match-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.match-vs {
  font-size: 0.85rem;
  color: #fbbf24;
  font-weight: 600;
  margin: 4px 0;
}

.result-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

/* Vision & Purpose Section */
.vision-purpose-section {
  /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #1e3a8a 60%, #0f172a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.vision-purpose-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.vision-purpose-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.vision-purpose-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
}

.vision-content {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 40px 0;
  height: 500px;
}

.vision-left {
  flex: 0 0 35%;
  background: rgba(30, 64, 175, 0.1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px 0 0 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-main-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vision-divider {
  width: 80px;
  height: 4px;
  background: #fbbf24;
  margin-bottom: 25px;
}

.vision-subtitle {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.3rem;
  color: white;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

.vision-right {
  flex: 1;
  position: relative;
  border-radius: 0 25px 25px 0;
  overflow: hidden;
}

.players-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.players-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.7), rgba(59, 130, 246, 0.5));
  z-index: 2;
}

.vision-aims {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aims-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.aims-cards {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.aim-card {
  background: rgba(30, 64, 175, 0.8);
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aim-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.aim-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.settings-icon,
.trophy-aim-icon,
.runner-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0);
  transform: rotate(-45deg);
}

.aim-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: white;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* The Competitive Edge Section */
.competitive-edge-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%);
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.competitive-edge-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.competitive-edge-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.competitive-edge-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.competitive-edge-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.edge-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 40px 0;
  position: relative;
}

.edge-left {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.edge-icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.edge-icon .icon-diamond {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  transform: rotate(45deg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.edge-icon .icon-diamond::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
}

.edge-icon .icon-diamond:hover {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 20px 45px rgba(251, 191, 36, 0.6);
}

.running-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0);
  transform: rotate(-45deg);
}

.edge-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.edge-main-text {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.edge-description {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.edge-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stadium-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
}

.stadium-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.stadium-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
  border-radius: 43px;
  z-index: -1;
  opacity: 0.8;
  filter: blur(10px);
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% {
    opacity: 0.6;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(12px);
  }
}

.stadium-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
}

.stadium-aerial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stadium-frame:hover .stadium-aerial-image {
  transform: scale(1.05);
}

.stadium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.2) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    rgba(251, 191, 36, 0.1) 100%
  );
  pointer-events: none;
}

.stadium-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Floating particles animation */
.competitive-edge-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(251, 191, 36, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.4), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: floatParticles 20s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

/* Competitive Advantages Section */
.competitive-advantages-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%);
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.competitive-advantages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.competitive-advantages-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.competitive-advantages-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.competitive-advantages-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.competitive-advantages-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleUnderline 2s ease-out 0.5s both;
}

@keyframes titleUnderline {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin: 50px 0;
  position: relative;
}

.advantage-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
  border-radius: 25px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.advantage-card:hover::before {
  opacity: 0.8;
}

.advantage-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(251, 191, 36, 0.3);
  border-color: rgba(251, 191, 36, 0.6);
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.2) 0%,
    rgba(251, 191, 36, 0.1) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.advantage-card:hover .card-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  height: 100%;
  justify-content: center;
}

.advantage-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
}

.advantage-card:hover .icon-circle {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
}

.check-icon {
  height: 35px;
  object-fit: contain;
  filter: brightness(0);
}

.icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 3px solid rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
  0% {
    width: 70px;
    height: 70px;
    opacity: 1;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

.advantage-card:hover .icon-ripple {
  animation-duration: 1s;
}

.advantage-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  color: white;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover .card-particles {
  opacity: 1;
}

.card-particles::before,
.card-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  animation: floatParticle 3s ease-in-out infinite;
}

.card-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.card-particles::after {
  top: 70%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

/* Staggered animation entrance */
.advantage-card {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.advantage-card.animate-in {
  animation: cardEnter 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes cardEnter {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Connecting lines animation */
.advantages-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 191, 36, 0.3) 20%,
    rgba(251, 191, 36, 0.6) 50%,
    rgba(251, 191, 36, 0.3) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  opacity: 0;
  animation: connectingLine 2s ease-out 1s both;
}

@keyframes connectingLine {
  0% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

/* Athlete Experience Section */


/* .athlete-experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
} */

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.athlete-experience-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.athlete-experience-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.athlete-experience-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.athlete-experience-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.athlete-experience-section .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.athlete-experience-section .section-subtitle h3 {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}

.athlete-experience-section .section-subtitle h3::before {
  content: "✦";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.athlete-experience-section .section-subtitle h3::after {
  content: "✦";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 1fr;
  grid-template-rows: 1fr;
  gap: 25px;
  margin: 50px 0;
  position: relative;
}

.experience-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.experience-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Resort Card */
.resort-card {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border: 2px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.resort-card:hover {
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 30px 60px rgba(251, 191, 36, 0.2);
}

.card-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.resort-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resort-card:hover .resort-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.2) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    rgba(251, 191, 36, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resort-card:hover .image-overlay {
  opacity: 1;
}

.luxury-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  padding: 8px 16px;
  border-radius: 20px;
  transform: rotate(15deg);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  animation: badgeFloat 3s ease-in-out infinite;
}

.luxury-badge22 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centers horizontally and vertically */
  padding: 12px 24px;
  background: linear-gradient(105deg, #fbbf24, #f59e0b, #d97706);
  color: #000; /* text color (adjust if needed) */
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  max-width: 80%; /* so it doesn’t touch the edges */
}


@keyframes badgeFloat {
  0%,
  100% {
    transform: rotate(15deg) translateY(0px);
  }
  50% {
    transform: rotate(15deg) translateY(-5px);
  }
}

.badge-text {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

/* Text Cards */
.text-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 25px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.text-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.text-card:hover::before {
  opacity: 1;
  animation: borderSweep 2s ease-in-out infinite;
}

@keyframes borderSweep {
  0% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  }
  50% {
    background: linear-gradient(225deg, transparent, rgba(251, 191, 36, 0.8), transparent);
  }
  100% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  }
}

.card-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hotel-icon,
.museum-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.text-card:hover .hotel-icon,
.text-card:hover .museum-icon {
  transform: scale(1.2) rotate(10deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
}

.card-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.2rem;
  color: white;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.card-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.text-card:hover .card-particles {
  opacity: 1;
}

.card-particles::before,
.card-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  animation: floatParticles 4s ease-in-out infinite;
}

.card-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.card-particles::after {
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes floatParticles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) scale(1.3);
    opacity: 1;
  }
}

/* Landmarks Card */
.landmarks-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border: 2px solid rgba(251, 191, 36, 0.3);
  padding: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.landmarks-card:hover {
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 30px 60px rgba(251, 191, 36, 0.2);
}

.landmark-image-top,
.landmark-image-bottom {
  position: relative;
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  min-height: 160px;
}

.stadium-aerial,
.future-museum {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.landmarks-card:hover .stadium-aerial,
.landmarks-card:hover .future-museum {
  transform: scale(1.08);
}

.landmark-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 12px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.label-text {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.5px;
}

/* Card Glow Effects */
.card-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.experience-card:hover .card-glow-effect {
  opacity: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Experience Banner */
.experience-banner {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #1e40af);
  border-radius: 30px;
  padding: 25px 40px;
  margin: 50px 0 30px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
  animation: bannerShine 3s ease-in-out infinite;
}

@keyframes bannerShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.banner-icon {
  flex-shrink: 0;
}

.star-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.banner-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-decoration {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
  border-radius: 2px;
  animation: decorationPulse 2s ease-in-out infinite;
}

@keyframes decorationPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.2);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-title {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.6rem;
  }

  .trophy-image {
    width: 200px;
    height: 270px;
  }

  .content-right {
    flex: 0 0 200px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-subtitle h3 {
    font-size: 1.4rem;
  }

  .stat-number.large {
    font-size: 3.2rem;
  }

  .stat-number {
    font-size: 2.6rem;
  }

  .diamonds-container {
    max-width: 700px;
    gap: 50px;
  }

  .diamond-card {
   width: 250px;
  height: 250px;
  
  }

  .coaching-card {
    margin-top: 70px;
  }

  .diamond-number {
    font-size: 2.4rem;
  }

  .championship-description-section .section-title {
    font-size: 2.4rem;
  }

  .championship-description-section .section-subtitle {
    font-size: 1.2rem;
  }

  .description-content {
    gap: 50px;
  }

  .card-text {
    font-size: 1.2rem;
  }

  .description-text p {
    font-size: 1.4rem;
  }

  .venue-content {
    gap: 40px;
  }

  .stadium-image {
    height: 280px;
  }

  .attendance-card {
    width: 130px;
    height: 130px;
    right: -12px;
    bottom: -25px;
  }

  .attendance-number {
    font-size: 0.7rem;
  }

  .tournament-cards {
    gap: 25px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .tournament-card {
    min-height: 380px;
  }

  .vision-content {
    height: 450px;
  }

  .vision-main-title {
    font-size: 2.8rem;
  }

  .vision-subtitle {
    font-size: 1.2rem;
  }

  .aims-title {
    font-size: 1.2rem;
  }

  .aim-text {
    font-size: 0.9rem;
  }

  .competitive-edge-section .section-title {
    font-size: 2.8rem;
    /* margin-top: 25em; */
  }

  .edge-content {
    gap: 50px;
  }

  .edge-main-text {
    font-size: 2rem;
  }

  .edge-description {
    font-size: 1.2rem;
  }

  .stadium-container {
    max-width: 500px;
    height: 350px;
  }

  .edge-icon .icon-diamond {
    width: 70px;
    height: 70px;
  }

  .running-icon {
    width: 40px;
    height: 40px;
  }

  /* Add to @media (max-width: 1200px) */
  .competitive-advantages-section .section-title {
    font-size: 2.8rem;
  }

  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .advantage-card {
    min-height: 250px;
    padding: 30px 20px;
  }

  .advantage-text {
    font-size: 1rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .check-icon {
    width: 30px;
    height: 30px;
  }

  /* Athlete Experience Section */
  .athlete-experience-section .section-title {
    font-size: 2.8rem;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }

  .landmarks-card {
    grid-column: span 2;
  }

  .card-image-container {
    min-height: 300px;
  }

  .text-card {
    min-height: 300px;
    padding: 25px 20px;
  }

  .banner-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 968px) {
  .container {
    padding: 25px 15px;
  }

  .main-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .content-right {
    flex: none;
  }

  .main-title {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .locations {
    font-size: 1rem;
  }

  .trophy-image {
    width: 160px;
    height: 210px;
  }

  .organizer-logo-image {
    width: 25px;
    height: 25px;
  }

  .main-content {
    gap: 25px;
  }

  .bottom-section {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .teams-scope-section {
    padding: 30px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .section-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .section-logo-image {
    width: 70px;
    height: 70px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  .main-stats {
    grid-row: span 1;
  }

  .emirates-card {
    grid-column: 1;
    grid-row: auto;
  }

  .highlight-card {
    grid-column: 1;
    grid-row: auto;
  }

  .stats-card {
    padding: 25px 18px;
  }

  .total-participants-section {
    padding: 30px 0;
  }

  .diamonds-container {
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
  }

  .coaching-card {
    margin-top: 0;
  }

  .diamond-card {
   width: 250px;
  height: 250px;
  
  }

  .diamond-number {
    font-size: 2.2rem;
  }

  .championship-description-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .championship-description-section .section-title {
    font-size: 2rem;
  }

  .championship-description-section .section-subtitle {
    font-size: 1.1rem;
  }

  .description-content {
    flex-direction: column;
    /* gap: 30px; */
    /* margin-top:-15em; */
  }

  .description-card {
    flex: none;
    width: 100%;
  }

  .card-text {
    font-size: 1.1rem;
  }

  .description-text p {
    font-size: 1.3rem;
    text-align: center;
  }

  .venue-content {
    flex-direction: column;
    gap: 30px;
  }

  .venue-image-container {
    flex: none;
    width: 100%;
  }

  .stadium-image {
    height: 240px;
  }

  .venue-info {
    position: relative;
  }

  .attendance-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 15px auto 0;
    transform: rotate(45deg);
  }

  .info-card {
    padding: 18px 20px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .tournament-cards {
    flex-direction: column;
    gap: 25px;
  }

  .tournament-card {
    min-height: 320px;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-header {
    margin-bottom: 25px;
  }

  .card-title {
    font-size: 1.2rem;
    max-width: 80%;
  }

  .vision-content {
    flex-direction: column;
    height: auto;
  }

  .vision-left {
    flex: none;
    border-radius: 25px 25px 0 0;
    padding: 30px 25px;
  }

  .vision-main-title {
    font-size: 2.4rem;
  }

  .vision-subtitle {
    font-size: 1.1rem;
  }

  .vision-right {
    border-radius: 0 0 25px 25px;
    min-height: 400px;
  }

  .vision-aims {
    padding: 30px 25px;
  }

  .aims-title {
    font-size: 1.1rem;
  }

  .aim-text {
    font-size: 0.9rem;
  }

  /* Add to @media (max-width: 968px) */
  .competitive-advantages-section {
    padding: 30px 0;
  }

  .competitive-advantages-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .competitive-advantages-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
  }

  .advantage-card {
    min-height: 220px;
    padding: 25px 18px;
  }

  .advantage-text {
    font-size: 0.95rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .check-icon {
    width: 25px;
    height: 25px;
  }

  /* Athlete Experience Section */
  .athlete-experience-section {
    padding: 30px 0;
  }

  .athlete-experience-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .athlete-experience-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .athlete-experience-section .section-subtitle {
    margin-bottom: 40px;
  }

  .athlete-experience-section .section-subtitle h3 {
    font-size: 1.6rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }

  .landmarks-card {
    grid-column: span 1;
    flex-direction: row;
    gap: 15px;
  }

  .landmark-image-top,
  .landmark-image-bottom {
    min-height: 120px;
  }

  .card-image-container {
    min-height: 250px;
  }

  .text-card {
    min-height: 200px;
    padding: 25px 20px;
  }

  .card-text {
    font-size: 1.1rem;
  }

  .experience-banner {
    padding: 20px 30px;
    margin: 40px 0 25px;
  }

  .banner-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .top-section {
   
    gap: 15px;
    display: flex;
  align-items: center;
  justify-content: space-between;
  
  margin-bottom: 15px;
  }


  .logo-image {
    width: 80px;
    height: 80px;
  }

  .flag-image {
    width: 80px;
    height: 53px;
  }

  .main-title {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .clubs-academies,
  .champion {
    font-size: 1rem;
  }

  .locations {
    font-size: 1rem;
  }

  .trophy-image {
    width: 160px;
    height: 210px;
  }

  .organizer-logo-image {
    width: 25px;
    height: 25px;
  }

  .main-content {
    gap: 25px;
  }

  .bottom-section {
    gap: 18px;
  }

  .teams-scope-section {
    padding: 25px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle h3 {
    font-size: 1.2rem;
  }

  .stat-number.large {
    font-size: 2.8rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .sub-number {
    font-size: 1.6rem;
  }

  .sub-label {
    font-size: 0.9rem;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .diamond-card {
   width: 250px;
  height: 250px;
  
    border-radius: 25px;
  }

  .diamond-number {
    font-size: 2rem;
  }

  .diamond-label {
    font-size: 1rem;
  }

  .diamond-sublabel {
    font-size: 0.8rem;
  }

  .icon-image {
    width: 35px;
    height: 35px;
  }

  .championship-description-section .section-title {
    font-size: 1.8rem;
  }

  .championship-description-section .section-subtitle {
    font-size: 1rem;
  }

  .description-card {
    padding: 30px 25px;
  }

  .card-text {
    font-size: 1rem;
  }

  .description-text p {
    font-size: 1.2rem;
  }

  .venue-details-section {
    padding: 30px 0;
  }

  .venue-details-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .stadium-image {
    height: 200px;
    border-radius: 18px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 15px 18px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .venue-icon,
  .calendar-icon {
    width: 30px;
    height: 30px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .date-item {
    font-size: 0.85rem;
  }

  .date-subtitle {
    font-size: 0.75rem;
  }

  .attendance-card {
    width: 120px;
    height: 120px;
  }

  .attendance-number {
    font-size: 0.7rem;
  }

  .attendance-label {
    font-size: 0.7rem;
  }

  .people-icon {
    width: 20px;
    height: 20px;
  }

  .tournament-structure-section {
    padding: 30px 0;
    /* padding-top: 150px; */
    margin-top: 25em;
  }

  .tournament-structure-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .tournament-structure-section .section-title {
    max-width: 100%;
    font-size: 1.8rem;
  }

  .tournament-structure-section .section-subtitle {
    margin-bottom: 30px;
  }

  .tournament-structure-section .section-subtitle h3 {
    font-size: 1.2rem;
  }

  .tournament-card {
    min-height: 280px;
  }

  .card-content {
    padding: 20px 15px;
  }

  .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .vision-content {
    flex-direction: column;
    height: auto;
  }

  .vision-left {
    padding: 25px 20px;
  }

  .vision-main-title {
    font-size: 2rem;
  }

  .vision-subtitle {
    font-size: 0.9rem;
  }

  .vision-right {
    min-height: 350px;
  }

  .vision-aims {
    padding: 30px 25px;
  }

  .aims-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .aims-cards {
    gap: 15px;
  }

  .aim-card {
    padding: 15px 12px;
    border-radius: 15px;
  }

  .aim-icon {
    width: 40px;
    height: 40px;
  }

  .settings-icon,
  .trophy-aim-icon,
  .runner-icon {
    width: 25px;
    height: 25px;
  }

  .aim-text {
    font-size: 0.85rem;
  }

  /* Add to @media (max-width: 768px) */
  .competitive-advantages-section {
    padding: 25px 0;
  }

  .competitive-advantages-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .competitive-advantages-section .section-title {
    font-size: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }

  .advantage-card {
    min-height: 200px;
    padding: 20px 15px;
  }

  .advantage-text {
    font-size: 0.9rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .check-icon {
    width: 25px;
    height: 25px;
  }

  /* Athlete Experience Section */
  .athlete-experience-section {
    padding: 25px 0;
    /* margin-top: 10em; */
  }

  .athlete-experience-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .athlete-experience-section .section-title {
    font-size: 2rem;
  }

  .athlete-experience-section .section-subtitle {
    margin-bottom: 30px;
  }

  .athlete-experience-section .section-subtitle h3 {
    font-size: 1.4rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }

  .landmarks-card {
    flex-direction: column;
    gap: 12px;
  }

  .landmark-image-top,
  .landmark-image-bottom {
    min-height: 100px;
  }

  .card-image-container {
    min-height: 200px;
  }

  .text-card {
    min-height: 180px;
    padding: 20px 15px;
  }

  .card-text {
    font-size: 1rem;
  }

  .hotel-icon,
  .museum-icon {
    width: 40px;
    height: 40px;
  }

  .experience-banner {
    padding: 18px 25px;
    margin: 30px 0 20px;
  }

  .banner-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .championship-header {
    min-height: 135vh;
  }

  .container {
    height: 75vh;
    padding: 20px 12px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .flag-image {
    width: 60px;
    height: 40px;
  }

  .main-title {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .clubs-academies,
  .champion {
    font-size: 0.9rem;
  }

  .locations {
    font-size: 0.8rem;
  }

  .trophy-image {
    width: 100px;
    height: 130px;
  }

  .dates-info p {
    font-size: 0.8rem;
  }

  .organizer-logo-image {
    width: 20px;
    height: 20px;
  }

  .organizer-details p {
    font-size: 0.7rem;
  }

  .teams-scope-section {
    padding: 20px 0;
     min-height: 100vh;
  }

  .teams-scope-section .container {
    min-height: 60vh;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle h3 {
    font-size: 1.1rem;
  }

  .stat-number.large {
    font-size: 2.4rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .sub-number {
    font-size: 1.4rem;
  }

  .sub-label {
    font-size: 0.8rem;
  }

  .highlight-text {
    font-size: 0.9rem;
  }

  .footer-brand {
    font-size: 0.8rem;
  }

  .page-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .total-participants-section {
    padding: 20px 0;
     min-height: 78vh;
  }

  .total-participants-section .container {
    min-height: 60vh;
  }

  /* working diamond-card for mobile */
  .diamond-card {
   width: 200px;
  height: 200px;
  
    border-radius: 20px;
    margin-top: 75px;
  }

  #diamond-bottom{
    margin-bottom: 25em;
  }

  .diamond-number {
    font-size: 1.8rem;
  }

  .diamond-label {
    font-size: 0.9rem;
  }

  .diamond-sublabel {
    font-size: 0.7rem;
  }

  .diamond-text {
    font-size: 0.85rem;
  }

  .championship-description-section {
    padding: 20px 0;
    min-height: 60vh;
  }

  .championship-description-section .container {
    min-height: 60vh;
  }

  .championship-description-section .section-title {
    font-size: 1.6rem;
  }

  .championship-description-section .section-subtitle {
    font-size: 0.9rem;
  }

  .description-card {
    padding: 25px 20px;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .description-text p {
    font-size: 1.1rem;
  }

  .venue-details-section {
    padding: 20px 0;
    min-height: 140vh;
   
  }

  .venue-details-section .container {
    min-height: 60vh;
  }

  .venue-details-section .section-header {
    margin-bottom: 25px;
  }

  .stadium-image {
    height: 160px;
    border-radius: 15px;
  }

  .info-card {
    padding: 15px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-text {
    font-size: 0.8rem;
  }

  .date-item {
    font-size: 0.8rem;
  }

  .date-subtitle {
    font-size: 0.7rem;
  }

  .attendance-card {
    width: 100px;
    height: 100px;
    border-radius: 15px;
  }

  .attendance-number {
    font-size: 0.7rem;
  }

  .attendance-label {
    font-size: 0.65rem;
  }

  .tournament-structure-section {
    padding: 20px 0;
    min-height: 125vh;
    margin-top: -1em;
  }

  .tournament-structure-section .container {
    min-height: 60vh;
  }

  .tournament-structure-section .section-header {
    margin-bottom: 20px;
  }

  .tournament-structure-section .section-title {
    font-size: 1.6rem;
  }

  .tournament-structure-section .section-subtitle {
    margin-bottom: 25px;
  }

  .tournament-structure-section .section-subtitle h3 {
    font-size: 1.1rem;
  }

  .tournament-card {
    min-height: 240px;
    border-radius: 20px;
  }

  .card-content {
    padding: 15px;
  }

  .card-header {
    margin-bottom: 18px;
  }

  .card-title {
    font-size: 1rem;
  }

  .timeline-dot {
    width: 12px;
    height: 12px;
  }

  .timeline-title {
    font-size: 1rem;
  }

  .timeline-text {
    font-size: 0.9rem;
  }

  .final-match,
  .final-result {
    padding: 15px;
    border-radius: 12px;
  }

  .match-title {
    font-size: 0.9rem;
  }

  .match-vs {
    font-size: 0.8rem;
  }

  .result-title {
    font-size: 0.9rem;
  }

  .vision-purpose-section {
    padding: 20px 0;
    min-height: 120vh;
  }

  .vision-purpose-section .container {
    min-height: 100vh;
  }

  .vision-purpose-section .section-header {
    margin-bottom: 20px;
  }

  .vision-purpose-section .section-title {
    font-size: 1.6rem;
  }

  .vision-left {
    padding: 20px 15px;
    border-radius: 20px 20px 0 0;
  }

  .vision-main-title {
    font-size: 1.8rem;
  }

  .vision-subtitle {
    font-size: 0.8rem;
  }

  .vision-right {
    min-height: 300px;
    border-radius: 0 0 20px 20px;
  }

  .vision-aims {
    padding: 25px 20px;
  }

  .aims-title {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .aims-cards {
    gap: 12px;
  }

  .aim-card {
    padding: 12px 10px;
    border-radius: 15px;
  }

  .aim-icon {
    width: 35px;
    height: 35px;
  }

  .settings-icon,
  .trophy-aim-icon,
  .runner-icon {
    width: 20px;
    height: 20px;
  }

  .aim-text {
    font-size: 0.8rem;
  }

  /* Add to @media (max-width: 576px) */
  .competitive-advantages-section {
    padding: 20px 0;
  }

  .competitive-advantages-section .container {
    min-height: 60vh;
  }

  .competitive-advantages-section .section-header {
    margin-bottom: 20px;
  }

  .competitive-advantages-section .section-title {
    font-size: 1.6rem;
  }

  .advantages-grid {
    gap: 12px;
    margin: 25px 0;
  }

  .advantage-card {
    min-height: 180px;
    padding: 18px 12px;
    border-radius: 20px;
  }

  .advantage-text {
    font-size: 0.8rem;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
  }

  /* Athlete Experience Section */
  .athlete-experience-section {
    padding: 20px 0;
    /* margin-top: 10em */
  }

  .athlete-experience-section .section-header {
    margin-bottom: 18px;
  }

  .athlete-experience-section .section-title {
    font-size: 1.6rem;
  }

  .athlete-experience-section .section-subtitle {
    margin-bottom: 25px;
  }

  .athlete-experience-section .section-subtitle h3 {
    font-size: 1.2rem;
  }

  .experience-grid {
    gap: 12px;
    margin: 25px 0;
  }

  .landmarks-card {
    gap: 10px;
    border-radius: 15px;
  }

  .landmark-image-top,
  .landmark-image-bottom {
    min-height: 80px;
    border-radius: 12px;
  }

  .label-text {
    font-size: 0.6rem;
  }

  .card-image-container {
    min-height: 160px;
    border-radius: 15px;
  }

  .text-card {
    min-height: 150px;
    padding: 18px 12px;
    border-radius: 20px;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .hotel-icon,
  .museum-icon {
    width: 40px;
    height: 40px;
  }

  .experience-banner {
    padding: 15px 20px;
    margin: 25px 0 18px;
    border-radius: 20px;
  }

  .banner-text {
    font-size: 0.9rem;
  }

  .star-icon {
    width: 30px;
    height: 30px;
  }

  .banner-decoration {
    width: 50px;
  }
}

/* Recognition & Awards Section */
.recognition-awards-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%);
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.recognition-awards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
}

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.recognition-awards-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.recognition-awards-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.recognition-awards-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.recognition-awards-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.recognition-awards-section .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.recognition-awards-section .section-subtitle p {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
}

.recognition-awards-section .section-subtitle p::before {
  content: "✦";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.recognition-awards-section .section-subtitle p::after {
  content: "✦";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.awards-content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin: 50px 0;
  position: relative;
}

/* Individual Awards Card */
.individual-awards-card {
  flex: 0 0 45%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.individual-awards-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.individual-awards-card:hover::before {
  opacity: 1;
  animation: borderSweep 2s ease-in-out infinite;
}

@keyframes borderSweep {
  0% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  }
  50% {
    background: linear-gradient(225deg, transparent, rgba(251, 191, 36, 0.8), transparent);
  }
  100% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  }
}

.awards-card-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.awards-diamonds {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.award-diamond {
  width: 200px;
  height: 140px;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #1e40af);
  transform: rotate(45deg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.best-player-diamond {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
}

.best-goalkeeper-diamond {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #1e40af);
}

.top-scorer-diamond {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
}

.award-diamond:hover {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.4);
}

.diamond-content {
  transform: rotate(-45deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.award-label {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1;
}

.best-player-diamond .award-label,
.top-scorer-diamond .award-label {
  color: #000;
}

.award-prize {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1;
}

.best-player-diamond .award-prize,
.top-scorer-diamond .award-prize {
  color: #000;
}

.diamond-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.3) 0%,
    rgba(251, 191, 36, 0.1) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.award-diamond:hover .diamond-glow {
  opacity: 1;
}

.awards-card-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.individual-awards-card:hover .awards-card-particles {
  opacity: 1;
}

.awards-card-particles::before,
.awards-card-particles::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: floatParticles 4s ease-in-out infinite;
}

.awards-card-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.awards-card-particles::after {
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes floatParticles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1.3);
    opacity: 1;
  }
}

/* Prizes Showcase */
.prizes-showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.prize-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #ffffff);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.prize-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(251, 191, 36, 0.3);
  border-color: rgba(251, 191, 36, 0.8);
}

.car-prize {
  width: 100%;
  max-width: 400px;
}

.boot-prize {
  width: 100%;
  max-width: 300px;
}

.prize-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.boot-prize .prize-image-container {
  height: 200px;
}

.prize-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.prize-card:hover .prize-image {
  transform: scale(1.05);
}

.prize-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 50%, rgba(251, 191, 36, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prize-card:hover .prize-overlay {
  opacity: 1;
}

.prize-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.prize-card:hover .prize-shine {
  opacity: 1;
  animation: shineEffect 1.5s ease-in-out;
}

@keyframes shineEffect {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.prize-reflection {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prize-card:hover .prize-reflection {
  opacity: 1;
}

/* Section Footer */
.recognition-awards-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.awards-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .recognition-awards-section .section-title {
    font-size: 2.8rem;
  }

  .awards-content {
    gap: 30px;
  }

  .award-diamond {
    width: 160px;
    height: 100px;
  }

  .prize-image-container {
    height: 220px;
  }

  .boot-prize .prize-image-container {
    height: 180px;
  }
}

@media (max-width: 968px) {
  .recognition-awards-section {
    padding: 30px 0;
  }

  .recognition-awards-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .recognition-awards-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .awards-content {
    flex-direction: column;
    gap: 40px;
  }

  .individual-awards-card {
    flex: none;
    width: 100%;
  }

  .prizes-showcase {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .car-prize,
  .boot-prize {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .recognition-awards-section .section-title {
    font-size: 2rem;
  }

  .recognition-awards-section .section-subtitle p {
    font-size: 1.4rem;
  }

  .awards-card-title {
    font-size: 1.6rem;
  }

  .award-diamond {
    width: 150px;
    height: 100px;
  }

  .award-label {
    font-size: 0.8rem;
  }

  .award-prize {
    font-size: 1rem;
  }

  .prizes-showcase {
    flex-direction: column;
    gap: 25px;
  }

  .car-prize,
  .boot-prize {
    max-width: 100%;
  }

  .prize-image-container {
    height: 180px;
  }

  .boot-prize .prize-image-container {
    height: 150px;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .recognition-awards-section .section-title {
    font-size: 1.8rem;
  }

  .individual-awards-card {
    padding: 30px 20px;
  }

  .awards-diamonds {
    gap: 30px;
  }

  .award-diamond {
    width: 120px;
    height: 80px;
  }

  .prize-card {
    padding: 20px;
  }

  .prize-image-container {
    height: 150px;
  }

  .boot-prize .prize-image-container {
    height: 120px;
  }
}

/* Team Awards Section */
.team-awards-section {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.team-awards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
}

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.team-awards-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.team-awards-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.team-awards-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.team-awards-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.team-awards-section .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.team-awards-section .section-subtitle p {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
}

.team-awards-section .section-subtitle p::before {
  content: "✦";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.team-awards-section .section-subtitle p::after {
  content: "✦";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #fbbf24;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Team Awards Container */
.team-awards-container {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 30px;
  padding: 40px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-awards-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-awards-container:hover::before {
  opacity: 1;
  animation: borderSweep 3s ease-in-out infinite;
}

@keyframes borderSweep {
  0% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  }
  50% {
    background: linear-gradient(225deg, transparent, rgba(251, 191, 36, 0.6), transparent);
  }
  100% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  }
}

.team-awards-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.team-awards-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fbbf24;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.trophy-diamond {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  transform: rotate(45deg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  animation: diamondFloat 4s ease-in-out infinite;
}

@keyframes diamondFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}

.trophy-diamond:hover {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.6);
}

.trophy-diamond::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 23px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  animation: diamondGlow 3s ease-in-out infinite;
}

@keyframes diamondGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(12px);
  }
}

.diamond-icon {
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trophy-icon {
  height: 40px;
  object-fit: contain;
  filter: brightness(0);
}

/* Awards List */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-item {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #1e40af);
  border: 2px solid rgba(251, 191, 36, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-50px);
}

.award-item.animate-in {
  animation: slideInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.award-item:hover {
  transform: translateX(10px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.award-item:hover::before {
  left: 100%;
}

.award-icon {
  flex-shrink: 0;
  position: relative;
}

.diamond-marker {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: rotate(45deg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.award-item:hover .diamond-marker {
  transform: rotate(45deg) scale(1.2);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
}

.diamond-dot {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  transform: rotate(-45deg);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: rotate(-45deg) scale(1);
  }
  50% {
    transform: rotate(-45deg) scale(1.3);
  }
}

.award-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.award-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.award-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.award-item:hover .award-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Section Footer */
.team-awards-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.awards-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-awards-section .section-title {
    font-size: 2.8rem;
  }

  .team-awards-title {
    font-size: 1.8rem;
  }

  .trophy-diamond {
    width: 70px;
    height: 70px;
  }

  .trophy-icon {
    width: 35px;
    height: 35px;
  }

  .award-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 968px) {
  .team-awards-section {
    padding: 30px 0;
  }

  .team-awards-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .team-awards-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .team-awards-container {
    padding: 30px 25px;
  }

  .team-awards-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .award-item {
    padding: 20px 25px;
  }

  .award-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .team-awards-section .section-title {
    font-size: 2rem;
  }

  .team-awards-section .section-subtitle p {
    font-size: 1.4rem;
  }

  .team-awards-title {
    font-size: 1.6rem;
  }

  .trophy-diamond {
    width: 60px;
    height: 60px;
  }

  .trophy-icon {
    width: 30px;
    height: 30px;
  }

  .award-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .award-text {
    font-size: 1rem;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-awards-section .section-title {
    font-size: 1.8rem;
  }

  .team-awards-container {
    padding: 25px 20px;
  }

  .team-awards-title {
    font-size: 1.4rem;
  }

  .trophy-diamond {
    width: 50px;
    height: 50px;
  }

  .trophy-icon {
    width: 25px;
    height: 25px;
  }

  .award-item {
    padding: 15px;
  }

  .award-text {
    font-size: 0.9rem;
  }

  .diamond-marker {
    width: 25px;
    height: 25px;
  }
}

/* National Identity & Branding Section */
.national-identity-section {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.national-identity-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
}

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.national-identity-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.national-identity-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.national-identity-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.national-identity-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Identity Content */
.identity-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 50px 0;
  position: relative;
}

/* Trophy Section */
.trophy-section {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.trophy-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.golden-trophy {
  width: 350px;
  height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(251, 191, 36, 0.4));
  transition: all 0.4s ease;
  animation: trophyFloat 6s ease-in-out infinite;
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

.golden-trophy:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 25px 50px rgba(251, 191, 36, 0.6));
}

.trophy-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.3) 0%,
    rgba(251, 191, 36, 0.1) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: trophyGlow 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes trophyGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.trophy-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: reflectionPulse 4s ease-in-out infinite;
}

@keyframes reflectionPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

.values-text {
  text-align: center;
  max-width: 400px;
}

.values-statement {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.highlight-text {
  color: #fbbf24;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 1px;
  animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

/* Branding Cards */
.branding-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.branding-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.6), rgba(59, 130, 246, 0.4));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 25px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateX(50px);
}

.branding-card.animate-in {
  animation: slideInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.branding-card:hover {
  transform: translateX(-10px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.3);
}

.branding-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: right 0.6s ease;
}

.branding-card:hover::before {
  right: 100%;
}

.card-diamond {
  position: absolute;
  top: -15px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  transform: rotate(45deg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  transition: all 0.4s ease;
  z-index: 3;
}

.branding-card:hover .card-diamond {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
}

.diamond-icon {
  /* transform: rotate(-45deg); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0);
}

.card-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-end;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.flag-background {
  background: url('images7/image6.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
}

.players-image,
.vision-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branding-card:hover .players-image,
.branding-card:hover .vision-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
  border-radius: 20px;
  z-index: 2;
}

.card-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 3;
  max-width: 80%;
}

.card-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 25px;
}

.branding-card:hover .card-glow-effect {
  opacity: 1;
  animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

/* Section Footer */
.national-identity-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.national-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .national-identity-section .section-title {
    font-size: 2.8rem;
  }

  .identity-content {
    gap: 40px;
  }

  .golden-trophy {
    width: 300px;
    height: 400px;
  }

  .values-statement {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 1rem;
  }
}

@media (max-width: 968px) {
  .national-identity-section {
    padding: 30px 0;
  }

  .national-identity-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .national-identity-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .identity-content {
    flex-direction: column;
    gap: 40px;
  }

  .trophy-section {
    flex: none;
    width: 100%;
  }

  .golden-trophy {
    width: 250px;
    height: 350px;
  }

  .branding-cards {
    width: 100%;
  }

  .card-content {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .national-identity-section .section-title {
    font-size: 2rem;
  }

  .golden-trophy {
    width: 200px;
    height: 280px;
  }

  .values-statement {
    font-size: 1.2rem;
  }

  .branding-card {
    padding: 20px;
  }

  .card-content {
    height: 150px;
  }

  .card-text {
    font-size: 0.95rem;
    max-width: 85%;
  }

  .card-diamond {
    width: 45px;
    height: 45px;
    top: -12px;
    right: 20px;
  }

  .icon-image {
    width: 25px;
    height: 25px;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .national-identity-section .section-title {
    font-size: 1.8rem;
  }

  .golden-trophy {
    width: 180px;
    height: 250px;
  }

  .values-statement {
    font-size: 1.1rem;
  }

  .branding-card {
    padding: 15px;
  }

  .card-content {
    height: 130px;
    padding: 15px 0;
  }

  .card-text {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .card-diamond {
    width: 40px;
    height: 40px;
    top: -10px;
    right: 15px;
  }

  .icon-image {
    width: 22px;
    height: 22px;
  }
}

/* Sponsorship & Partner Opportunities Section */
.sponsorship-section {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sponsorship-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
}

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.sponsorship-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.sponsorship-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.sponsorship-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 70%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.sponsorship-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Partners Container */
.partners-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  border-radius: 30px;
  padding: 40px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(251, 191, 36, 0.2);
  transition: all 0.4s ease;
}

.partners-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  border-radius: 33px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partners-container:hover::before {
  opacity: 1;
  animation: containerGlow 3s ease-in-out infinite;
}

@keyframes containerGlow {
  0% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  }
  50% {
    background: linear-gradient(225deg, transparent, rgba(251, 191, 36, 0.6), transparent);
  }
  100% {
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  }
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0;
  position: relative;
}

.partners-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.partner-item {
  background: #ffffff;
  border: 2px solid rgba(30, 64, 175, 0.1);
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-item.animate-in {
  animation: partnerFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes partnerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.partner-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.partner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.partner-item:hover::before {
  left: 100%;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(20%) opacity(0.9);
}

.partner-item:hover .logo-image {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.partner-tagline {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  margin-top: 5px;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-item:hover .partner-tagline {
  opacity: 1;
}

.partner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.partner-item:hover .partner-glow {
  opacity: 1;
  animation: partnerGlow 2s ease-in-out infinite;
}

@keyframes partnerGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Section Footer */
.sponsorship-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.sponsorship-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sponsorship-section .section-title {
    font-size: 2.8rem;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .partner-item {
    min-height: 110px;
    padding: 20px 15px;
  }

  .partner-logo {
    height: 55px;
  }
}

@media (max-width: 968px) {
  .sponsorship-section {
    padding: 30px 0;
  }

  .sponsorship-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .sponsorship-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .partners-container {
    padding: 30px 25px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .partners-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .sponsorship-section .section-title {
    font-size: 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-item {
    min-height: 100px;
    padding: 15px 10px;
  }

  .partner-logo {
    height: 50px;
  }

  .partners-title {
    font-size: 1.4rem;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sponsorship-section .section-title {
    font-size: 1.8rem;
  }

  .partners-container {
    padding: 25px 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partner-item {
    min-height: 90px;
    padding: 15px;
  }

  .partner-logo {
    height: 45px;
  }

  .partners-title {
    font-size: 1.3rem;
  }
}

/* Sponsorship Benefits Section */
.sponsorship-benefits-section {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sponsorship-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
}

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.sponsorship-benefits-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.sponsorship-benefits-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sponsorship-benefits-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 70%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.sponsorship-benefits-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Benefits Content */
.benefits-content {
  margin: 20px 0;
  position: relative;
}

.value-proposition {
  text-align: left;
  margin-bottom: 60px;
}

.value-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.3);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.6);
  }
}

.value-subtitle {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4), rgba(59, 130, 246, 0.3));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 25px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card.animate-in {
  animation: benefitFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes benefitFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.benefit-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 30px 60px rgba(251, 191, 36, 0.3);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.card-diamond {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  transform: rotate(45deg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  position: relative;
  animation: diamondFloat 4s ease-in-out infinite;
}

@keyframes diamondFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px);
  }
  50% {
    transform: rotate(45deg) translateY(-8px);
  }
}

.benefit-card:hover .card-diamond {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 20px 45px rgba(251, 191, 36, 0.6);
}

.card-diamond::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  animation: diamondGlow 3s ease-in-out infinite;
} 

@keyframes diamondGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(12px);
  }
}

.diamond-icon {
  /* transform: rotate(-45deg); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0);
}

.card-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.benefit-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.card-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 25px;
}

.benefit-card:hover .card-glow-effect {
  opacity: 1;
  animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.card-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .card-particles {
  opacity: 1;
}

.card-particles::before,
.card-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  animation: cardParticles 3s ease-in-out infinite;
}

.card-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.card-particles::after {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes cardParticles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) scale(1.3);
    opacity: 1;
  }
}

/* Section Footer */
.sponsorship-benefits-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.benefits-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sponsorship-benefits-section .section-title {
    font-size: 2.8rem;
  }

  .value-title {
    font-size: 3rem;
  }

  .benefits-grid {
    gap: 30px;
  }

  .benefit-card {
    padding: 35px 25px;
    min-height: 180px;
  }

  .benefit-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 968px) {
  .sponsorship-benefits-section {
    padding: 30px 0;
  }

  .sponsorship-benefits-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .sponsorship-benefits-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .value-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .value-subtitle {
    text-align: center;
    font-size: 1.3rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefit-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sponsorship-benefits-section .section-title {
    font-size: 2rem;
  }

  .value-title {
    font-size: 2rem;
  }

  .value-subtitle {
    font-size: 1.2rem;
  }

  .benefit-card {
    padding: 30px 20px;
    min-height: 160px;
  }

  .benefit-text {
    font-size: 1.1rem;
  }

  .card-diamond {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
  }

  .icon-image {
    width: 25px;
    height: 25px;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sponsorship-benefits-section .section-title {
    font-size: 1.8rem;
  }

  .value-title {
    font-size: 1.8rem;
  }

  .value-subtitle {
    font-size: 1.1rem;
  }

  .benefit-card {
    padding: 25px 15px;
    min-height: 140px;
  }

  .benefit-text {
    font-size: 1rem;
  }

  .card-diamond {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .icon-image {
    width: 22px;
    height: 22px;
  }
}

/* Clubs & Academies Exact Section */
.clubs-academies-exact-section {
  /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #1e40af 60%, #1e3a8a 100%); */
  min-height: 90vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* .clubs-academies-exact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: luxuryAmbience 20s ease-in-out infinite;
} */

@keyframes luxuryAmbience {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(1deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-1deg);
  }
}

.clubs-academies-exact-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.clubs-academies-exact-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.clubs-academies-exact-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.clubs-academies-exact-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.section-logo {
  flex-shrink: 0;
}

.section-logo-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Teams Layout */
.teams-layout {
  display: flex;
  gap: 60px;
  margin: 50px 0;
  position: relative;
}

.clubs-section,
.academies-section {
  flex: 1;
}

/* Clubs Section */
.clubs-header {
  margin-bottom: 30px;
}

.clubs-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  margin: 0;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  position: relative;
  overflow: hidden;
}

.clubs-title::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.6s ease;
}

.clubs-title:hover::before {
  left: 100%;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  align-items: center;
  justify-items: center;
}

.clubs-grid .club-logo-item:nth-child(n + 5) {
  grid-column: span 1;
}

.clubs-grid .club-logo-item:nth-child(5) {
  grid-column: 1 / span 2;
  justify-self: end;
}

.clubs-grid .club-logo-item:nth-child(6) {
  grid-column: 2 / span 2;
  justify-self: center;
}

.clubs-grid .club-logo-item:nth-child(7) {
  grid-column: 3 / span 2;
  justify-self: start;
}

.club-logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.club-logo-item.animate-in {
  animation: clubFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes clubFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.club-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.club-logo-item:hover .club-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 30px rgba(251, 191, 36, 0.5));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.2) 0%,
    rgba(251, 191, 36, 0.1) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
}

.club-logo-item:hover .logo-glow {
  opacity: 1;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Academies Section */
.academies-header {
  margin-bottom: 30px;
}

.academies-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  margin: 0;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  position: relative;
  overflow: hidden;
}

.academies-title::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.6s ease;
}

.academies-title:hover::before {
  left: 100%;
}

.academies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.academies-grid .full-width {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 500px;
}

.academy-item {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.academy-item.animate-in {
  animation: academyFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes academyFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.academy-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.academy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.academy-item:hover::before {
  left: 100%;
}

.text-card {
  text-align: center;
}

.logo-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.academy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.academy-name {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.academy-subtitle {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.academy-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.academy-item:hover .academy-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4));
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 15px;
}

.academy-item:hover .card-glow {
  opacity: 1;
  animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

/* Section Footer */
.clubs-academies-exact-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-number {
  width: 35px;
  height: 35px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Background Elements */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 80%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}

.section-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(59, 130, 246, 0.03) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .clubs-academies-exact-section .section-title {
    font-size: 2.8rem;
  }

  .teams-layout {
    gap: 40px;
  }

  .clubs-title,
  .academies-title {
    font-size: 1.8rem;
    padding: 12px 0;
  }

  .clubs-grid {
    gap: 20px;
  }

  .club-logo {
    width: 100px;
    height: 100px;
  }

  .academy-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 968px) {
  .clubs-academies-exact-section {
    padding: 30px 0;
  }

  .clubs-academies-exact-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .clubs-academies-exact-section .section-title {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .teams-layout {
    flex-direction: column;
    gap: 40px;
  }

  .clubs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clubs-grid .club-logo-item:nth-child(n + 5) {
    grid-column: auto;
  }

  .academies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clubs-academies-exact-section .section-title {
    font-size: 2rem;
  }

  .clubs-title,
  .academies-title {
    font-size: 1.6rem;
    padding: 10px 0;
  }

  .clubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academies-grid {
    grid-template-columns: 1fr;
  }

  .club-logo {
    width: 80px;
    height: 80px;
  }

  .academy-item {
    min-height: 80px;
    padding: 15px;
  }

  .academy-name {
    font-size: 0.9rem;
  }

  .academy-subtitle {
    font-size: 0.75rem;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .clubs-academies-exact-section .section-title {
    font-size: 1.8rem;
  }

  .clubs-title,
  .academies-title {
    font-size: 1.4rem;
    padding: 8px 0;
  }

  .club-logo {
    width: 70px;
    height: 70px;
  }

  .academy-item {
    min-height: 70px;
    padding: 12px;
  }

  .academy-name {
    font-size: 0.8rem;
  }

  .academy-subtitle {
    font-size: 0.7rem;
  }
}

/* Contact & Next Steps Section - Extraordinary */
.contact-next-steps-section {
  /* background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 25%, #1e40af 50%, #1e3a8a 75%, #0a1628 100%); */
  min-height: 100vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-next-steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 60%),
    linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: cosmicAmbience 25s ease-in-out infinite;
}

@keyframes cosmicAmbience {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.98) rotate(-0.5deg);
  }
  75% {
    opacity: 1;
    transform: scale(1.02) rotate(0.5deg);
  }
}

.contact-next-steps-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}

.contact-next-steps-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.contact-next-steps-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  /* line-height: 1.2; */
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
  /* position: relative; */
  /* animation: titlePulse 4s ease-in-out infinite; */
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 50px rgba(251, 191, 36, 0.6);
    transform: scale(1.01);
  }
}

.contact-next-steps-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
  border-radius: 3px;
  animation: titleUnderlineFlow 3s ease-in-out infinite;
}

@keyframes titleUnderlineFlow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
    background-position: 0% 50%;
  }
  50% {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.9);
    background-position: 100% 50%;
  }
}

.section-logo {
  flex-shrink: 0;
  position: relative;
}

.section-logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(251, 191, 36, 0.4));
  animation: logoFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.logo-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logoOrbit 8s linear infinite;
}

.logo-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

@keyframes logoOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

/* Contact Content */
.contact-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin: 60px 0;
  position: relative;
}

/* Legacy Section */
.legacy-section {
  flex: 1;
  position: relative;
}

.legacy-text-container {
  position: relative;
}

.legacy-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1.3;
  margin: 0;
  position: relative;
  z-index: 2;
}

.title-word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
  animation: wordReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
}

.title-word:hover {
  transform: scale(1.1) translateY(-5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 191, 36, 0.8);
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.legacy-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(251, 191, 36, 0.08) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: legacyGlow 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes legacyGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.legacy-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.legacy-particles::before,
.legacy-particles::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: legacyParticles 6s ease-in-out infinite;
}

.legacy-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.legacy-particles::after {
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes legacyParticles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 1;
  }
}

/* Contact Info Section */
.contact-info-section {
  flex: 1;
  position: relative;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-subtitle {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(251, 191, 36, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateX(50px) scale(0.9);
}

.contact-item.animate-in {
  animation: contactFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes contactFadeIn {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.contact-item:hover {
  transform: translateX(-10px) scale(1.03);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.3);
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-icon {
  flex-shrink: 0;
}

.icon-container {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  transition: all 0.4s ease;
  position: relative;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.contact-item:hover .icon-container {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
}

.icon-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(12px);
  }
}

.icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0);
}

.icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: iconRipple 2s ease-in-out infinite;
}

@keyframes iconRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-value {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-value {
  color: #fbbf24;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(251, 191, 36, 0.6);
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.contact-item:hover .contact-glow {
  opacity: 1;
  animation: contactGlow 2s ease-in-out infinite;
}

@keyframes contactGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

/* Trophy Showcase */
.trophy-showcase {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  z-index: 1;
}

.trophy-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.championship-trophy {
  width: 400px;
  height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(251, 191, 36, 0.4));
  animation: trophyFloat 8s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.trophy-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.3) 0%,
    rgba(251, 191, 36, 0.15) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: trophyGlow 6s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes trophyGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.trophy-reflection {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: reflectionPulse 6s ease-in-out infinite;
}

@keyframes reflectionPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.2);
  }
}

.trophy-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.trophy-sparkles::before,
.trophy-sparkles::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fbbf24;
  border-radius: 50%;
  animation: trophySparkles 4s ease-in-out infinite;
}

.trophy-sparkles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.trophy-sparkles::after {
  bottom: 30%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes trophySparkles {
  0%,
  100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.5) rotate(180deg);
    opacity: 1;
  }
}

.trophy-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(251, 191, 36, 0.1) 90deg,
    transparent 180deg,
    rgba(251, 191, 36, 0.1) 270deg,
    transparent 360deg
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: trophyAura 10s linear infinite;
  border-radius: 50%;
}

@keyframes trophyAura {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Collaboration Banner */
.collaboration-banner {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4), rgba(59, 130, 246, 0.3));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 25px;
  padding: 40px;
  margin: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.collaboration-banner::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.4), transparent);
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  animation: bannerBorder 4s ease-in-out infinite;
}

@keyframes bannerBorder {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.banner-content {
  position: relative;
  z-index: 2;
}

.collaboration-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.text-highlight {
  color: #fbbf24;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: textHighlight 3s ease-in-out infinite;
}

@keyframes textHighlight {
  0%,
  100% {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 15px rgba(251, 191, 36, 0.4);
  }
  50% {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 25px rgba(251, 191, 36, 0.8);
  }
}

.text-word {
  display: inline-block;
  transition: all 0.3s ease;
}

.text-word:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fbbf24;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(251, 191, 36, 0.6);
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: bannerGlow 4s ease-in-out infinite;
  border-radius: 25px;
}

@keyframes bannerGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.banner-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.banner-particles::before,
.banner-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  animation: bannerParticles 5s ease-in-out infinite;
}

.banner-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.banner-particles::after {
  bottom: 20%;
  right: 15%;
  animation-delay: 2.5s;
}

@keyframes bannerParticles {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

/* Section Footer */
.contact-next-steps-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: brandPulse 4s ease-in-out infinite;
}

@keyframes brandPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(251, 191, 36, 0.4);
  }
}

.page-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
  animation: pageNumberFloat 4s ease-in-out infinite;
}

@keyframes pageNumberFloat {
  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
  }
}

/* Floating Background Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: floatUp 12s ease-in-out infinite;
}

.floating-elements::before {
  top: 80%;
  left: 15%;
  animation-delay: 0s;
}

.floating-elements::after {
  top: 70%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-150px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translateY(-300px) scale(0.8);
    opacity: 0;
  }
}

.contact-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.08) 0%,
    rgba(59, 130, 246, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.cosmic-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cosmic-particles::before,
.cosmic-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: cosmicFloat 20s linear infinite;
}

.cosmic-particles::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.cosmic-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 10s;
}

@keyframes cosmicFloat {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1400px) {
  .trophy-showcase {
    right: -50px;
  }

  .championship-trophy {
    width: 350px;
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .contact-next-steps-section .section-title {
    font-size: 3rem;
  }

  .legacy-title {
    font-size: 3.5rem;
  }

  .contact-content {
    gap: 60px;
  }

  .trophy-showcase {
    display: none;
  }

  .collaboration-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 968px) {
  .contact-next-steps-section {
    padding: 30px 0;
  }

  .contact-next-steps-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .contact-next-steps-section .section-title {
    max-width: 100%;
    font-size: 2.5rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .legacy-title {
    font-size: 3rem;
    text-align: center;
  }

  .contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
  }

  .collaboration-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .contact-next-steps-section .section-title {
    font-size: 2rem;
  }

  .legacy-title {
    font-size: 2.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .contact-details {
    align-items: center;
  }

  .collaboration-text {
    font-size: 1.2rem;
  }

  .collaboration-banner {
    padding: 30px 20px;
  }

  .section-footer {
    /* flex-direction: column; */
    /* gap: 15px; */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-next-steps-section .section-title {
    font-size: 1.8rem;
  }

  .legacy-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-item {
    padding: 15px;
  }

  .icon-container {
    width: 50px;
    height: 50px;
  }

  .icon-image {
    width: 25px;
    height: 25px;
  }

  .contact-value {
    font-size: 1.1rem;
  }

  .collaboration-text {
    font-size: 1rem;
  }

  .collaboration-banner {
    padding: 25px 15px;
  }
}

/* Athlete Experience Section - Extraordinary */
.athlete-experience-extraordinary-section {
  min-height: 100vh;
  color: white;
  padding: 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Field Background */
.field-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.field-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fieldPulse 8s ease-in-out infinite;
}

@keyframes fieldPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(0.8) contrast(1.1);
  }
  50% {
    transform: scale(1.02);
    filter: brightness(0.9) contrast(1.2);
  }
}

.field-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(30, 58, 138, 0.75) 25%,
    rgba(30, 64, 175, 0.7) 50%,
    rgba(30, 58, 138, 0.75) 75%,
    rgba(10, 22, 40, 0.85) 100%
  );
  animation: overlayShift 12s ease-in-out infinite;
}

@keyframes overlayShift {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.75;
  }
}

.field-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.field-particles::before,
.field-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(251, 191, 36, 0.8);
  border-radius: 50%;
  animation: fieldParticleFloat 15s linear infinite;
}

.field-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.field-particles::after {
  top: 70%;
  right: 15%;
  animation-delay: 7.5s;
}

@keyframes fieldParticleFloat {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(0.5);
    opacity: 0;
  }
}

.field-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.1) 0%,
    rgba(59, 130, 246, 0.08) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: fieldGlow 10s ease-in-out infinite;
}

@keyframes fieldGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
  }
}

.athlete-experience-extraordinary-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}

/* Section Header */
.athlete-experience-extraordinary-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.athlete-experience-extraordinary-section .section-title {
  font-family: "Poppins", "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 30px rgba(251, 191, 36, 0.4);
  position: relative;
}

.title-word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
  animation: titleWordReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  transition: all 0.3s ease;
}

.title-word:hover {
  transform: scale(1.05) translateY(-5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 40px rgba(251, 191, 36, 0.8);
}

@keyframes titleWordReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.section-logo {
  flex-shrink: 0;
  position: relative;
}

/* working .section-logo-image */
.section-logo-image {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(251, 191, 36, 0.5));
  animation: logoFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

@media (max-width:768px) {
 .section-logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  /* filter: drop-shadow(0 8px 25px rgba(251, 191, 36, 0.5));
  animation: logoFloat 6s ease-in-out infinite; */
  position: relative;
  z-index: 3;
}
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.logo-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(251, 191, 36, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logoOrbit 10s linear infinite;
}

.logo-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
}

@keyframes logoOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
  }
}

.logo-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.logo-sparkles::before,
.logo-sparkles::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: logoSparkle 3s ease-in-out infinite;
}

.logo-sparkles::before {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.logo-sparkles::after {
  bottom: 15%;
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes logoSparkle {
  0%,
  100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(2) rotate(180deg);
    opacity: 1;
  }
}

/* Standards Header */
.standards-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.standards-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.standards-word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: standardsWordReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  transition: all 0.3s ease;
}

.standards-word:hover {
  transform: scale(1.1) translateY(-3px);
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 25px rgba(251, 191, 36, 0.8);
}

@keyframes standardsWordReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.standards-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: standardsGlow 5s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes standardsGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

/* Experience Cards */
.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
  position: relative;
}

.experience-card {
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.4) 0%,
    rgba(59, 130, 246, 0.3) 50%,
    rgba(30, 64, 175, 0.4) 100%
  );
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 25px;
  padding: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience-card.animate-in {
  animation: cardFadeIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.experience-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 35px 70px rgba(251, 191, 36, 0.4);
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.15), transparent);
  transition: left 0.8s ease;
}

.experience-card:hover::before {
  left: 100%;
}

/* Card Diamond */
.card-diamond {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
  transform: rotate(45deg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
  transition: all 0.5s ease;
  margin: 30px 0 20px 0;
  position: relative;
  animation: diamondFloat 6s ease-in-out infinite;
}

@keyframes diamondFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}

.experience-card:hover .card-diamond {
  transform: rotate(45deg) scale(1.2);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.8);
}

.card-diamond::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(12px);
  animation: diamondGlow 4s ease-in-out infinite;
}

@keyframes diamondGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(12px);
  }
  50% {
    opacity: 1;
    filter: blur(16px);
  }
}

.diamond-icon {
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0);
  transition: all 0.3s ease;
}

.experience-card:hover .icon-image {
  filter: brightness(0) drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover .icon-glow {
  opacity: 1;
  animation: iconGlowPulse 2s ease-in-out infinite;
}

@keyframes iconGlowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.diamond-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.diamond-sparkles::before,
.diamond-sparkles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  animation: diamondSparkle 3s ease-in-out infinite;
}

.diamond-sparkles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.diamond-sparkles::after {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes diamondSparkle {
  0%,
  100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(2) rotate(180deg);
    opacity: 1;
  }
}

/* Card Content */
.card-content {
  flex: 1;
  padding: 20px 30px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.card-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 0 0 25px 25px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.card-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.experience-card:hover .card-text {
  color: #fbbf24;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.6);
}

.text-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover .text-particles {
  opacity: 1;
}

.text-particles::before,
.text-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  animation: textParticleFloat 4s ease-in-out infinite;
}

.text-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.text-particles::after {
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes textParticleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) scale(1.5);
    opacity: 1;
  }
}

.card-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(251, 191, 36, 0.08) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 25px;
}

.experience-card:hover .card-aura {
  opacity: 1;
  animation: cardAura 3s ease-in-out infinite;
}

@keyframes cardAura {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.card-reflection {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover .card-reflection {
  opacity: 1;
  animation: cardReflection 3s ease-in-out infinite;
}

@keyframes cardReflection {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Holistic Banner */
.holistic-banner {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.6), rgba(59, 130, 246, 0.4));
  border: 3px solid rgba(251, 191, 36, 0.4);
  border-radius: 30px;
  padding: 40px;
  margin: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.holistic-banner::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.6), transparent);
  border-radius: 33px;
  z-index: -1;
  opacity: 0;
  animation: bannerBorder 5s ease-in-out infinite;
}

@keyframes bannerBorder {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.15) 0%,
    rgba(251, 191, 36, 0.08) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: bannerGlow 6s ease-in-out infinite;
  border-radius: 30px;
}

@keyframes bannerGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.banner-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.text-highlight {
  color: #fbbf24;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: textHighlight 4s ease-in-out infinite;
}

@keyframes textHighlight {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.5);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 35px rgba(251, 191, 36, 0.9);
  }
}

.text-word {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.text-word:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.8);
}

.banner-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.banner-particles::before,
.banner-particles::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: bannerParticleFloat 6s ease-in-out infinite;
}

.banner-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.banner-particles::after {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes bannerParticleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) scale(1.5);
    opacity: 1;
  }
}

.banner-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 191, 36, 0.1) 25%,
    rgba(251, 191, 36, 0.2) 50%,
    rgba(251, 191, 36, 0.1) 75%,
    transparent 100%
  );
  opacity: 0;
  animation: bannerWaves 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerWaves {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

/* Section Footer */
.athlete-experience-extraordinary-section .section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.footer-brand {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: brandPulse 5s ease-in-out infinite;
}

@keyframes brandPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 15px rgba(251, 191, 36, 0.5);
  }
}

.page-number {
  width: 100px;
  height: 40px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  border: 2px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.5);
  animation: pageNumberFloat 5s ease-in-out infinite;
}

@keyframes pageNumberFloat {
  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.5);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
  }
}

/* Cosmic Atmosphere */
.cosmic-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cosmic-atmosphere::before,
.cosmic-atmosphere::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: cosmicDrift 20s linear infinite;
}

.cosmic-atmosphere::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.cosmic-atmosphere::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes cosmicDrift {
  0% {
    transform: translateX(0px) translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(100px) translateY(-50px) scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0px) translateY(0px) scale(1);
    opacity: 0.3;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: floatUp 18s ease-in-out infinite;
}

.floating-elements::before {
  top: 90%;
  left: 20%;
  animation-delay: 0s;
}

.floating-elements::after {
  top: 85%;
  right: 25%;
  animation-delay: 9s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-200px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translateY(-400px) scale(0.8);
    opacity: 0;
  }
}

.energy-field {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(251, 191, 36, 0.05) 90deg,
    transparent 180deg,
    rgba(59, 130, 246, 0.05) 270deg,
    transparent 360deg
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: energyRotate 30s linear infinite;
  border-radius: 50%;
}

@keyframes energyRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .athlete-experience-extraordinary-section .section-title {
    font-size: 3.5rem;
  }

  .standards-title {
    font-size: 2.2rem;
  }

  .experience-cards {
    gap: 30px;
  }

  .experience-card {
    min-height: 320px;
  }

  .banner-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 968px) {
  .athlete-experience-extraordinary-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .athlete-experience-extraordinary-section .section-title {
    max-width: 100%;
    font-size: 3rem;
  }

  .standards-title {
    font-size: 2rem;
  }

  .experience-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 60px auto;
  }

  .banner-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .athlete-experience-extraordinary-section .section-title {
    font-size: 2.5rem;
  }

  .standards-title {
    font-size: 1.8rem;
  }

  .experience-card {
    min-height: 280px;
  }

  .card-diamond {
    width: 70px;
    height: 70px;
    margin: 25px 0 15px 0;
  }

  .icon-image {
    width: 35px;
    height: 35px;
  }

  .card-text {
    font-size: 1.1rem;
  }

  .banner-text {
    font-size: 1.4rem;
  }

  .holistic-banner {
    padding: 30px 20px;
  }

  .section-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .athlete-experience-extraordinary-section .section-title {
    font-size: 2rem;
  }

  .standards-title {
    font-size: 1.5rem;
  }

  .experience-card {
    min-height: 250px;
  }

  .card-diamond {
    width: 60px;
    height: 60px;
  }

  .icon-image {
    width: 30px;
    height: 30px;
  }

  .card-text {
    font-size: 1rem;
  }

  .banner-text {
    font-size: 1.2rem;
  }

  .holistic-banner {
    padding: 25px 15px;
  }
}

/* ---------------------------------------------------------------------- */
/* Responsive styles for Competitive Edge Section */
/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* Utility */
.full-width {
  width: 100%;
  max-width: 100%;
}

/* Base styles for Competitive Edge Section */
.competitive-edge-section {
  display: flex;
  flex-direction: row;
  opacity: 1;
  visibility: visible;
  height: auto;
  min-height: 90vh;
}

/* Mobile: Competitive Edge Section */

@media (max-width: 900px) {
  .competitive-edge-section,
  .edge-content {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .competitive-edge-section{
      min-height: 333vh;
  }

  .edge-left, .edge-right {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .advantage-card {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .competitive-edge-section{
      min-height: 333vh;
  }
}


/* Athlete Experience Section */
.athlete-experience-section {
  display: block;
  opacity: 1;
  visibility: visible;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .athlete-experience-section {
    padding: 20px 0;
    border-radius: 16px;
     /* min-height: 333vh; */
  }

  .experience-grid,
  .experience-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .experience-card {
    width: 100%;
    margin-bottom: 16px;
  }

  .holistic-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
}

/* Recognition & Awards */
@media (max-width: 900px) {
  .recognition-awards-section {
    padding: 20px 0;
    border-radius: 16px;
     min-height: 250vh;
  }

  .awards-content,
  .advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .individual-awards-card,
  .prizes-showcase,
  .team-awards-container,
  .advantage-card {
    width: 100%;
    margin-bottom: 16px;
  }

  .awards-list {
    flex-direction: column;
    gap: 16px;
  }

  .award-item {
    width: 100%;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .advantages-grid{
      min-height: 352vh;
  }
}

/* National Identity & Branding */
@media (max-width: 900px) {
  .national-identity-section {
    padding: 20px 0;
    border-radius: 16px;
     min-height: 220vh;
  }

  .identity-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .trophy-section,
  .branding-cards {
    width: 100%;
    margin-bottom: 16px;
  }

  .branding-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .branding-card {
    width: 100%;
    margin-bottom: 16px;
  }
}

/* Sponsorship & Partner Opportunities */
@media (max-width: 900px) {
  .sponsorship-section {
    padding: 20px 0;
    border-radius: 16px;
      min-height: 420vh;
  }

  .partners-container,
  .benefits-content {
    width: 100%;
    margin-top: 1em;
  }

  .partners-grid,
  .benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .partner-item,
  .benefit-card {
    width: 100%;
    margin-bottom: 16px;
  }
}

/* Clubs & Academies */
@media (max-width: 900px) {
  .clubs-academies-exact-section {
    padding: 20px 0;
    border-radius: 16px;
      min-height: 247vh;
  }

  .teams-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .clubs-section,
  .academies-section {
    width: 100%;
    margin-bottom: 16px;
  }

  .clubs-grid,
  .academies-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }

  .club-logo-item,
  .academy-item {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
}

/* Contact & Next Steps */
@media (max-width: 900px) {
  .contact-next-steps-section {
    padding: 20px 0;
    border-radius: 16px;
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .contact-info-section,
  .trophy-showcase,
  .collaboration-banner,
  .section-footer {
    width: 100%;
    margin-bottom: 16px;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }

  .contact-item {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }

  .legacy-text-container {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
}


@media (max-width: 768px) {
  .contact-next-steps-section  {
    min-height: 200vh;
  }

  .collaboration-banner{
      margin-top: -4em;
  }
}

/* Force Card Content to Show on Mobile */
@media (max-width: 900px) {
  .partner-item,
  .benefit-card,
  .partner-logo,
  .card-content,
  .card-diamond,
  .diamond-icon,
  .card-glow-effect,
  .card-particles {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    max-height: none;
  }

  .partner-logo img,
  .card-content img,
  .diamond-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .card-content {
    background: none;
    color: inherit;
  }
}



@media (max-width: 900px) {
  .competitive-advantages-section .container{
    height: auto;
    height: 1000px;
  }
}