
/* Initial profile setup popup */
.popup-content {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  display:flex;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: 'Syne', sans-serif;
}

.popup-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: -20px;
}

.popup-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.popup-content input {
  margin-top:-10px;
  width: 90%;
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  outline: none;
  backdrop-filter: blur(5px);
  transition: background 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.popup-content input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.popup-content input:focus {
  background: rgba(255, 255, 255, 0.25);
}

.popup-content button {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.popup-content button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

#profile-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
}

/* Profile popup */
.actual-popup-content {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.actual-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.actual-pfp-circle {
  width: 100px;
  height: 100px;
  background: whitesmoke;
  color: black;
  border-radius: 50%;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.actual-profile-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.actual-profile-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 2px 0;
}

.actual-popup-content button {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.actual-popup-content button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}