* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #0f0020, #000);
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ================= NAV FIX ================= */

.header {
  position: fixed;
  width: 100%;
  padding: 15px;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.logo img {
  height: 35px;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.menu a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #ff00ff;
}

/* HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}
/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.title {
  font-family: 'Orbitron';
  font-size: 70px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.7;
}

/* BUTTON */
.btn {
  margin-top: 20px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ff00ff;
}

/* MEMBERS */
.section {
  padding: 100px 20px;
  text-align: center;
}

.members {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 200px;
  height: 260px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 20px #ff00ff;
}

/* PARTICLES */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* CONTENT ABOVE */
.hero, .section {
  position: relative;
  z-index: 2;
}

/* NEON LINE */
.neon-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff00ff, transparent);
  margin: 40px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    font-size: 14px;
  }

  .logo img {
    height: 25px;
  }
}
/* NAV KPOP */
.menu {
  display: flex;
  align-items:end;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  color: #ff00ff;
}

/* LOGO KPOP */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.logo img {
  height: 35px;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    background: black;
    position: absolute;
    top: 70px;
    right: -100%;
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .menu.active {
    right: 0;
  }
}
/* ASEGURAR NAV FUNCIONAL */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MENU DERECHA */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 35px;
}