:root {
  --main: #a100ff;
  --second: #3a005f;
  --bg: #0a0014;
  --text: #f5e9ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.glass-box {
  background: rgba(161, 0, 255, 0.03);
  border: 1px solid rgba(161, 0, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(161, 0, 255, 0.1);
  z-index: 2;
  max-width: 450px;
  width: 100%;
}
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.profile img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--main);
}
.profile-info h2 {
  font-size: 1.2rem;
  color: var(--main);
}
.status {
  font-size: 0.9rem;
  color: #aaaaaa;
}
.status i {
  margin-right: 5px;
}
h1 {
  font-size: 1.4rem;
  color: var(--main);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px var(--main);
}
input,
select {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  margin-bottom: 10px;
}
button {
  background: linear-gradient(135deg, var(--main), var(--second));
  border: none;
  color: white;
  width: 100%;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 15px var(--main);
  margin-top: 10px;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.small-logout {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--main);
  color: var(--main);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 12px;
  margin-top: 10px;
  cursor: pointer;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-content {
  background: #1a0033;
  color: var(--main);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 20px var(--main);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}
.popup-content.success {
  background: #0d001a;
  color: var(--text);
  box-shadow: 0 0 20px #cc00ff;
}
.popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--main);
  cursor: pointer;
}
.contact {
  text-align: center;
  margin-top: 20px;
}
.contact a {
  color: var(--main);
  font-weight: bold;
  text-decoration: none;
}
.buy-access {
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--main);
  color: var(--main);
  padding: 8px 16px;
  border-radius: 25px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}