/* =============================================
   仮想通貨ポートフォリオ - スタイルシート
   ============================================= */

/* カスタムプロパティ（デザイントークン） */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #1f2a40;
  --bg-modal: #151d2e;
  --bg-input: #0d1321;

  --text-primary: #e8ecf1;
  --text-secondary: #8892a4;
  --text-muted: #4a5568;

  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.15);
  --accent-glow: rgba(0, 212, 255, 0.3);

  --green: #00e676;
  --green-dim: rgba(0, 230, 118, 0.12);
  --red: #ff5252;
  --red-dim: rgba(255, 82, 82, 0.12);

  --border: rgba(255, 255, 255, 0.06);
  --border-focus: rgba(0, 212, 255, 0.5);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* リセット＆ベース */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.app-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.app-subtitle {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  letter-spacing: 0;
}

/* アイコンボタン */
.btn-icon {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* サマリーセクション */
.summary-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 16px 0;
}

.summary-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02));
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.summary-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.summary-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-row {
  display: flex;
  gap: 12px;
}

.summary-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-sub-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-sub-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.summary-sub-value.positive {
  color: var(--green);
}

.summary-sub-value.negative {
  color: var(--red);
}

.last-updated-bar {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* アクションバー */
.action-bar {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  gap: 8px;
}

/* ボタン共通 */
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00b4d8, #00d4ff);
  color: #000;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.btn-danger {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(255, 82, 82, 0.2);
}

.btn-danger:hover {
  background: rgba(255, 82, 82, 0.2);
}

.btn-full {
  width: 100%;
}

.btn-file {
  cursor: pointer;
}

/* ポートフォリオ一覧 */
.portfolio-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 空状態 */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.empty-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* トークンカード */
.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: grab;
  transition: var(--transition);
  animation: cardFadeIn 0.3s ease forwards;
  opacity: 0;
}

.token-card:active {
  cursor: grabbing;
}

.token-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ドラッグ＆ドロップ状態 */
.token-card.dragging {
  opacity: 0.5;
  transform: scale(0.98);
  box-shadow: none;
  border-style: dashed;
}

.token-card.drag-over {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(2px);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.token-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.token-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.token-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  flex-shrink: 0;
  object-fit: cover;
}

.token-icon-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.token-info {
  min-width: 0;
}

.token-symbol {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.token-name {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.token-chain {
  font-size: 9px;
  padding: 1px 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.token-price-area {
  text-align: right;
  flex-shrink: 0;
}

.token-current-price {
  font-size: 15px;
  font-weight: 600;
}

.token-price-change {
  font-size: 11px;
  font-weight: 500;
}

.token-card-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.token-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.token-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.token-stat-value {
  font-size: 13px;
  font-weight: 600;
}

.pnl-positive {
  color: var(--green) !important;
}

.pnl-negative {
  color: var(--red) !important;
}

.price-loading {
  color: var(--text-muted);
  font-style: italic;
}

/* モーダル */
.modal-overlay {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-modal);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.modal-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

/* 検索 */
.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 40px 12px 40px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-spinner {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  display: none;
}

.search-spinner.active {
  display: block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* 検索結果 */
.search-results {
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: var(--radius-sm);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.search-result-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  flex-shrink: 0;
  object-fit: cover;
}

.search-result-icon-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-symbol {
  font-size: 14px;
  font-weight: 600;
}

.search-result-name {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  text-align: right;
  flex-shrink: 0;
}

.search-result-price {
  font-size: 13px;
  font-weight: 600;
}

.search-result-chain {
  font-size: 9px;
  padding: 1px 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.search-no-results {
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* 選択済みトークン表示 */
.selected-token {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.selected-token-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  flex-shrink: 0;
  object-fit: cover;
}

.selected-token-info {
  flex: 1;
}

.selected-token-symbol {
  font-size: 16px;
  font-weight: 700;
}

.selected-token-name {
  font-size: 12px;
  color: var(--text-secondary);
}

/* フォーム */
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* number入力のスピナーを非表示 */
.form-input[type="number"]::-webkit-outer-spin-button,
.form-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.form-actions .btn-primary,
.form-actions .btn-secondary,
.form-actions .btn-danger {
  flex: 1;
}

.form-step {
  transition: var(--transition);
}

/* インポート/エクスポート */
.ie-section {
  margin-bottom: 4px;
}

.ie-section h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ie-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.ie-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* トースト */
.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: calc(100% - 32px);
  max-width: 400px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease forwards;
  pointer-events: auto;
}

.toast.success {
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--green);
}

.toast.error {
  border-color: rgba(255, 82, 82, 0.3);
  color: var(--red);
}

.toast.info {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent);
}

.toast.fade-out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* 通貨切替トグル */
.currency-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.currency-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text-muted);
}

.currency-btn.active {
  background: linear-gradient(135deg, #00b4d8, #00d4ff);
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.25);
}

.currency-btn:not(.active):hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.rate-row {
  display: flex;
  gap: 8px;
}

.rate-row .form-input {
  flex: 1;
}

.rate-row .btn-secondary {
  flex-shrink: 0;
  white-space: nowrap;
}

.rate-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ユーティリティ */
.hidden {
  display: none !important;
}

/* スクロールバー */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* リフレッシュ中のスピナー */
.btn-refreshing svg {
  animation: spin 0.8s linear infinite;
}

/* レスポンシブ：PC対応 */
@media (min-width: 640px) {
  .modal {
    border-radius: var(--radius-xl);
    border-bottom: 1px solid var(--border);
    max-height: 80vh;
    margin-bottom: 20px;
  }

  .modal-overlay {
    align-items: center;
  }

  .modal-overlay.active .modal {
    transform: translateY(0);
  }

  .summary-value {
    font-size: 36px;
  }

  .token-name {
    max-width: 200px;
  }
}

/* 履歴モーダル */
.history-tabs {
  display: flex;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
}

.history-tab {
  flex: 1;
  padding: 8px 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.history-tab.active {
  background: var(--bg-card);
  color: var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.history-chart-container {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  position: relative;
}

.history-table-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.history-table th,
.history-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.history-table th {
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  position: sticky;
  top: 0;
  z-index: 10;
}

.history-table tbody tr:last-child td {
  border-bottom: none;
}

.history-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* スマホでのクリックイベント誤判定を防ぐ */
button svg,
a svg {
  pointer-events: none;
}

/* 使い方・注意事項セクション */
.usage-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.usage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.usage-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.usage-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.usage-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.usage-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.usage-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.notice-box {
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.notice-box p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.notice-box p+p {
  margin-top: 8px;
}

.notice-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ホーム画面追加ガイド */
.install-guide {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}

.install-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.install-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-item {
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.step-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.step-item p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}