/* ═══════════════════════════════════════════════════════════════════════
       SCREEN: GALLERY (main)
       ═══════════════════════════════════════════════════════════════════════ */
    .gallery-main-scroll {
      flex: 1;
      overflow-y: auto;
      padding: 0 12px 16px;
      -webkit-overflow-scrolling: touch;
    }
    .gallery-filter-row {
      display: flex;
      gap: 8px;
      padding: 0 4px 12px;
      overflow-x: auto;
      scrollbar-width: none;
      flex-shrink: 0;
    }
    .gallery-filter-row::-webkit-scrollbar { display: none; }
    .gallery-main-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    
/* ═══════════════════════════════════════════════════════════════════════
       SCREEN: CREATE AI / MORE (stubs)
       ═══════════════════════════════════════════════════════════════════════ */
    .stub-screen {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      text-align: center;
    }
    .stub-screen__icon { font-size: 56px; margin-bottom: 16px; }
    .stub-screen__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .stub-screen__text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

    
/* ═══════════════════════════════════════════════════════════════════════
       SCREEN: MORE — Settings
       ═══════════════════════════════════════════════════════════════════════ */
    .more-screen {
      flex: 1;
      padding: 16px 20px;
      overflow-y: auto;
    }
    .more-screen__title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .settings-section {
      margin-bottom: 24px;
    }
    .settings-section__label {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-tertiary);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .settings-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .settings-row__text { flex: 1; min-width: 0; }
    .settings-row__name {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-primary);
    }
    .settings-row__desc {
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 2px;
    }
    /* Toggle switch */
    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 48px;
      height: 28px;
      flex-shrink: 0;
    }
    .toggle-switch input { opacity: 0; width: 0; height: 0; }
    .toggle-switch__slider {
      position: absolute;
      cursor: pointer;
      inset: 0;
      background: rgba(255,255,255,0.15);
      border-radius: 28px;
      transition: background 0.25s;
    }
    .toggle-switch__slider::before {
      content: "";
      position: absolute;
      width: 22px;
      height: 22px;
      left: 3px;
      bottom: 3px;
      background: #fff;
      border-radius: 50%;
      transition: transform 0.25s;
    }
    .toggle-switch input:checked + .toggle-switch__slider {
      background: #22c55e;
    }
    .toggle-switch input:checked + .toggle-switch__slider::before {
      transform: translateX(20px);
    }

    