/* ─── PLATFORMS ─── */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.platform-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s;
}
.platform-card:active { border-color: var(--accent); }
.platform-name { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.platform-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── SOCIAL LINKS ─── */
.social-list { display: flex; flex-direction: column; gap: 2px; }
.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s;
}
.social-item:active { border-color: var(--accent); }
.social-name { flex: 1; font-size: 13px; }
.social-arrow { color: var(--text3); font-size: 14px; }

/* ─── WALLETS ─── */
.wallet-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 8px;
}
.wallet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.wallet-network { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.wallet-token {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--accent);
}
.wallet-address { font-size: 11px; color: var(--text2); word-break: break-all; line-height: 1.5; cursor: pointer; }
.wallet-copy-hint { font-size: 9px; color: var(--text3); margin-top: 4px; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding: 0 0 8px; }

/* Vertical accent line */
.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 4%, var(--border) 96%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: start;
  margin-bottom: 0;
  position: relative;
}

/* Odd: card left, dot center, empty right */
.timeline-item:nth-child(odd) .tl-card  { grid-column: 1; }
.timeline-item:nth-child(odd) .tl-dot   { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-empty { grid-column: 3; }
/* Even: empty left, dot center, card right */
.timeline-item:nth-child(even) .tl-empty { grid-column: 1; }
.timeline-item:nth-child(even) .tl-dot   { grid-column: 2; }
.timeline-item:nth-child(even) .tl-card  { grid-column: 3; }

/* Dot — aligned to badge row top (~10px badge height / 2 + card padding) */
.tl-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(12px + 9px + 4px); /* card padding-top + badge height/2 */
  z-index: 1;
}
.tl-dot-inner {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  transition: background 0.2s;
}
.timeline-item:hover .tl-dot-inner { background: var(--accent); }

.tl-empty { display: block; }

/* Card */
.tl-card {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.tl-card:active { opacity: 0.7; }
.timeline-item:last-child .tl-card { border-bottom: none; }

/* Badge */
.tl-badge-row {
  margin-bottom: 4px;
}
.tl-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text3);
  font-family: 'Instrument Sans', sans-serif;
}
.tl-badge.streaming     { background: rgba(100,200,120,0.1); border-color: rgba(100,200,120,0.25); color: #6dc880; }
.tl-badge.press         { background: rgba(100,150,230,0.1); border-color: rgba(100,150,230,0.25); color: #7aabf0; }
.tl-badge.radio         { background: rgba(200,120,200,0.1); border-color: rgba(200,120,200,0.25); color: #d080d0; }
.tl-badge.merch         { background: var(--accent-dim);     border-color: rgba(200,169,110,0.25); color: var(--accent); }
.tl-badge.social_stats  { background: rgba(230,180,80,0.1);  border-color: rgba(230,180,80,0.25);  color: #e0b050; }
.tl-badge.social_support{ background: rgba(230,180,80,0.1);  border-color: rgba(230,180,80,0.25);  color: #e0b050; }
.tl-badge.release       { background: rgba(200,169,110,0.12); border-color: rgba(200,169,110,0.25); color: var(--accent2); }
.tl-badge.milestone     { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--text2); }

/* Title — Fraunces serif like FayaSearch/Community */
.tl-text {
  font-size: 13px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

/* Date */
.tl-date {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ─── MERCH ─── */
.merch-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.merch-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg4); }
.merch-img-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1208, #0d0a06);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: var(--text3);
}
.merch-badge-overlay {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--text2);
  border: 1px solid var(--border);
}
.merch-badge-overlay.sold-out { color: var(--red); border-color: rgba(192,90,74,0.3); }
.merch-info { padding: 14px; }
.merch-category { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text3); margin-bottom: 5px; }
.merch-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; margin-bottom: 3px; }
.merch-subtitle { font-size: 12px; color: var(--accent); margin-bottom: 8px; }
.merch-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.merch-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.merch-tag { font-size: 10px; padding: 3px 9px; border-radius: 20px; background: var(--bg4); border: 1px solid var(--border); color: var(--text2); }
.merch-footer { display: flex; align-items: center; justify-content: space-between; }
.merch-price { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--text); }
.merch-availability { font-size: 11px; color: var(--text3); margin-top: 2px; }
