* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0f1035;
  color: #ffffff;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 2.5rem;
  border-radius: 50%;
}

.neon-text {
  font-family: 'Black Ops One', system-ui;
  color: #ffffff;
  text-shadow: 0 0 8px #ff00ff, 0 0 10px #ff00ff;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.3rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd600;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #ffd600;
  cursor: pointer;
}


.intro-section {
    scroll-margin-top: 80px;
  text-align: center;
  padding: 5rem 2rem;
   background: linear-gradient(300deg,#85edfb,#d555d5,#24142c);
  background-size: 180% 180%;
  animation: gradient-animation 8s ease infinite;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.intro-section h2 {
    font-size: 3rem;
    text-shadow: none;
}
.intro-section p {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.4rem;
}

.container {
    scroll-margin-top: 90px;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.container h3 {
  font-family: 'Black Ops One', system-ui;
  color: #ffd600;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.events-section {
    scroll-margin-top: 50px;
  text-align: center;
  padding: 4rem 2rem;
}

.events-section h2 {
  color: #ffd600;
  margin-bottom: 2rem;
    font-size: 2rem;
  font-family: 'Black Ops One', system-ui;
}

.events-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border-radius: 10px;
  max-width: 280px;
  flex: 1 1 230px;
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #d555d5;
}

.event-card i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}
.event-card h3 {
  color: #ffd600;
  margin-bottom: 0.5rem;
}

.join-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #1a1035;
}

.join-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  background-color: #ffd600;
  color: #0f1035;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.join-btn:hover {
  background-color: #d555d5;
  color: #ffffff;
  transform: scale(1.1);
}

.footer {
  text-align: center;
  padding: 2rem;
  background-color: #d555d5;
}

.footer a {
  color: #ffffff;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffd600;
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.5rem;
    flex-direction: row;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .nav-links.show {
    display: flex;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .events-container {
    flex-direction: column;
    align-items: center;
  }
}