/* ═══════════════════════════════════════════════════════════════════════
       SCREEN: CHARACTER PROFILE
       ═══════════════════════════════════════════════════════════════════════ */
    .profile-scroll {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .profile-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 16px;
      background: var(--bg-card);
      border-radius: 0 0 24px 24px;
    }
    .profile-hero__avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(255,255,255,0.15);
      margin-bottom: 14px;
    }
    .profile-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
    .profile-hero__name {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .profile-hero__desc {
      font-size: 13px;
      color: var(--text-secondary);
      text-align: center;
      line-height: 1.5;
      max-width: 320px;
      margin-bottom: 16px;
    }
    .profile-hero__desc .show-more {
      color: var(--text-primary);
      text-decoration: underline;
      cursor: pointer;
    }
    .profile-stats {
      display: flex;
      gap: 1px;
      background: var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      width: 100%;
      max-width: 320px;
      margin-bottom: 16px;
    }
    .profile-stat {
      flex: 1;
      text-align: center;
      padding: 12px 8px;
      background: var(--bg-elevated);
    }
    .profile-stat__value { font-size: 18px; font-weight: 700; }
    .profile-stat__label { font-size: 11px; color: var(--text-secondary); }

    .profile-about {
      width: 100%;
      max-width: 320px;
      text-align: left;
    }
    .profile-about__title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .profile-about__text {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .profile-actions {
      display: flex;
      gap: 12px;
      width: 100%;
      max-width: 320px;
      padding: 16px 0 0;
    }
    .profile-action-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      background: var(--bg-elevated);
      font-size: 14px;
      font-weight: 600;
      transition: background 0.15s;
    }
    .profile-action-btn:hover { background: rgba(255,255,255,0.08); }
    .profile-action-btn svg { width: 18px; height: 18px; }
    .profile-action-btn--primary {
      background: #ffffff;
      color: #0d0f13;
      border-color: #ffffff;
    }
    .profile-action-btn--primary:hover { background: #f3f4f6; }

    .profile-gallery {
      padding: 24px 16px;
    }
    .profile-gallery__title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .profile-gallery__tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }
    .gallery-tab {
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 500;
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--border);
      color: var(--text-secondary);
    }
    .gallery-tab.active {
      background: var(--text-primary);
      color: var(--bg);
      border-color: transparent;
    }
    .profile-gallery__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }
    .gallery-thumb {
      aspect-ratio: 1;
      border-radius: var(--radius-sm);
      overflow: hidden;
      background: var(--bg-elevated);
      position: relative;
    }
    .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
    .gallery-empty, .gallery-loading {
      grid-column: 1 / -1;
      text-align: center;
      color: var(--text-secondary);
      font-size: 13px;
      padding: 24px 12px;
    }
    .gallery-thumb__premium {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    