
/*body {
 margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-attachment: fixed;
  color: #ffffff;
*/
main {
background: linear-gradient(135deg, #0f2027 30%, #203a43 60%, #2c5364 100%); ;
color:white;
padding: 10px;
}

h1, h2, h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Hero Section --- */
.hero {
  padding: 20px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color:#aff2f0;
  margin:20px 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Teams Grid --- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* --- Glassy Card Style --- */
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-content {
  padding: 20px;
  text-align: center;
  color: white;
}

.card-content h3 {
  margin: 10px 0;
  color: #4ca1af; /* A lighter highlight color */
}

/* --- Slideshow Container --- */
.slideshow-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySlides.active {
  display: block;
  animation: fade 0.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; } 
  to { opacity: 1; }
}

/* --- Slideshow Controls --- */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 3px 3px 0;
  user-select: none;
  transition: 0.3s;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* --- Dots --- */
.dot-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #fff;
  width: 20px; /* Stretched dot effect */
  border-radius: 10px;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* --- Join Section --- */
#join {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}
