@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body Background ===== */
body {
  background:
    url("6c312465179a766935963e7323e47fc7.jpg") center/cover no-repeat fixed,
    radial-gradient(circle at top, #0a0015, #030008, #000);
  background-blend-mode: overlay;
  color: #e5dcf7;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== Subtle moving light effect ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(200, 150, 255, 0.08), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 75%);
  animation: auroraMove 25s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes auroraMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5%, 5%) scale(1.1); }
  100% { transform: translate(3%, -3%) scale(1.05); }
}

/* ===== Banner ===== */
.banner {
  position: relative;
  background: rgba(10, 0, 20, 0.75);
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 45px rgba(200, 150, 255, 0.25);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.banner h1 {
  font-size: 3rem;
  color: #eae4ff;
  text-shadow: 0 0 25px rgba(220, 200, 255, 0.3);
  margin-bottom: 10px;
}

.banner p {
  color: #d1c5f0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ===== Discord Button ===== */
.links {
  margin: 35px 0;
  position: relative;
  z-index: 1;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  transition: 0.3s;
}

.discord {
  background: linear-gradient(90deg, #b47cff, #e0b3ff);
  box-shadow: 0 0 25px rgba(200, 150, 255, 0.4);
}

.discord:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(220, 180, 255, 0.6);
}

/* ===== Member Sections ===== */
.section-group {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-group h2 {
  color: #d8caff;
  font-size: 1.8rem;
  margin: 40px 0 25px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 0 20px;
}

.member-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  width: 240px;
  transition: 0.35s;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(200, 150, 255, 0.15);
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(210, 180, 255, 0.3);
}

.member-card img {
  display: block;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid rgba(200, 150, 255, 0.4);
  background: #0b0015;
}

.member-card h3 {
  margin: 8px 0;
  color: #f0eaff;
  font-weight: 600;
}

.member-card p {
  font-size: 0.9rem;
  color: #d0c8e5;
  margin-bottom: 12px;
  min-height: 50px;
}

/* ===== Instagram Icon Style ===== */
.member-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #cdb6ff;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 6px;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(220, 200, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.member-links a img {
  width: 16px;
  height: 16px;
}

.member-links a:hover {
  background: rgba(210, 180, 255, 0.25);
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 200, 255, 0.4);
}

/* ===== Highlight Owner ===== */
.section-group:first-of-type h2 {
  color: #f0cfff;
  text-shadow: 0 0 15px rgba(255, 180, 255, 0.5);
}

.section-group:first-of-type .member-card {
  border: 1px solid rgba(255, 180, 255, 0.35);
  box-shadow: 0 0 40px rgba(255, 180, 255, 0.25);
}


.visitor-box {
  margin-top: 8px;
  color: #d8b4ff;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 6px rgba(170, 0, 255, 0.4);
}



.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #160021;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(200,150,255,0.4);
  text-align: center;
  width: 300px;
}

.popup-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.discord-login {
  background: #5865F2;
  color: white;
}

.continue-btn {
  background: white;
  color: #000;
}


/* Animation for Login Popup */
.popup-box {
  opacity: 0;
  transform: scale(0.92) translateY(15px);
  animation: popupEnter 0.6s ease forwards;
}

@keyframes popupEnter {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: scale(1.02) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*-------------------Insta-tik icon--------------------*/

.social-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-buttons a img {
  width: 45px;
  height: 45px;
  transition: 0.25s;
}

.social-buttons a img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}




