 /* -- Account: Desktop Header -- */
  .acct-header {
    display: none;
  }
 
  @media (min-width: 1024px) {
    .acct-header {
      display: flex;
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #f3f4f6;
      padding: 0 2rem;
      height: 4rem;
      align-items: center;
      justify-content: space-between;
    }
  }
 
  .acct-header-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
  }
 
  .acct-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
 
  .acct-header-btn {
    padding: 0.5rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .acct-header-btn:hover { color: #4b5563; }
 
  /* -- Scroll Container -- */
  .acct-scroll {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    /*padding-bottom: 6rem;*/
  }
 
  .acct-scroll::-webkit-scrollbar { display: none; }
 
  @media (min-width: 1024px) {
    .acct-scroll { padding-bottom: 2rem; }
  }
 
  /* -- Profile Hero -- */
  .acct-hero {
    background: #F0F9FF;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
 
  @media (min-width: 1024px) {
    .acct-hero {
      flex-direction: row;
      text-align: left;
      padding: 3rem;
      gap: 2rem;
      background: linear-gradient(to right, #F0F9FF, white);
    }
  }
 
  .acct-hero-avatar-wrap {
    position: relative;
    margin-bottom: 1rem;
  }
 
  @media (min-width: 1024px) {
    .acct-hero-avatar-wrap { margin-bottom: 0; }
  }
 
  .acct-hero-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
 
  @media (min-width: 1024px) {
    .acct-hero-avatar { width: 6rem; height: 6rem; }
  }
 
  .acct-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
 
  .acct-hero-online-dot {
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid white;
    border-radius: 25%;
  }
 
  .acct-hero-info {
	  flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  @media (min-width: 1024px) {
    .acct-hero-info { align-items: flex-start; }
  }
 
  .acct-hero-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #161A1D;
    margin: 0 0 0.25rem;
  }
 
  @media (min-width: 1024px) {
    .acct-hero-name { font-size: 1.5rem; }
  }
 
  .acct-hero-email {
    font-size: 0.875rem;
    color: #555E68;
    margin: 0 0 0.75rem;
  }
 
  .acct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(60, 221, 167, 0.1);
  }
 
  .acct-hero-badge img { width: 0.875rem; height: 0.875rem; }
 
  .acct-hero-badge span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #3CDDA7;
  }
  
  #pfp_actions {
  width: 100%;
}

#pfp_actions button {
  min-width: 160px;
  white-space: nowrap;
}
 
  /* -- Content Grid -- */
  .acct-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
 
  @media (min-width: 768px) {
    .acct-grid { grid-template-columns: 1fr 1fr; }
  }
 
  @media (min-width: 1280px) {
    .acct-grid {
      /*grid-template-columns: repeat(3, 1fr);*/
      padding: 3rem;
    }
  }
 
  /* -- Settings Group -- */
  .acct-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
 
  .acct-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555E68;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    padding: 0 0.25rem;
    margin: 0;
  }
 
  .acct-group-list {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
 
  @media (min-width: 1024px) {
    .acct-group-list {
      border-color: #e5e7eb;
      box-shadow: none;
    }
  }
 
  /* -- Settings Row -- */
  .acct-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
  }
 
  .acct-row:hover { background: #f9fafb; }
 
  .acct-row-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0 1rem;
  }
 
  .acct-row-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
 
  .acct-row-icon img { width: 1.25rem; height: 1.25rem; }
 
  .acct-row-icon--blue    { background: rgba(81, 180, 251, 0.1); }
  .acct-row-icon--green   { background: rgba(60, 221, 167, 0.1); }
  .acct-row-icon--neutral { background: #F3F5F6; }
 
  .acct-row-info { flex: 1; }
 
  .acct-row-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
  }
 
  .acct-row-meta {
    font-size: 0.75rem;
    color: #555E68;
    margin: 0;
  }
 
  .acct-row-arrow {
    width: 1rem;
    height: 1rem;
    opacity: 0.4;
    transition: opacity 0.2s;
  }
 
  .acct-row:hover .acct-row-arrow { opacity: 1; }
 
  /* -- Footer Actions -- */
  .acct-footer {
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  @media (min-width: 1024px) {
    .acct-footer { padding: 0 3rem; margin-top: 2rem; }
  }
 

 
  .acct-version {
    margin-top: 1.5rem;
    font-size: 0.625rem;
    color: #555E68;
    text-align: center;
  }
  


  /* -- Phone & dob rows -- */
  .phone-row,.dob-row {
    display: flex;
    gap: 0rem;
  }
  
  .phone-country-wrapper,.dob-month-wrapper {
    position: relative;
    width: 8rem;
    flex-shrink: 0;
  }
  
  .dob-month-wrapper,.dob-year-wrapper {

    width: 8rem;

  }
  
   .dob-day-wrapper {

    width: 8rem;

  }

  .phone-country-wrapper {

    width: 8rem;

  }

  .phone-number-wrapper {
    flex: 1;
  }
  
.lucide--toggle-left {
  display: inline-block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23c1c1c1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='9' cy='12' r='3'/%3E%3Crect width='20' height='14' x='2' y='5' rx='7'/%3E%3C/g%3E%3C/svg%3E");
}


.lucide--toggle-right {
  display: inline-block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%2344a0d1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='15' cy='12' r='3'/%3E%3Crect width='20' height='14' x='2' y='5' rx='7'/%3E%3C/g%3E%3C/svg%3E");
}

  .faq-list {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
 
  .faq-block {
    border: 1px solid var(--brand-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
  }
 
  .faq-block.open {
    border-color: var(--brand-primary);
    background:#fff;
  }
 
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #161A1D;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
  }
 
  .faq-question:hover {
    background: var(--bg-highlight);
  }
 
  .faq-question-icon {
    flex-shrink: 0;
    color: var(--brand-primary);
    transition: transform 0.3s;
  }
 
  .faq-block.open .faq-question-icon {
    transform: rotate(45deg);
  }
 
  .faq-answer {
    display: none;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #555E68;
    line-height: 1.7;
    border-top: 1px solid var(--brand-border);
  }


.delete-acct-btn {
    width: 100%;
    max-width: 28rem;
    height: 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #EB4763;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.8rem;
}


 
  .delete-acct-btn:hover { background: #fef2f2; }
  .delete-acct-btn img { width: 1rem; height: 1rem; }
  