/* Multi-Platform Char Counter — tool-specific */
.page { padding: 40px 20px; max-width: 720px; margin: 0 auto; }
.page h1 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.page .subtitle { color: #888; margin-bottom: 20px; font-size: 14px; }

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.form-row textarea {
  background: #0d0d0d; border: 1px solid #2a2a2a; color: #fff;
  padding: 12px; border-radius: 6px; font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  resize: vertical; line-height: 1.5;
}

.stats { display: flex; gap: 18px; font-size: 12px; color: #888; margin-top: 6px; flex-wrap: wrap; }
.stats strong { color: #fff; font-family: 'SF Mono', monospace; }

.opt-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; display: block; margin-bottom: 14px; }

.platform-list { display: flex; flex-direction: column; gap: 8px; }
.platform-row {
  background: #0d0d0d; border: 1px solid #2a2a2a; border-radius: 8px;
  padding: 12px 14px; display: flex; align-items: center; gap: 12px;
}
.platform-row.over { border-color: rgba(255,68,68,0.4); background: rgba(255,68,68,0.04); }
.platform-row.fits { }
.platform-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 11px; font-family: 'SF Mono', monospace; }
.platform-info { flex: 1; min-width: 0; }
.platform-name { font-size: 13px; color: #fff; font-weight: 500; }
.platform-meta { font-size: 11px; color: #888; margin-top: 2px; }
.platform-bar { height: 4px; background: #1a1a1a; border-radius: 2px; overflow: hidden; margin-top: 6px; }
.platform-fill { height: 100%; background: #4caf50; transition: width 0.15s, background 0.15s; }
.platform-fill.warn { background: #ffa726; }
.platform-fill.over { background: #ff4444; }
.platform-status { font-size: 11px; font-family: 'SF Mono', monospace; min-width: 90px; text-align: right; }
.platform-status.ok { color: #4caf50; }
.platform-status.over { color: #ff4444; font-weight: 600; }
.platform-status.warn { color: #ffa726; }

@media (max-width: 600px) {
  .page { padding: 24px 12px; }
  .page h1 { font-size: 22px; }
}
