body { justify-content: center; }
.container { max-width: 480px; }

.cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.3s; }
.card:nth-child(3) { animation-delay: 0.4s; }

.card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--accent-dim);
  border: 1px solid rgba(49, 183, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.card-content { flex: 1; min-width: 0; }

.card-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.card-value {
  font-size: 0.85rem;
  color: var(--heading);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-arrow {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.card:hover .card-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

@media (max-width: 400px) {
  .card-value { font-size: 0.78rem; }
}
