/* --- Variables & Core Theme --- */
:root {
  --pink-accent: #FF69B4;
  --bg-dark: #000000;
  --glass-bg: rgba(28, 28, 30, 0.85);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #a1a1a6;
  --input-bg: rgba(255, 255, 255, 0.07);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* --- Section Containers --- */
.settings-section, .verification-status {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 25px;
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
}

/* --- Headings --- */
h2, h3, .profile-username h1 {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

/* --- Settings List (iOS Menu Style) --- */
.settings-list {
  list-style: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
}

.settings-list li {
  padding: 15px 20px;
  border-bottom: 1px solid var(--glass-border);
}

.settings-list a {
  color: var(--pink-accent);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* --- Forms & Inputs --- */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

input[type="text"], input[type="file"], select, textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  background-color: var(--input-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--pink-accent);
  background-color: rgba(255, 255, 255, 0.1);
}

/* --- Profile Picture (Pink Outer Glow) --- */
.profile-picture {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--pink-accent); 
}

/* --- Buttons --- */
button, .save-profile-btn, .edit-profile-button {
  background-color: var(--pink-accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.02);
}

/* --- Status Messages (REMOVED GREEN) --- */
.verify-page .message,
.account-deleted-page .message {
  background-color: rgba(255, 105, 180, 0.1);
  color: var(--pink-accent);
  padding: 12px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--pink-accent);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Floating Action Button */
#viewProfileDetailsBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--pink-accent);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Profile details panel */
.profile-details {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 320px;
  padding: 24px;
  color: white;
  box-shadow: var(--shadow);
}