/* Título arcoíris y marco de vista previa Columns — compartido landing + /play */

@keyframes rainbow-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.rainbow-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #ff5050,
    #ffdc3c,
    #50dc78,
    #508cff,
    #c084fc,
    #ff96c8,
    #ff5050
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-shift 5s linear infinite;
}

.splash-hero,
.landing-hero {
  display: grid;
  grid-template-columns: 1fr minmax(130px, 160px);
  gap: 1.5rem;
  align-items: center;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

.splash-hero .splash-copy,
.landing-hero .hero-copy {
  min-width: 0;
}

.game-preview {
  margin: 0;
  text-align: center;
}

.game-preview canvas {
  display: block;
  width: 100%;
  height: auto;
  background: #1a1a2e;
  border: 2px solid #64648a;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 0 24px rgba(80, 140, 255, 0.08);
  image-rendering: pixelated;
}

.preview-caption {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .splash-hero,
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .game-preview {
    order: -1;
    max-width: 150px;
    margin: 0 auto 0.5rem;
  }

  .splash-pitch,
  .pitch {
    text-align: left;
  }
}
