/* Events/Tournaments Page Styles - Clean and Light */
.termine {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  margin: 2rem auto;
  padding: 3rem;
  border-radius: 20px;
  max-width: 1000px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #1f2937;
}

.termine h2 {
  margin: 0 0 2rem 0;
  color: #1e40af;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 1rem;
}

.termine h2::before {
  content: '🏆 ';
  margin-right: 1rem;
  font-size: 2rem;
}

.termine h3 {
  color: #1e40af;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem 0;
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
}

.termine h4 {
  margin: 0 0 2rem 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: #6b7280;
  text-align: center;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Simple Tournament Lists */
#upcomingList, #pastList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#upcomingList li, #pastList li {
  background: rgba(59, 130, 246, 0.1);
  color: #1f2937;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

#upcomingList li:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.15);
}

/* Past tournaments - different styling */
#pastList li {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.2);
}

/* Tournament content */
.tournament-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tournament-date {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.tournament-date::before {
  content: '📅 ';
  margin-right: 0.5rem;
}

.tournament-location {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.tournament-location::before {
  content: '📍 ';
  margin-right: 0.5rem;
}


/* Simple countdown */
#countdown {
  background: rgba(251, 191, 36, 0.1);
  color: #d97706;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1px solid rgba(251, 191, 36, 0.2);
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .termine {
    margin: 1rem;
    padding: 2rem;
  }
  
  .termine h2 {
    font-size: 2rem;
  }
  
  .termine h3 {
    font-size: 1.5rem;
  }
  
  #upcomingList li, #pastList li {
    padding: 1.5rem;
  }
  
  .tournament-name {
    font-size: 1.3rem;
  }
  
  .modal {
    padding: 1rem;
  }
  
  .modal-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .termine {
    padding: 1.5rem;
  }
  
  .termine h2 {
    font-size: 1.8rem;
  }
  
  .termine h3 {
    font-size: 1.3rem;
  }
  
  #upcomingList li, #pastList li {
    padding: 1.25rem;
  }
  
  .tournament-name {
    font-size: 1.2rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}