    /* --- Input Section --- */
    .roster-section {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .roster-input-wrap {
      flex: 1;
      min-width: 240px;
    }
    .roster-input-wrap label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-text-muted);
      margin-bottom: 8px;
    }
    .roster-textarea {
      width: 100%;
      min-height: 180px;
      padding: 12px 14px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--color-text);
      background: var(--color-surface);
      outline: none;
      resize: vertical;
      line-height: 1.7;
    }
    .roster-textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
    .roster-textarea::placeholder { color: var(--color-text-muted); }

    .roster-sidebar {
      width: 220px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .roster-sidebar label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-text-muted);
      margin-bottom: 0;
    }
    .roster-sidebar select {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--color-text);
      background: var(--color-surface);
      cursor: pointer;
      outline: none;
    }
    .roster-sidebar select:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
    .roster-name-input {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--color-text);
      background: var(--color-surface);
      outline: none;
    }
    .roster-name-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
    .roster-name-input::placeholder { color: var(--color-text-muted); }

    /* --- Stats Bar --- */
    .picker-stats {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .picker-stat {
      padding: 12px 20px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      flex: 1;
      min-width: 120px;
      text-align: center;
    }
    .picker-stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-text-muted);
      display: block;
      margin-bottom: 4px;
    }
    .picker-stat-value {
      font-family: var(--font-mono);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text);
    }

    /* --- Picker Controls --- */
    .picker-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
      align-items: center;
    }
    .allow-repeats-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text-secondary);
      cursor: pointer;
      margin-left: auto;
    }
    .allow-repeats-label input { cursor: pointer; width: 16px; height: 16px; accent-color: var(--color-primary); }

    /* --- Spinner Display --- */
    .spinner-area {
      position: relative;
      overflow: hidden;
      border: 2px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: var(--color-bg);
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    .spinner-area.spinning {
      border-color: var(--color-primary-subtle);
    }
    .spinner-area.picked {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
    }

    .spinner-slot {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-text);
      text-align: center;
      padding: 32px;
      line-height: 1.3;
      transition: transform 0.2s ease;
    }
    .spinner-slot.celebrating {
      animation: celebrate 0.5s ease;
      color: var(--color-primary);
      font-size: 2.4rem;
    }
    .spinner-placeholder {
      font-size: 1.1rem;
      color: var(--color-text-muted);
      text-align: center;
      padding: 32px;
    }

    @keyframes celebrate {
      0% { transform: scale(0.5); opacity: 0; }
      50% { transform: scale(1.15); }
      100% { transform: scale(1); opacity: 1; }
    }
    @keyframes slotSpin {
      0% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(-20px); opacity: 0.4; }
      100% { transform: translateY(0); opacity: 1; }
    }
    .spinner-slot.cycling {
      animation: slotSpin 0.1s ease-in-out;
    }

    /* --- Already Picked --- */
    .picked-section {
      margin-bottom: 28px;
    }
    .picked-section h3 {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .picked-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .picked-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text);
    }
    .picked-tag.latest {
      background: var(--color-primary-light);
      border-color: var(--color-primary-subtle);
      color: var(--color-primary);
      font-weight: 600;
    }

    /* --- Team Generator --- */
    .team-section {
      padding: 20px 24px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      margin-bottom: 28px;
    }
    .team-section h3 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--color-text);
    }
    .team-desc {
      font-size: 0.82rem;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }
    .team-controls {
      display: flex;
      gap: 12px;
      align-items: flex-end;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .team-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .team-field label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-text-muted);
    }
    .team-field input {
      width: 120px;
      padding: 9px 12px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      font-family: var(--font-mono);
      font-size: 0.88rem;
      color: var(--color-text);
      background: var(--color-surface);
      outline: none;
      text-align: center;
    }
    .team-field input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }

    .teams-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 14px;
    }
    .team-card {
      padding: 16px 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      background: var(--color-surface);
    }
    .team-card-title {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-primary);
      margin-bottom: 10px;
    }
    .team-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .team-card li {
      padding: 4px 0;
      font-size: 0.9rem;
      color: var(--color-text);
      border-bottom: 1px solid var(--color-border-light);
    }
    .team-card li:last-child { border-bottom: none; }

    /* --- Toast --- */
    .toast-msg {
      position: fixed;
      bottom: 24px;
      right: 24px;
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-size: 0.85rem;
      font-weight: 600;
      color: white;
      background: var(--color-text);
      box-shadow: var(--shadow-lg);
      z-index: 999;
      opacity: 0;
      transform: translateY(12px);
      transition: all 250ms ease;
      pointer-events: none;
    }
    .toast-msg.show { opacity: 1; transform: translateY(0); }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .roster-section { flex-direction: column; }
      .roster-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
      .roster-sidebar select,
      .roster-sidebar .btn,
      .roster-name-input { flex: 1; min-width: 140px; }
      .picker-stats { flex-direction: row; }
      .picker-stat { min-width: 80px; padding: 10px 14px; }
      .picker-stat-value { font-size: 1.2rem; }
      .spinner-slot { font-size: 1.4rem; }
      .spinner-slot.celebrating { font-size: 1.8rem; }
      .teams-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .picker-actions { flex-direction: column; }
      .picker-actions .btn { width: 100%; }
      .allow-repeats-label { margin-left: 0; }
      .team-controls { flex-direction: column; }
      .team-field input { width: 100%; }
      .teams-grid { grid-template-columns: 1fr; }
    }
