/* home.css */
/* Variables */
:root {
  --primary: #fe5c97;
  --secondary: #41e2ba;
  --accent: #3ae374;
  --dark: #090b13;
  --darker: #060810;
  --light: #f0f5ff;
  --gradient-primary: linear-gradient(45deg, var(--primary), #9b59b6);
  --gradient-secondary: linear-gradient(135deg, var(--secondary), #3498db);
  --gradient-accent: linear-gradient(90deg, var(--accent), #2ecc71);
  --padding-section: 6rem 0;
}

/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--dark);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}



h1, h2, h3, h4, h5, h6, p, span, div, a {
  color: #ffffff;
}

.section {
  padding: var(--padding-section);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  color: white;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.subtitle {
  text-align: center;
  color: #c0c0c0;
  margin-bottom: 3rem;
}

/* Text gradients */
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fe5c97; /* Fallback color */
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: white;
}

.btn-primary {
  background: var(--gradient-primary);
  box-shadow: 0 10px 20px rgba(254, 92, 151, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(254, 92, 151, 0.4);
}

.btn-secondary {
  background: var(--bg-tertiary);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-secondary);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-secondary);
  transform: translateY(-3px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(9, 11, 19, 0.8), var(--dark)), 
              url('../images/image33.webp') no-repeat center center/cover;
  padding: 5rem 0;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(254, 92, 151, 0.15), transparent 50%),
              radial-gradient(circle at bottom left, rgba(65, 226, 186, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(254, 92, 151, 0.25);
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(254, 92, 151, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Wave animation */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(1px);
}

.wave-container svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 65px;
}

.wave-container .shape-fill {
  fill: var(--darker);
}

/* Badge glow effect */
.badge-glow {
  position: relative;
  padding-left: 24px;
}

.badge-glow::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 30%;
  left: 0.30rem;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 2px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.8);
  }
}

/* Scrolling text banners - Dual rows with opposite directions */
.scrolling-banners-container {
  margin: 4rem 0;
}

.scrolling-text-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  /* Removed the background color to use body background */
}

/* Remove top margin from the first container but keep bottom margin */
.scrolling-text-container:first-child {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Remove margins from the second container to keep them close together */
.scrolling-text-container.second-banner {
  margin-top: 0;
  margin-bottom: 0;
}

.scrolling-text {
  display: flex;
  white-space: nowrap;
}

/* First row - Left to Right (original direction) */
.scrolling-left-to-right {
  animation: scrollTextLeftToRight 30s linear infinite;
}

/* Second row - Right to Left (opposite direction) */
.scrolling-right-to-left {
  animation: scrollTextRightToLeft 30s linear infinite;
}

.scrolling-text span {
  /* Added margin to create space between elements */
  margin: 0 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: white;
  /* Add padding to make them button-like */
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  /* Add gradient background similar to buttons */
  background: var(--gradient-primary);
  /* Add a subtle shadow */
  box-shadow: 0 3px 10px rgba(254, 92, 151, 0.3);
  transition: all 0.3s ease;
}

/* Add hover effect to make it more interactive */
.scrolling-text span:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(254, 92, 151, 0.4);
}

/* Use a different gradient for the second row to add visual distinction */
.scrolling-right-to-left span {
  background: var(--gradient-secondary);
  box-shadow: 0 3px 10px rgba(65, 226, 186, 0.3);
}

.scrolling-right-to-left span:hover {
  box-shadow: 0 5px 15px rgba(65, 226, 186, 0.4);
}

/* Animation for left to right scrolling */
@keyframes scrollTextLeftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Animation for right to left scrolling (opposite direction) */
@keyframes scrollTextRightToLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Tournament card */
.tournament-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(10px);
}

.tournament-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #fe5c97;
}

@media (min-width: 768px) {
  .tournament-inner {
    flex-direction: row;
  }
}

.tournament-image {
  position: relative;
  width: 100%;
}

.tournament-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .tournament-image {
    width: 40%;
  }
}

@media (min-width: 1024px) {
  .tournament-image {
    width: 33.333333%;
  }
}

.tournament-info {
  padding: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .tournament-info {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .tournament-info {
    width: 66.666667%;
  }
}

.tournament-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tournament-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Update price and highlight tags to match the new lime green theme */
.tag-price, .tag-highlight {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

/* Price tag with primary color gradient */
.tag-price {
  background: var(--gradient-primary);
  box-shadow: 0 3px 8px rgba(191, 255, 45, 0.3);
}

.tag-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(191, 255, 45, 0.4);
}

/* Highlight tag with a dark background and lime accent */
.tag-highlight {
  background: rgba(25, 30, 45, 0.9);
  border: 1px solid var(--primary);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.tag-highlight:hover {
  transform: translateY(-2px);
  background: rgba(35, 40, 55, 0.9);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.tournament-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tournament-details {
    grid-template-columns: 1fr 1fr;
  }
}

.section-label {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.category-tag {
  background: linear-gradient(to right, #3182ce, #2b6cb0);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.stats-container {
  display: flex;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
}

.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  margin-bottom: 0.5rem;
}

.date-display {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.date-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary), #9b59b6);
}

.date-icon i {
  color: white;
}

.organizers-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(55, 65, 81, 0.7);
}

.organizers-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.organizers-list img {
  height: 2.5rem;
  object-fit: contain;
  border-radius: 9999px;
}

.register-btn-container {
  margin-top: 2rem;
}

/* Sponsors section */
.logos-container {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  background: linear-gradient(to right, 
              var(--darker) 0%, 
              rgba(6, 8, 16, 0.9) 15%, 
              rgba(6, 8, 16, 0.9) 85%, 
              var(--darker) 100%);
  border-radius: 1.5rem;
}

.logos-container::before,
.logos-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-container::before {
  left: 0;
  background: linear-gradient(to right, var(--darker), transparent);
}

.logos-container::after {
  right: 0;
  background: linear-gradient(to left, var(--darker), transparent);
}

.logos {
  display: flex;
  gap: 4rem;
  animation: slideLogos 30s linear infinite;
}

.logos img {
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Widgets section */
.tournament-widgets-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tournament-widgets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tournament-widgets-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.widget-card {
  background: rgba(25, 30, 45, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.widget-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(254, 92, 151, 0.2);
}

.widget-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.widget-title::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Weather widget */
#weather-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weather-icon {
  font-size: 2.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(254, 92, 151, 0.5));
}

.temperature {
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.weather-detail-icon {
  color: var(--secondary);
  width: 1rem;
}

/* Time widget */
#time-widget i {
  font-size: 2rem;
  color: var(--secondary);
  filter: drop-shadow(0 0 8px rgba(65, 226, 186, 0.5));
}

.current-time {
  font-size: 1.875rem;
  color: white;
  font-weight: 500;
}

/* Matches widget */
.matches-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.match-card {
  background: rgba(15, 20, 35, 0.4);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.match-card:hover {
  background: rgba(25, 30, 45, 0.8);
  border-color: var(--primary);
  transform: translateX(5px);
}

.match-teams {
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.match-info {
  color: var(--text-primary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.match-info i {
  color: var(--primary);
}

.no-matches {
  color: var(--text-secondary);
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed var(--border-secondary);
  border-radius: 12px;
}

/* Rules and prizes sections */
.rules-grid, .prizes-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rules-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rules-grid-row, .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rules-card, .prizes-card {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 2rem;
}

.rules-card::before, .prizes-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  z-index: -1;
  border-radius: 22px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.rules-card:hover::before, .prizes-card:hover::before {
  opacity: 0.6;
}

.rule-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  margin-bottom: 1.5rem;
}

.rule-icon-container i {
  color: white;
  font-size: 1.25rem;
}

.rules-card h3, .prizes-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule-list-item {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.rule-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.rule-list-item p {
  color: var(--text-primary);
}

/* Location section */
.location-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .location-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.location-image:hover {
  transform: scale(1.02);
}

.location-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.5rem;
}

.location-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
              rgba(9, 11, 19, 0.2), 
              rgba(9, 11, 19, 0.5));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.location-image:hover::after {
  opacity: 1;
}

.location-address-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.location-address {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(25, 30, 45, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 100px;
  color: var(--text-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-primary);
}

.location-address i {
  color: var(--primary);
}

/* Float animation */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

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

/* Card hover effect */
.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(254, 92, 151, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 30px -10px rgba(254, 92, 151, 0.3);
  border-color: var(--primary);
}

.card-hover:hover::before {
  opacity: 1;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(254, 92, 151, 0.4);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  cursor: pointer;
  z-index: 99;
}

.back-to-top.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .wave-container svg {
    height: 40px;
  }
  
  #weather-widget {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .weather-main {
    justify-content: center;
    width: 100%;
  }
  
  .weather-details {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
  }
  
  .weather-details {
    flex-direction: column;
  }
}
/* Footer styles */
.footer {
position: relative;
background-color: #090b13;
margin-top: 4rem;
}

.footer-wave {
position: absolute;
top: -100px;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}

.footer-wave svg {
width: 100%;
height: 100px;
}

.footer-content {
position: relative;
padding: 5rem 0 3rem;
z-index: 1;
}

.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}

@media (min-width: 768px) {
.footer-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1024px) {
.footer-grid {
  grid-template-columns: repeat(4, 1fr);
}
}

.footer-col {
position: relative;
}

.footer-logo {
margin-bottom: 1.5rem;
}

.footer-logo h3 {
font-size: 1.75rem;
font-weight: 800;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: inline-block;
}

.footer-description {
color: var(--text-primary);
margin-bottom: 1.5rem;
font-size: 0.95rem;
line-height: 1.6;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-tertiary);
color: white;
font-size: 1rem;
transition: all 0.3s ease;
border: 1px solid var(--border-primary);
}

.social-link:hover {
background: var(--gradient-primary);
transform: translateY(-3px);
box-shadow: 0 10px 15px rgba(254, 92, 151, 0.3);
}

.footer-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.75rem;
color: white;
}

.footer-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 3px;
background: var(--gradient-primary);
border-radius: 4px;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: var(--text-primary);
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
}

.footer-links a i {
font-size: 0.75rem;
margin-right: 0.5rem;
color: var(--primary);
transition: transform 0.3s ease;
}

.footer-links a:hover {
color: white;
transform: translateX(5px);
}

.footer-links a:hover i {
transform: translateX(3px);
}

.contact-info {
display: flex;
flex-direction: column;
gap: 1rem;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
color: var(--text-primary);
}

.contact-item i {
color: var(--primary);
font-size: 1rem;
margin-top: 0.25rem;
}

.newsletter-text {
color: var(--text-primary);
margin-bottom: 1rem;
font-size: 0.95rem;
}

.newsletter-form .form-group {
display: flex;
position: relative;
overflow: hidden;
border-radius: 100px;
background: var(--bg-tertiary);
border: 1px solid var(--border-secondary);
transition: all 0.3s ease;
}

.newsletter-form .form-group:focus-within {
border-color: var(--primary);
background: var(--bg-tertiary);
box-shadow: 0 5px 15px rgba(254, 92, 151, 0.2);
}

.newsletter-input {
width: 100%;
padding: 0.875rem 1.5rem;
background: transparent;
border: none;
color: white;
outline: none;
}

.newsletter-input::placeholder {
color: var(--text-secondary);
}

.newsletter-btn {
position: absolute;
right: 5px;
top: 5px;
bottom: 5px;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
border: none;
border-radius: 100px;
background: var(--gradient-primary);
color: white;
cursor: pointer;
transition: all 0.3s ease;
}

.newsletter-btn:hover {
transform: scale(1.05);
box-shadow: 0 3px 10px rgba(254, 92, 151, 0.4);
}

.footer-bottom {
border-top: 1px solid var(--border-primary);
padding: 1.5rem 0;
}

.footer-bottom-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}

@media (min-width: 768px) {
.footer-bottom-content {
  flex-direction: row;
  justify-content: space-between;
}
}

.copyright {
color: var(--text-primary);
font-size: 0.875rem;
}

.footer-legal-links {
display: flex;
gap: 1.5rem;
}

.footer-legal-links a {
color: var(--text-secondary);
font-size: 0.875rem;
text-decoration: none;
transition: all 0.3s ease;
}

.footer-legal-links a:hover {
color: white;
}
/* Ultra-compact confirmation page styles */
/* Add this to your existing home.css file */

/* Base styles */
.bg-dark {
background-color: var(--dark);
background-image: linear-gradient(to bottom, var(--darker) 0%, var(--dark) 100%);
}

.text-primary {
color: var(--primary);
}

.text-secondary {
color: var(--secondary);
}

.text-accent {
color: white;
}

/* Ultra compact header */
.confirmation-header-mini {
padding: 1.5rem 0 0.5rem;
border-bottom: 1px solid var(--border-primary);
background: rgba(9, 11, 19, 0.8);
}

.text-gradient-primary-mini {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: #fe5c97; /* Fallback color */
font-size: 1.5rem;
font-weight: 700;
margin: 0;
}

.success-icon-container-mini {
width: 40px;
height: 40px;
background: var(--bg-tertiary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--primary);
box-shadow: 0 0 10px rgba(254, 92, 151, 0.3);
}

.success-icon-mini {
width: 24px;
height: 24px;
color: white;
}

.badge-mini {
display: inline-block;
background: var(--bg-tertiary);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 100px;
font-size: 0.75rem;
font-weight: 600;
border: 1px solid var(--border-secondary);
}

/* Section styling */
.section-mini {
padding: 1rem 0;
}

/* Card mini styling */
.card-mini {
background: rgba(15, 20, 30, 0.6);
backdrop-filter: blur(5px);
border: 1px solid var(--border-primary);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
}

.card-mini:hover {
border-color: rgba(254, 92, 151, 0.3);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
transform: translateY(-2px);
}

.card-mini-header {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--border-primary);
background: rgba(0, 0, 0, 0.2);
}

.player-number-mini {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 0.875rem;
}

.player-name {
font-size: 1rem;
font-weight: 600;
color: white;
margin: 0;
}

.card-mini-content {
padding: 0.75rem 1rem;
}

.player-detail-mini {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-primary);
font-size: 0.813rem;
margin: 0;
}

.player-detail-mini i {
color: var(--primary);
width: 12px;
font-size: 0.75rem;
}

/* Availability mini styling */
.availability-mini-section {
margin-top: 0.5rem;
border-top: 1px solid var(--border-primary);
padding-top: 0.5rem;
}

.availability-heading {
font-size: 0.875rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.5rem;
}

.availability-mini-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 0.5rem;
}

.availability-mini-item {
background: rgba(0, 0, 0, 0.2);
border-radius: 6px;
padding: 0.5rem;
border: 1px solid var(--border-primary);
}

.availability-mini-item:hover {
background: rgba(0, 0, 0, 0.3);
border-color: var(--border-secondary);
}

/* Button mini */
.btn-mini {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--gradient-primary);
color: white;
font-size: 0.875rem;
font-weight: 600;
padding: 0.5rem 1.25rem;
border-radius: 100px;
transition: all 0.3s ease;
text-decoration: none;
box-shadow: 0 4px 10px rgba(254, 92, 151, 0.3);
}

.btn-mini:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(254, 92, 151, 0.4);
}

/* Footer mini */
.footer-mini {
margin-top: 1.5rem;
padding: 1rem 0;
border-top: 1px solid var(--border-primary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
.availability-mini-grid {
  grid-template-columns: 1fr;
}
}

/* Fix for "Tournament by:" logos on mobile devices */

/* Container for the organizers/sponsors */
.organizers-section {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(55, 65, 81, 0.7);
width: 100%;
overflow: hidden; /* Prevent horizontal overflow */
}

/* Logo list container */
.organizers-list {
display: flex;
flex-wrap: wrap; /* Allow logos to wrap on small screens */
align-items: center;
justify-content: center; /* Center the logos */
gap: 1.5rem;
max-width: 100%;
}

/* Individual logo sizing */
.organizers-list img {
height: 2.5rem;
max-width: 100px; /* Limit maximum width */
object-fit: contain;
border-radius: 9999px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
.organizers-list {
  flex-direction: column; /* Stack logos vertically on very small screens */
  align-items: center;
  gap: 1.25rem;
}

.organizers-list img {
  height: 2.25rem; /* Slightly smaller on mobile */
  max-width: 90px;
}
}

/* For screens between 481px and 767px - show in a grid */
@media (min-width: 481px) and (max-width: 767px) {
.organizers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  justify-items: center;
  gap: 1.25rem;
}
}

/* Ensure the section label is properly constrained */
.section-label {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

/* Updated variables */
:root {
--primary: #BFFF2D;
--secondary: #41e2ba;
--accent: #3ae374;
--dark: #090b13;
--darker: #060810;
--light: #f0f5ff;
--gradient-primary: linear-gradient(45deg, var(--primary), #000000);
--gradient-secondary: linear-gradient(135deg, var(--secondary), #3498db);
--gradient-accent: linear-gradient(90deg, var(--accent), #2ecc71);
--padding-section: 6rem 0;
}

/* Button styles */
.btn-primary {
background: var(--gradient-primary);
box-shadow: 0 10px 20px rgba(191, 255, 45, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 25px rgba(191, 255, 45, 0.4);
}

/* Hero section */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top right, rgba(191, 255, 45, 0.15), transparent 50%),
            radial-gradient(circle at bottom left, rgba(65, 226, 186, 0.15), transparent 50%);
pointer-events: none;
}

.hero-badge {
background-color: rgba(191, 255, 45, 0.25);
border: 1px solid rgba(191, 255, 45, 0.3);
}

.hero h1 {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Badge glow effect */
.badge-glow::after {
background-color: var(--primary);
box-shadow: 0 0 10px 2px var(--primary);
}

/* Scrolling text banners */
.scrolling-text span {
background: var(--gradient-primary);
box-shadow: 0 3px 10px rgba(191, 255, 45, 0.3);
}

.scrolling-text span:hover {
box-shadow: 0 5px 15px rgba(191, 255, 45, 0.4);
}

/* Tournament card */
.tournament-inner {
border: 1px solid #BFFF2D;
}

/* Date icon */
.date-icon {
background: linear-gradient(to bottom right, var(--primary), #000000);
}

/* Widgets */
.widget-card:hover {
border-color: var(--primary);
box-shadow: 0 15px 30px rgba(191, 255, 45, 0.2);
}

.widget-title::before {
background: var(--gradient-primary);
}

.weather-icon {
color: var(--primary);
filter: drop-shadow(0 0 8px rgba(191, 255, 45, 0.5));
}

.match-info i {
color: var(--primary);
}

/* Rules and prizes sections */
.rules-card::before, .prizes-card::before {
background: var(--gradient-primary);
}

.rule-icon-container {
background: var(--gradient-primary);
}

.rule-list-item::before {
background-color: var(--primary);
}

/* Card hover effect */
.card-hover::before {
background: linear-gradient(45deg, transparent, rgba(191, 255, 45, 0.1), transparent);
}

.card-hover:hover {
box-shadow: 0 15px 30px -10px rgba(191, 255, 45, 0.3);
border-color: var(--primary);
}

/* Back to top button */
.back-to-top {
background: var(--gradient-primary);
box-shadow: 0 5px 15px rgba(191, 255, 45, 0.4);
}

/* Footer styles */
.footer-logo h3 {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.social-link:hover {
background: var(--gradient-primary);
box-shadow: 0 10px 15px rgba(191, 255, 45, 0.3);
}

.footer-title::after {
background: var(--gradient-primary);
}

.footer-links a i {
color: var(--primary);
}

.contact-item i {
color: var(--primary);
}

.newsletter-form .form-group:focus-within {
border-color: var(--primary);
box-shadow: 0 5px 15px rgba(191, 255, 45, 0.2);
}

.newsletter-btn {
background: var(--gradient-primary);
}

.newsletter-btn:hover {
box-shadow: 0 3px 10px rgba(191, 255, 45, 0.4);
}

/* Mini styles for confirmation page */
.success-icon-container-mini {
border: 1px solid var(--primary);
box-shadow: 0 0 10px rgba(191, 255, 45, 0.3);
}

.card-mini:hover {
border-color: rgba(191, 255, 45, 0.3);
}

.player-number-mini {
background: var(--gradient-primary);
}

.player-detail-mini i {
color: var(--primary);
}

.btn-mini {
background: var(--gradient-primary);
box-shadow: 0 4px 10px rgba(191, 255, 45, 0.3);
}

.btn-mini:hover {
box-shadow: 0 6px 15px rgba(191, 255, 45, 0.4);
}

/* Make sponsor logos bigger in scrolling banner */
.logos img {
height: 90px; /* Increased from 60px */
object-fit: contain;
opacity: 0.7;
transition: all 0.3s ease;
filter: grayscale(100%);
}
/* Improved Sponsors Section Styles */
.sponsors-featured-section {
  padding-bottom: 4rem;
}

/* Wider container for sponsors section */
.container-wide {
  width: 100%;
  max-width: 1320px; /* Slightly narrower container for better spacing */
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.sponsors-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

/* Rows styling with strict 6 columns on desktop, 2 on mobile */
.sponsors-row {
  display: grid;
  gap: 0.75rem; /* Reduced gap from 1rem to 0.75rem */
  width: 100%;
  /* Default to 2 columns for mobile */
  grid-template-columns: repeat(2, 1fr);
}

/* Hide rows initially except for the first one */
.sponsor-row-hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

/* Show hidden rows when expanded class is added */
.sponsors-grid.expanded .sponsor-row-hidden {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* Individual sponsor card styling */
.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 20, 30, 0.4);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 0.75rem 0.5rem; /* Reduced horizontal padding */
  transition: all 0.3s ease;
  height: 100%;
  min-height: 90px; /* Slightly reduced minimum height */
}

/* Empty sponsor placeholders */
.sponsor-empty {
  display: none; /* Hide empty placeholders on mobile by default */
  border: none;
  background: transparent;
  box-shadow: none;
}

.sponsor-card:not(.sponsor-empty):hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(191, 255, 45, 0.2);
  background: rgba(25, 30, 45, 0.6);
}

.sponsor-card img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Sponsor name styling */
.sponsor-name {
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  padding: 0.25rem;
  transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-name {
  color: white;
  background: rgba(191, 255, 45, 0.15);
}

/* Toggle button animation */
#toggleSponsorsBtn i {
  transition: transform 0.3s ease;
}

#toggleSponsorsBtn.active i {
  transform: rotate(180deg);
}

/* Responsive adjustments */
/* Small tablets up to 768px */
@media (min-width: 577px) and (max-width: 767px) {
  .sponsors-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem; /* Slightly tighter gap on small tablets */
  }
}

/* Medium tablets from 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .sponsors-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem; /* Tighter gap on medium tablets */
  }
}

/* Large tablets and small desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .sponsors-row {
    grid-template-columns: repeat(6, 1fr); /* Changed to 6 columns for all desktop sizes */
    gap: 0.5rem; /* Even tighter gap on small desktops */
  }
  
  .sponsor-card {
    padding: 0.8rem;
  }
}

/* Large desktops 1200px and up - 6 columns */
@media (min-width: 1200px) {
  .sponsors-row {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem; /* Reduced gap for large desktops */
  }
  
  .sponsor-empty {
    display: flex; /* Show empty placeholders on large screens if needed */
  }
  
  .sponsor-card {
    padding: 0.9rem;
  }
}

/* Add some extra styling for very small mobile */
@media (max-width: 400px) {
  .sponsors-row {
    gap: 0.5rem;
  }
  
  .sponsor-card {
    padding: 0.5rem;
    min-height: 90px;
  }
  
  .sponsor-name {
    font-size: 0.65rem;
  }
}

/* Update the hero h1 to be white instead of gradient */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white; /* Plain white color */
  /* Remove gradient properties */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  /* Add a subtle text shadow for better readability against any background */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Update the footer logo to be white instead of gradient */
.footer-logo h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white; /* Plain white color */
  /* Remove gradient properties */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  display: inline-block;
}

/* Optional: Add hover effect for the footer logo */
.footer-logo h3:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Additional styles for sponsors page that can be added to your CSS files */

/* Filter buttons styling */
.filter-btn {
  background: rgba(15, 20, 30, 0.6);
  color: var(--text-primary);
  border: 1px solid var(--border-primary);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(25, 30, 45, 0.8);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: black;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(191, 255, 45, 0.3);
}

/* Search input styling */
.search-container {
  position: relative;
  max-width: 100%;
  width: 320px;
}

.search-container input {
  width: 100%;
  padding-left: 2.5rem;
  transition: all 0.3s ease;
}

.search-container::before {
  content: '\f002';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-container input:focus + .search-container::before,
.search-container:hover::before {
  color: var(--primary);
}

/* Testimonials from sponsors section */
.testimonial-card {
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.testimonial-quote::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  color: white;
  font-weight: 600;
  margin: 0;
}

.testimonial-author-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* Sponsor tier badges */
.sponsor-tier {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}

.sponsor-tier.platinum {
  background: linear-gradient(90deg, #e0e0e0, #b0b0b0);
}

.sponsor-tier.gold {
  background: linear-gradient(90deg, #FFD700, #FFA500);
}

.sponsor-tier.silver {
  background: linear-gradient(90deg, #C0C0C0, #A0A0A0);
}

/* Become a sponsor info cards */
.sponsor-info-card {
  background: rgba(25, 30, 45, 0.6);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.sponsor-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.sponsor-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.sponsor-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sponsor-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sponsor-benefit-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.sponsor-benefit-text {
  color: var(--text-primary);
}

/* Animation for sponsors page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}
