/* home.css — écran d'accueil */

#screen-home.active {
  align-items: center;
  justify-content: center;
}

.home-inner {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 640px;
}

.home-columns {
  font-size: 4.2rem;
  filter: drop-shadow(0 6px 18px rgba(232, 194, 87, 0.35));
  animation: columns-glow 3.5s ease-in-out infinite;
}

@keyframes columns-glow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.game-title {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0.8rem 0 0.6rem;
  text-shadow: 0 4px 24px rgba(232, 194, 87, 0.3);
}

.tagline {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
}

.home-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.home-footer {
  margin-top: 3rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  opacity: 0.7;
}

.hub-link { color: var(--gold); text-decoration: none; }
.hub-link:hover { text-decoration: underline; }
