/* Instagram Caption Counter — styles */
.page { max-width: 800px; margin: 32px auto; padding: 0 20px; }
.page h1 { font-size: 36px; color: #fff; margin-bottom: 8px; letter-spacing: -0.5px; }
.page .subtitle { color: #888; font-size: 15px; margin-bottom: 24px; }
.page label {
  display: block; font-size: 12px; color: #aaa; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
#text-in {
  width: 100%; min-height: 180px;
  background: #141414; border: 1px solid #262626;
  color: #e1e1e1; font-size: 15px; padding: 16px;
  border-radius: 10px; font-family: inherit;
  resize: vertical; line-height: 1.55; outline: none;
}
#text-in:focus { border-color: #ff4444; }

.ig-meter {
  margin-top: 14px; padding: 14px 18px;
  background: #141414; border: 1px solid #262626;
  border-radius: 10px;
  display: flex; align-items: center; gap: 18px;
}
.ig-bar-wrap {
  flex: 1; height: 6px; background: #222; border-radius: 999px;
  overflow: hidden;
}
.ig-bar {
  height: 100%; width: 0; background: #e1306c;
  transition: width 0.15s, background 0.15s;
  border-radius: 999px;
}
.ig-bar.warn { background: #ffce3a; }
.ig-bar.over { background: #ff4444; }
.ig-stats {
  font-size: 14px; color: #bbb;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ig-stats .ig-sep { margin: 0 8px; color: #444; }
.ig-stats #ig-count { font-weight: 600; color: #fff; }
.ig-meter.over #ig-count { color: #ff4444; }
.ig-stats #ig-tags.over { color: #ff4444; font-weight: 600; }

.ig-preview {
  margin-top: 24px; padding: 18px 22px;
  background: #0f0f0f; border: 1px solid #1f1f1f;
  border-radius: 12px;
}
.ig-preview-head {
  font-size: 11px; color: #888; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ig-preview-body {
  color: #e1e1e1; font-size: 15px; line-height: 1.55;
  white-space: pre-wrap; word-break: break-word;
}
.ig-preview-body.empty { color: #555; }
.ig-preview-body .cutoff {
  color: #e1306c; font-weight: 500;
}
.ig-preview-meta {
  margin-top: 12px; font-size: 12px; color: #666;
  font-variant-numeric: tabular-nums;
}

.ig-hashtags {
  margin-top: 20px; padding: 18px 22px;
  background: #0f0f0f; border: 1px solid #1f1f1f;
  border-radius: 12px;
}
.ig-hashtags-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.ig-hashtags-head h2 {
  font-size: 12px; color: #aaa; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.copy-btn {
  padding: 6px 14px; background: #1f1f1f; border: 1px solid #333;
  color: #ccc; font-size: 13px; font-weight: 500;
  border-radius: 6px; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.copy-btn:hover { background: #2a2a2a; border-color: #444; color: #fff; }
.copy-btn.copied { border-color: #4ade80; color: #4ade80; }
.ig-hashtags-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ig-hashtag {
  display: inline-block; padding: 5px 12px;
  background: #141414; border: 1px solid #262626;
  color: #e1306c; font-size: 13px; font-weight: 500;
  border-radius: 999px;
  font-family: 'SF Mono', Monaco, monospace;
}

@media (max-width: 600px) {
  .page h1 { font-size: 28px; }
  .ig-meter { flex-direction: column; align-items: stretch; gap: 14px; }
  .ig-stats { text-align: center; }
}
