/* ===== Highlights Section ===== */
.crypto-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.highlight-card {
  background: var(--bg-card, #1e2139);
  border: 1px solid var(--border-color, #2a2d36);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.highlight-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(6,182,212,0.3);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px; /* smaller title */
  margin-bottom: 10px;
  color: var(--accent-blue, #06b6d4);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.highlight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
  font-size: 12px; /* smaller list font */
}
.highlight-item:last-child { border-bottom: none; }
.highlight-item:hover { background: rgba(6,182,212,0.08); border-radius: 6px; }

/* Coin info */
.coin {
  display: flex;
  align-items: center;
  gap: 6px;
}
.coin img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.coin-info {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}
.coin-symbol {
  font-weight: 600;
  font-size: 12px;
}
.coin-name {
  color: var(--text-muted, #a0a6b3);
  font-size: 10px;
}

/* Price + tag */
.price {
  font-size: 12px;
  font-weight: 600;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--bg-secondary, #2a2d36);
  display: inline-block;
  margin-top: 1px;
  text-align: right;
}
.tag.up { color: var(--accent-green, #10b981); }
.tag.down { color: var(--accent-red, #ef4444); }

/* Follow button */
.follow-btn {
  font-size: 11px;
  border: 1px solid var(--border-color, #2a2d36);
  background: var(--bg-secondary, #2a2d36);
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.follow-btn:hover { background: var(--accent-blue, #06b6d4); }

/* Responsive */
@media (max-width: 1024px) {
  .crypto-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .crypto-highlights { grid-template-columns: 1fr; }
}
