    /* Account View Styles */
    .account-section {
      margin-bottom: 24px;
    }
    .account-section-title {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-dim);
      margin-bottom: 12px;
    }
    .account-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
    }
    .account-row {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      gap: 12px;
    }
    .account-row:last-child {
      border-bottom: none;
    }
    .account-label {
      width: 140px;
      flex-shrink: 0;
      font-size: 13px;
      color: var(--text-dim);
    }
    .account-value {
      flex: 1;
      font-size: 14px;
    }
    .tier-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }
    .tier-badge.free {
      background: var(--surface-secondary);
      color: var(--text-dim);
    }
    .tier-badge.pro {
      background: linear-gradient(135deg, var(--accent), #f59e0b);
      color: #000;
    }
    .toggle {
      position: relative;
      width: 44px;
      height: 24px;
    }
    .toggle input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    .toggle-slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-secondary);
      border-radius: 24px;
      transition: 0.2s;
    }
    .toggle-slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background: white;
      border-radius: 50%;
      transition: 0.2s;
    }
    .toggle input:checked + .toggle-slider {
      background: var(--accent);
    }
    .toggle input:checked + .toggle-slider:before {
      transform: translateX(20px);
    }
    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      cursor: pointer;
    }
    .checkbox-label input {
      width: 16px;
      height: 16px;
      accent-color: var(--accent);
    }
    .usage-bar {
      width: 100px;
      height: 6px;
      background: var(--surface-secondary);
      border-radius: 3px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .usage-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 3px;
      transition: width 0.3s;
    }
    .usage-bar-fill.warning {
      background: var(--yellow);
    }
    .usage-bar-fill.danger {
      background: var(--red);
    }
    .billing-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
    }
    .billing-tab {
      flex: 1;
      padding: 12px;
      background: none;
      border: none;
      color: var(--text-dim);
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .billing-tab:hover {
      color: var(--text);
    }
    .billing-tab.active {
      color: var(--accent);
      border-bottom: 2px solid var(--accent);
      margin-bottom: -1px;
    }
    .billing-content {
      max-height: 300px;
      overflow-y: auto;
    }
    .billing-list {
      padding: 8px;
    }
    .billing-empty {
      padding: 24px;
      text-align: center;
      color: var(--text-dim);
      font-size: 13px;
    }
    .billing-item {
      display: flex;
      align-items: center;
      padding: 10px 12px;
      border-radius: 8px;
      gap: 12px;
      font-size: 13px;
    }
    .billing-item:hover {
      background: var(--surface-secondary);
    }
    .billing-item .time {
      width: 50px;
      color: var(--text-dim);
      font-size: 11px;
    }
    .billing-item .type {
      width: 70px;
      font-weight: 500;
    }
    .billing-item .desc {
      flex: 1;
    }
    .billing-item .amount {
      font-weight: 500;
    }
    .billing-item .status {
      width: 80px;
      text-align: right;
    }
    .billing-item .status.success {
      color: var(--green);
    }
    .billing-item .status.pending {
      color: var(--yellow);
    }

    .shortcuts-modal .modal {
      max-width: 550px;
    }

    .shortcuts-grid {
      display: grid;
      gap: 24px;
    }

    .shortcuts-section h4 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-dim);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }

    .shortcut-row {
      display: flex;
      align-items: center;
      padding: 6px 0;
    }

    .shortcut-keys {
      min-width: 80px;
    }

    .shortcut-keys kbd {
      display: inline-block;
      padding: 4px 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      font-family: monospace;
      font-size: 12px;
      margin-right: 4px;
    }

    .shortcut-desc {
      color: var(--text);
      font-size: 13px;
    }

    /* Sidebar Compact Watchlist Preview */
    .watchlist-compact {
      padding: 8px;
    }

    .watchlist-compact-item {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      border-radius: 4px;
      font-size: 12px;
      transition: all 0.1s;
    }
    .watchlist-compact-item:hover { background: rgba(255,255,255,0.05); }

    .watchlist-compact-item .username {
      font-family: monospace;
      color: var(--accent);
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .watchlist-view-more {
      padding: 8px 12px;
      text-align: center;
      font-size: 11px;
      color: var(--accent);
      cursor: pointer;
      border-top: 1px solid var(--border);
    }
    .watchlist-view-more:hover { background: rgba(255,255,255,0.05); }

    .account-legal {
      padding: 16px 0 60px;
      font-size: 12px;
      color: var(--text-dim);
    }
    .account-legal a {
      color: var(--text-dim);
      text-decoration: none;
    }
    .account-legal a:hover {
      color: var(--accent);
    }
    .account-legal span {
      margin: 0 6px;
      opacity: 0.5;
    }
