body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND VIDEO
========================= */
#bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* =========================
   MAIN CARD
========================= */
.card {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 420px;
  margin: 80px auto 40px;
  text-align: center;
}

/* =========================
   PFP WRAPPER (GLOW BASE)
========================= */
.pfp-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

/* =========================
   PROFILE PICTURE
========================= */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;

  border: 3px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
}

/* =========================
   STRONG NEON GLOW LAYER
========================= */
.pfp-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  z-index: 1;

  filter: blur(18px);
  opacity: 0.9;

  animation: pulseGlow 1.9s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* =========================
   STATUS: ONLINE (GREEN)
========================= */
.pfp-wrapper.online::before {
  background: radial-gradient(circle,
    rgba(57,255,20,1),
    rgba(57,255,20,0.35),
    transparent 70%);

  box-shadow:
    0 0 20px rgba(57,255,20,1),
    0 0 50px rgba(57,255,20,0.7),
    0 0 90px rgba(57,255,20,0.45);
}

/* =========================
   STATUS: WIFE TIME (PINK)
========================= */
.pfp-wrapper.wife::before {
  background: radial-gradient(circle,
    rgba(255,79,216,1),
    rgba(255,79,216,0.35),
    transparent 70%);

  box-shadow:
    0 0 20px rgba(255,79,216,1),
    0 0 50px rgba(255,79,216,0.7),
    0 0 90px rgba(255,79,216,0.45);
}

/* =========================
   STATUS: SLEEPING (PURPLE)
========================= */
.pfp-wrapper.sleep::before {
  background: radial-gradient(circle,
    rgba(106,92,255,1),
    rgba(106,92,255,0.35),
    transparent 70%);

  box-shadow:
    0 0 20px rgba(106,92,255,1),
    0 0 50px rgba(106,92,255,0.7),
    0 0 90px rgba(106,92,255,0.45);
}

/* =========================
   GLOW PULSE ANIMATION
========================= */
@keyframes pulseGlow {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
}

/* =========================
   NAME
========================= */
h1 {
  font-size: 26px;
  margin: 15px 0 5px;
}

/* =========================
   STATUS ROW
========================= */
.status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* STATUS DOT BASE */
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: gray;
  box-shadow: 0 0 10px gray;
}

/* STATUS COLORS */
.dot.online {
  background: #39ff14;
  box-shadow: 0 0 10px #39ff14;
}

.dot.wife {
  background: #ff4fd8;
  box-shadow: 0 0 10px #ff4fd8;
}

.dot.sleep {
  background: #6a5cff;
  box-shadow: 0 0 10px #6a5cff;
}

/* =========================
   BIO
========================= */
.bio {
  opacity: 0.8;
  margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 12px;
  border-radius: 12px;

  text-decoration: none;
  color: white;

  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.icon {
  width: 18px;
  height: 18px;
}

/* =========================
   ENTER SCREEN
========================= */
#enterScreen {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

#enterText {
  font-size: 16px;
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  cursor: pointer;
}

/* =========================
   COPY POPUP
========================= */
#copyPopup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 12px;

  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 99999;
}

#copyPopup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* =========================
   MUTE BUTTON
========================= */
#muteBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;

  cursor: pointer;
  z-index: 99999;

  transition: 0.2s ease;
}

#muteBtn:hover {
  transform: scale(1.1);
}

#muteBtn i {
  font-size: 18px;
  color: white;
}