/* Layout container */
.edit-profile-wrapper {
  min-height: 100vh;
  background: #0e1a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* The main card */
.edit-profile-card {
  background: #16253c;
  width: 450px;
  max-width: 95%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 20px 25px;
  color: #fff;
  text-align: center;
}

/* Title */
.edit-profile-card h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

/* Alerts */
.success-msg {
  color: #0f0;
  margin-bottom: 10px;
}
.error-msg {
  color: #f00;
  margin-bottom: 10px;
}

/* Form style */
.edit-profile-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.edit-profile-form label {
  text-align: left;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 3px;
  font-weight: 500;
}
.edit-profile-form input[type="text"],
.edit-profile-form input[type="url"],
.edit-profile-form input[type="file"],
.edit-profile-form select {
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: 2px solid transparent;
  background: #0e1a2b;
  color: #fff;
  transition: outline 0.2s;
  font-size: 14px;
}
.edit-profile-form input:focus,
.edit-profile-form select:focus {
  outline: 2px solid #ff9900;
}

/* Save button */
.btn-save {
  padding: 12px;
  background: linear-gradient(135deg, #ff9900, #f05800);
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn-save:hover {
  box-shadow: 0 0 8px rgba(255,153,0,0.5);
}

/* Avatar preview */
.avatar-preview img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}

/* Badge / Frame sections */
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-option {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #1b2e47;
  padding: 5px 8px;
  border-radius: 8px;
  transition: 0.2s;
}
.badge-option img {
  width: 30px;
  height: 30px;
}
.badge-option span {
  font-size: 13px;
  color: #fff;
}
.badge-option input[type="checkbox"] {
  accent-color: #ff9900;
}

/* If no badges or frames unlocked */
.locked-msg {
  color: #ff9900;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Verified section */
.verified-section {
  margin-top: 30px;
  background: #0e1a2b;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  padding: 15px;
}
.verified-section h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin-bottom: 8px;
}
.verified-section p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}
.btn-buy-tick {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-buy-tick:hover {
  background: #0056b3;
}

/* Responsive for small screens */
@media(max-width: 480px) {
  .edit-profile-card {
    width: 100%;
    border-radius: 0;
  }
}
