/* SNAKE */
.snake-main {
  position: relative; z-index: 1;
  max-width: 540px; margin: 0 auto;
  padding: 50px 24px 80px;
  text-align: center;
}
.snake-cabecalho { margin-bottom: 22px; }
.snake-titulo {
  font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.15;
  margin: 18px 0 8px; color: #fff;
}
.snake-titulo em {
  font-family: "Lora", serif; font-style: italic; font-weight: 500;
  background: linear-gradient(120deg, #34d399, #10b981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.snake-lead { color: #aea7c0; font-size: 0.9rem; margin: 0; }
.snake-info {
  display: flex; justify-content: center; gap: 18px; align-items: end;
  margin-bottom: 18px; flex-wrap: wrap;
}
.snake-stat { text-align: center; }
.snake-stat-rotulo {
  display: block; font-size: 0.7rem; color: #aea7c0;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.snake-stat-valor {
  display: block; font-family: "Poppins", sans-serif;
  font-weight: 800; font-size: 1.3rem; color: #fff;
}
#snake-vel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 6px 8px; border-radius: 6px;
  font-family: "Poppins", sans-serif; font-weight: 600;
  cursor: pointer;
}
#snake-canvas {
  display: block; margin: 0 auto;
  width: min(420px, 92vw); height: min(420px, 92vw);
  background: #0c1d4a;
  border: 3px solid #1e3a8a; border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  outline: none;
  touch-action: none;
}
.snake-status {
  margin: 16px 0;
  font-family: "Poppins", sans-serif; font-weight: 700;
  color: #cbc4d9; min-height: 1.5em;
}
.snake-status.fim { color: #f87171; font-size: 1.1rem; }
