/* ========== SPONSORS SECTION ========== */
.sponsors-section {
  background: transparent;
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.sponsors-content {
  max-width: 1000px;
  margin: 0 auto;
}

.sponsor-why {
  background: rgba(170, 0, 255, 0.08);
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(170, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.sponsor-why:hover {
  border-color: #00CCFF;
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.05);
}

.sponsor-why h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Orbitron', monospace;
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem;
  background: rgba(170, 0, 255, 0.05);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(170, 0, 255, 0.15);
}

.benefit:hover {
  transform: translateY(-8px);
  border-color: #00CCFF;
  background: rgba(0, 204, 255, 0.08);
  box-shadow: 0 15px 25px rgba(0, 204, 255, 0.1);
}

.benefit i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.benefit h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Orbitron', monospace;
}

.benefit p {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.9;
}

.sponsor-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(170, 0, 255, 0.2);
}

.sponsor-details p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.sponsor-details p:hover {
  background: rgba(0, 204, 255, 0.05);
  transform: translateX(5px);
}

.sponsor-details i {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 30px;
}

.sponsor-details strong {
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CTA Button */
.sponsor-cta {
  text-align: center;
  margin-top: 2rem;
}

.sponsor-btn {
  background: linear-gradient(135deg, #AA00FF, #CC33FF);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(170, 0, 255, 0.3);
}

.sponsor-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 204, 255, 0.5);
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
}

/* Responsive */
@media (max-width: 768px) {
  .sponsor-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sponsor-why h3 {
    font-size: 1.4rem;
  }
  
  .benefit {
    padding: 1rem;
  }
  
  .sponsor-details p {
    font-size: 0.9rem;
  }
}

