/* ─── Landing Page ──────────────────────────────────────── */

body {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background radial glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(80, 200, 120, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── Center container ──────────────────────────────────── */
.landing-center {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.landing-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #6bbd6b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.landing-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.landing-desc {
  font-size: 1rem;
  color: #555;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
}

/* ─── Theme cards ───────────────────────────────────────── */
.theme-cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.theme-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  width: 200px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.theme-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}

.theme-card.work:hover {
  border-color: rgba(107, 189, 107, 0.5);
  box-shadow: 0 20px 60px rgba(107, 189, 107, 0.1);
}

.theme-card.sports:hover {
  border-color: rgba(0, 180, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 180, 255, 0.1);
}

.theme-card.art:hover {
  border-color: rgba(230, 126, 34, 0.5);
  box-shadow: 0 20px 60px rgba(230, 126, 34, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: #555;
  transition: color 0.3s;
}

.card-icon svg { width: 100%; height: 100%; }

.theme-card.work:hover  .card-icon { color: #6bbd6b; }
.theme-card.sports:hover .card-icon { color: #00b4ff; }
.theme-card.art:hover   .card-icon { color: #e67e22; }

.card-label { font-size: 1.1rem; font-weight: 600; }
.card-sub   { font-size: 0.75rem; color: #555; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
  .theme-cards { gap: 0.85rem; }
  .theme-card  { width: 160px; padding: 1.5rem 1.25rem; }
}
