
  /* (unused) .page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
  }*/

  /* (unused) .welcome-text h1 {
    margin: 0 0 0.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }*/

  /* (unused) .subtitle {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
  }*/

  /* (unused) .identity-badge {
    flex-shrink: 0;
  }*/

  /* (unused) .identity-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.25rem;
    animation: pulse 2s infinite;
  }*/

  @keyframes svelte-1uha8ag-pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }

  /* (unused) .identity-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }*/

  /* (unused) .identity-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: var(--accent-subtle);
    border-radius: 0.75rem;
    color: var(--accent);
    flex-shrink: 0;
  }*/

  /* (unused) .identity-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
  }*/

  /* (unused) .identity-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
  }*/

  /* (unused) .identity-value {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: "JetBrains Mono", "SF Mono", Monaco, monospace;
  }*/

  /* (unused) :global(:root:not(.dark)) .identity-value {
    background: var(--bg-tertiary);
  }*/

  /* (unused) .trust-display {
    margin-left: auto;
    flex-shrink: 0;
  }*/

  /* (unused) .groups-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }*/

  /* (unused) .manage-groups-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-decoration: none;
  }*/

  /* (unused) .manage-groups-link:hover {
    text-decoration: underline;
  }*/

  /* (unused) .manage-groups-link svg {
    width: 1rem;
    height: 1rem;
  }*/

  /* ============================================
     HOME FEED - Authenticated User Experience
     ============================================ */

  .home-feed.svelte-1uha8ag {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Compose Section */
  .compose-section.svelte-1uha8ag {
    padding: 0 16px;
    padding-bottom: 4px;
  }

  .compose-card.svelte-1uha8ag {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .compose-header.svelte-1uha8ag {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .compose-avatar.svelte-1uha8ag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .compose-avatar.svelte-1uha8ag svg:where(.svelte-1uha8ag) {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
  }

  .compose-meta.svelte-1uha8ag {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
  }

  .compose-label.svelte-1uha8ag {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
  }

  .group-selector-btn.svelte-1uha8ag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .group-selector-btn.svelte-1uha8ag .chevron:where(.svelte-1uha8ag) {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.2s;
  }

  .group-selector-btn.svelte-1uha8ag .chevron.open:where(.svelte-1uha8ag) {
    transform: rotate(180deg);
  }

  .group-selector-dropdown.svelte-1uha8ag {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 180px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    padding: 4px;
  }

  .group-option.svelte-1uha8ag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
  }

  .group-option.svelte-1uha8ag:hover {
    background: var(--bg-hover);
  }

  .group-option.selected.svelte-1uha8ag {
    background: var(--accent-muted);
    color: var(--accent);
  }

  .group-option.svelte-1uha8ag .check:where(.svelte-1uha8ag) {
    width: 16px;
    height: 16px;
    color: var(--accent);
  }

  .no-groups.svelte-1uha8ag {
    padding: 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
  }

  .no-groups.svelte-1uha8ag button:where(.svelte-1uha8ag) {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    text-decoration: underline;
  }

  .compose-body.svelte-1uha8ag {
    padding-left: 60px;
  }

  .composer-textarea.svelte-1uha8ag {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    background: var(--bg-base);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.0625rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.15s;
    outline: none;
    font-family: inherit;
  }

  .composer-textarea.svelte-1uha8ag:focus {
    outline: none;
    background: var(--bg-elevated);
  }

  .composer-textarea.svelte-1uha8ag::placeholder {
    color: var(--text-muted);
  }

  /* (unused) .compose-input::placeholder {
    color: var(--text-muted);
  }*/

  .compose-char-count.svelte-1uha8ag {
    text-align: right;
    font-size: 13px;
    color: var(--text-muted);
    padding-right: 4px;
  }

  .compose-char-count.near-limit.svelte-1uha8ag {
    color: var(--warning);
    font-weight: 600;
  }

  .compose-error.svelte-1uha8ag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(249, 24, 128, 0.1);
    border-radius: 12px;
    color: var(--error);
    font-size: 14px;
    font-weight: 500;
  }

  .compose-error.svelte-1uha8ag svg:where(.svelte-1uha8ag) {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .compose-footer.svelte-1uha8ag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    margin-left: 60px;
  }

  .compose-actions.svelte-1uha8ag {
    display: flex;
    gap: 4px;
  }

  .compose-action-btn.svelte-1uha8ag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: background-color 0.15s ease;
  }

  .compose-action-btn.svelte-1uha8ag:hover {
    background: var(--accent-subtle);
  }

  .compose-action-btn.svelte-1uha8ag svg:where(.svelte-1uha8ag) {
    width: 20px;
    height: 20px;
  }

  .compose-action-btn.has-image.svelte-1uha8ag {
    color: var(--accent);
    background: var(--accent-subtle);
  }

  .compose-action-btn.svelte-1uha8ag:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .hidden-file-input.svelte-1uha8ag {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }

  /* Feed Image Preview */
  .feed-image-preview.svelte-1uha8ag {
    position: relative;
    display: inline-block;
    margin-left: 60px;
    margin-bottom: 12px;
    max-width: calc(100% - 60px);
    border-radius: 12px;
    overflow: hidden;
  }

  .feed-image-preview.svelte-1uha8ag img:where(.svelte-1uha8ag) {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
  }

  .feed-image-info.svelte-1uha8ag {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .feed-image-size.svelte-1uha8ag {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .feed-remove-image.svelte-1uha8ag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
  }

  .feed-remove-image.svelte-1uha8ag:hover {
    background: rgb(220, 53, 69);
  }

  .feed-remove-image.svelte-1uha8ag svg:where(.svelte-1uha8ag) {
    width: 14px;
    height: 14px;
    color: white;
  }

  .feed-compressing.svelte-1uha8ag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 60px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
  }

  /* No Group Selected Card */
  .no-group-card.svelte-1uha8ag {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .no-group-icon.svelte-1uha8ag {
    width: 64px;
    height: 64px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .no-group-icon.svelte-1uha8ag svg:where(.svelte-1uha8ag) {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
  }

  .no-group-title.svelte-1uha8ag {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
  }

  .no-group-text.svelte-1uha8ag {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 280px;
  }

  .no-group-actions.svelte-1uha8ag {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  /* Feed Tabs Navigation */
  .feed-tabs.svelte-1uha8ag {
    display: flex;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-body);
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .feed-tab.svelte-1uha8ag {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition:
      color 0.15s ease,
      background-color 0.15s ease;
  }

  .feed-tab.svelte-1uha8ag:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .feed-tab.active.svelte-1uha8ag {
    font-weight: 700;
    color: var(--text-primary);
  }

  .feed-tab-indicator.svelte-1uha8ag {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
  }

  /* Feed Section */
  .feed-section.svelte-1uha8ag {
    padding: 0 16px;
    padding-top: 16px;
  }

  /* Posting Section (Legacy - keeping for compatibility) */
  /* (unused) .posting-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }*/

  /* (unused) .posting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }*/

  /* (unused) .posting-header h2 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }*/

  /* (unused) .posting-input {
    position: relative;
  }*/

  /* (unused) .post-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }*/

  /* (unused) .post-textarea-clean {
    width: 100%;
    min-height: 80px;
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.5;
    resize: none;
    outline: none;
  }*/

  /* (unused) .post-textarea-clean::placeholder {
    color: var(--text-muted);
  }*/

  /* (unused) :global(:root:not(.dark)) .post-textarea {
    background: var(--bg-secondary);
    border-color: var(--border-default);
  }*/

  /* (unused) .post-textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
      0 0 0 3px rgba(139, 92, 246, 0.1),
      0 0 20px rgba(139, 92, 246, 0.05);
  }*/

  /* (unused) :global(:root:not(.dark)) .post-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-subtle);
  }*/

  /* (unused) .post-textarea::placeholder {
    color: var(--text-muted);
  }*/

  /* (unused) .char-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
  }*/

  /* (unused) .char-count.near-limit {
    color: var(--warning);
  }*/

  /* (unused) .post-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--error-subtle);
    border-radius: 0.5rem;
    color: var(--error);
    font-size: 0.875rem;
  }*/

  /* (unused) .post-error svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
  }*/

  /* (unused) .posting-actions {
    display: flex;
    justify-content: flex-end;
  }*/

  /* No Group Prompt */
  /* (unused) .no-group-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }*/

  /* (unused) .prompt-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }*/

  /* (unused) .prompt-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-primary);
  }*/

  /* (unused) .no-group-prompt h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
  }*/

  /* (unused) .no-group-prompt p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 24rem;
  }*/

  /* Result Message */
  /* (unused) .result-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }*/

  /* (unused) .result-message svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
  }*/

  /* (unused) .result-message.success {
    color: var(--success);
  }*/

  /* (unused) .result-message.success svg {
    color: var(--success);
  }*/

  /* (unused) .result-message.error {
    color: var(--error);
  }*/

  /* (unused) .result-message.error svg {
    color: var(--error);
  }*/

  /* (unused) .result-message strong {
    display: block;
    color: var(--text-primary);
  }*/

  /* (unused) .result-message p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    opacity: 0.8;
  }*/

  /* Feed Section */
  .feed-section.svelte-1uha8ag {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  :root:not(.dark) .feed-section.svelte-1uha8ag {
    border-top-color: var(--border-subtle);
  }

  /* (unused) .feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }*/

  /* (unused) .feed-header h2 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
  }*/

  /* (unused) .filter-toggle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    transition:
      color 0.2s,
      background 0.2s;
  }*/

  /* (unused) .filter-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
  }*/

  /* (unused) :global(:root:not(.dark)) .filter-toggle:hover {
    background: var(--bg-hover);
  }*/

  /* Mobile */
  @media (max-width: 640px) {
    .compose-section.svelte-1uha8ag {
      padding: 0 12px;
    }
  }
