* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

html, body, * {
  cursor:none !important;
}

body {
  height:100vh;
  overflow:hidden;
  color:white;
}

/* ===== ENTER SCREEN ===== */
#enter-screen {
  position:fixed;
  width:100%;
  height:100%;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.enter-box {
  text-align:center;
  opacity:0.8;
}

.enter-box h1 {
  font-size:3rem;
}

.enter-box p {
  opacity:0.6;
}

/* ===== VIDEO BACKGROUND ===== */
.bg-video {
  position:fixed;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.bg-overlay {
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(10px);
  z-index:1;
}

/* ===== MAIN CARD ===== */
.card-main {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  width:420px;
  padding:30px;
  border-radius:20px;

  background:rgba(0,0,0,0.75); /* LESS TRANSPARENT 🔥 */
  backdrop-filter:blur(25px);

  text-align:center;
  z-index:10;
}

/* ===== AVATAR ===== */
.avatar {
  width:90px;
  border-radius:50%;
  margin-bottom:10px;
}

/* ===== TEXT ===== */
h1 {
  font-size:2rem;
}

.bio {
  opacity:0.7;
  margin-bottom:15px;
}

/* ===== LOCATION ===== */
.location {
  opacity:0.6;
  margin-bottom:20px;
}

/* ===== DISCORD CARD ===== */
.discord-card {
  display:flex;
  gap:10px;
  align-items:center;
  background:rgba(255,255,255,0.06);
  padding:12px;
  border-radius:12px;
  margin-bottom:20px;
}

.discord-card img {
  width:40px;
  border-radius:50%;
}

/* ===== SOCIALS ===== */
.socials {
  display:flex;
  justify-content:center;
  gap:20px;
  font-size:22px;
}

.socials i {
  opacity:0.7;
  transition:0.2s;
}

.socials i:hover {
  opacity:1;
  transform:scale(1.2);
}

/* ===== MUSIC BAR ===== */
.music-bar {
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);

  width:350px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(0,0,0,0.7);
  padding:12px 20px;
  border-radius:15px;
  backdrop-filter:blur(15px);

  z-index:10;
}

/* ===== CURSOR ===== */
.custom-cursor {
  position:fixed;
  width:55px;
  height:55px;
  background:url('./images/gun.png') no-repeat center;
  background-size:contain;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
}

/* ===== PARTICLES ===== */
#trail {
  position:fixed;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:2;
}