.card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* ==============================
   DISCOVERY CARDS (HOME)
============================== */
.home-discovery-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #ff69b4;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ff00ff;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 25px;
}

.discovery-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  color: white;
  text-decoration: none;
  border: 1px solid #ff00ff;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.discovery-card:hover {
  transform: translateY(4px);
  box-shadow: 0 0 20px #ff00ff, 0 0 35px #ff69b4;
}

.discovery-card h3 {
  color: #ff69b4;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.discovery-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.achievement-card {
  background: var(--color-surface);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(255,105,180,0.25);
  border: 1px solid rgba(255,105,180,0.3);
}

.achievement-card:hover {
  transform: translateY(3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255,105,180,0.6);
  border-color: var(--color-accent);
}

.achievement-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--color-accent);
}

.achievement-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 6px;
  text-shadow: 0 0 8px rgba(255,105,180,0.6);
}

.achievement-desc {
  color: var(--color-text-dim);
  font-size: 0.95rem;
  line-height: 1.3rem;
}
