    :root {
      --home-bg: #f8fafc;
      --home-card-bg: #ffffff;
      --home-text: #1e293b;
      --home-muted: #64748b;
      --home-border: #e2e8f0;
      --home-accent: #3b82f6;
      --home-accent-light: #eff6ff;
    }
    [data-theme="dark"] {
      --home-bg: #0f172a;
      --home-card-bg: #1e293b;
      --home-text: #f1f5f9;
      --home-muted: #94a3b8;
      --home-border: #334155;
      --home-accent: #60a5fa;
      --home-accent-light: #1e3a5f;
    }
    body {
      background: var(--home-bg);
      color: var(--home-text);
      font-family: 'Inter', system-ui, sans-serif;
      margin: 0;
      padding: 1.5rem;
    }
    .profile-card {
      background: var(--home-card-bg);
      border: 0.0625rem solid var(--home-border);
      border-radius: 0.75rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .profile-card h2 {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .profile-card h2 i {
      color: var(--home-accent);
    }
    .profile-avatar {
      width: 5rem;
      height: 5rem;
      border-radius: 50%;
      background: var(--home-accent-light);
      color: var(--home-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      flex-shrink: 0;
      border: 0.125rem solid var(--home-border);
    }
    .profile-field {
      margin-bottom: 1rem;
    }
    .profile-field:last-child {
      margin-bottom: 0;
    }
    .profile-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--home-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.375rem;
    }
    .profile-value {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--home-text);
    }
    .profile-input {
      width: 100%;
      padding: 0.625rem 0.875rem;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--home-text);
      background: var(--home-bg);
      border: 0.0625rem solid var(--home-border);
      border-radius: 0.5rem;
      outline: none;
      transition: border-color 0.2s ease;
      min-height: 2.75rem;
      box-sizing: border-box;
    }
    .profile-input:focus {
      border-color: var(--home-accent);
      box-shadow: 0 0 0 0.1875rem var(--home-accent-light);
    }
    .profile-input:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    .profile-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 62.4375rem;
      background: var(--home-accent-light);
      color: var(--home-accent);
    }
    .profile-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.625rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      font-family: inherit;
      color: #ffffff;
      background: var(--home-accent);
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: opacity 0.2s ease;
      min-height: 2.75rem;
    }
    .profile-btn-primary:hover {
      opacity: 0.9;
    }
    .info-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 0.0625rem solid var(--home-border);
    }
    .info-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .info-row:first-child {
      padding-top: 0;
    }
    .info-row-label {
      font-size: 0.8125rem;
      color: var(--home-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .info-row-value {
      font-size: 0.875rem;
      font-weight: 500;
    }
    .toast {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      background: #10b981;
      color: #ffffff;
      padding: 0.75rem 1.25rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
      transform: translateY(0.5rem);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 1000;
      pointer-events: none;
    }
    .toast.visible {
      transform: translateY(0);
      opacity: 1;
    }
    @media (max-width: 40rem) {
      body { padding: 1rem; }
      .profile-header-inner { flex-direction: column; text-align: center; }
      .profile-avatar { margin: 0 auto; }
    }
