:root {
  --black: #000;
  --white: #fff;
  --gray: #777;
  --cyan: #00ffff;
  --font-holo: 'Orbitron', sans-serif;
}

body#body-leosystem {
  margin: 0;
  font-family: var(--font-holo);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  overflow-y: auto;
}

#canvas-bg-leosystem {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

body#body-leosystem::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.holo-title-leosystem {
  font-size: clamp(2.5rem, 3vw, 4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
  animation: holo-glitch-leosystem 3s infinite linear;
}

@keyframes holo-glitch-leosystem {
  0% { text-shadow: 2px 0 white, -2px 0 #aaa; transform: skew(0deg); }
  15% { text-shadow: -2px 0 white, 2px 0 #888; transform: skew(2deg); }
  30% { text-shadow: 3px 0 white, -3px 0 #555; transform: skew(-1deg); }
  45% { text-shadow: 1px 0 #aaa, -1px 0 white; }
  60% { text-shadow: -1px 0 white, 1px 0 #666; }
  80% { transform: skew(3deg); opacity: 0.9; }
  100% { text-shadow: 2px 0 white, -2px 0 #999; }
}

#landing-page-leosystem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  transition: opacity 0.5s ease;
}

.landing-container-leosystem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.enter-button-leosystem,
.youtube-button-leosystem {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 45px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  text-decoration: none;
}

#enter-btn-leosystem {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: bold;
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 32px;
  text-transform: uppercase;
  cursor: pointer;
}

.enter-button-leosystem:hover,
.youtube-button-leosystem:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

#members-page-leosystem {
  display: none;
  color: var(--white);
  padding: 40px 20px 80px;
  position: relative;
}

.main-wrapper-leosystem {
  max-width: 1000px;
  margin: auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
  text-align: center;
}

header.member-header-leosystem h2 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
  margin-bottom: 25px;
}

.search-container-leosystem {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
.search-box-leosystem {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
}
.search-box-leosystem i {
  color: #aaa;
  margin-right: 10px;
}
#searchInput-leosystem {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
}

.section-title-leosystem {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.member-grid-leosystem {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
}

.member-card-leosystem {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
  width: 90%;
  min-height: 80px;
}

.member-card-leosystem:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.profile-pic-leosystem {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

.member-info-leosystem {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 0;
}

.member-info-leosystem h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-info-leosystem a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.member-info-leosystem a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .member-grid-leosystem {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .member-card-leosystem {
    width: 100%;
    min-height: 75px;
  }
  .member-info-leosystem h3 {
    font-size: 0.9rem;
  }
  .member-info-leosystem a {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .member-grid-leosystem {
    grid-template-columns: 1fr;
  }
  .member-card-leosystem {
    width: 95%;
  }
}

.fixed-btn-leosystem {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 95px;
  height: 45px;
  border-radius: 10px;
  font-family: var(--font-holo);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

.fixed-btn-leosystem:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.fixed-btn-leosystem:focus {
  outline: none;
}

.fixed-btn-leosystem:active {
  transform: scale(0.97);
}

footer {
  text-align: center;
  color: #888;
  font-size: 0.8rem;
  padding: 20px;
}