main {
  text-align: center;
  padding: 40px;
}
main h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 16px;
}
main p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 32px;
  color: var(--text-color);
}

.browse-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  background-color: var(--accent-color);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s;
}
.browse-btn:hover {
  transform: scale(1.05);
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--foreground-color);
  padding: 24px;
  border-radius: 12px;
  width: 180px;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
}
.card:hover {
  transform: scale(1.05);
}
.stat-number {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 30px;
}
.stat-label {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 12px;
}
.stat-updated {
  font-size: 14px;
  opacity: 0.8;
}
.stat-date {
  color: var(--accent-color);
  font-weight: bold;
  margin-top: 4px;
}
