.prize-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;

  padding: 28px 64px;

  background: linear-gradient(360deg, #1a2f85 0%, #1a3baf 50%, #1a2f85 100%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.01) 50%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    repeating-linear-gradient(
      to right,
      rgba(0, 0, 0, 0.03) 0px,
      rgba(0, 0, 0, 0.03) 3px,
      transparent 2px,
      transparent 12px
    );
  background-blend-mode: overlay;

  border-radius: 20px;
  overflow: hidden;
  position: relative;
  user-select: none;
}

.game-title-wrapper {
  min-height: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.game-title {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
}

.letter-options {
  min-height: 80px;
}

.game {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-container {
  display: grid;
  gap: 0; /* os grids continuam sem espaçamento interno */
}

.anim-squares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.anim-square {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 2px;
  animation: fillAndEmpty 8s ease-in-out infinite;
}

@keyframes fillAndEmpty {
  0% {
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.15);
  }
  20% {
    box-shadow: inset 0 0 0 20px rgba(255, 255, 255, 0.15);
  }
  40% {
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.15);
  }
  60% {
    box-shadow: inset 0 0 0 20px rgba(255, 255, 255, 0.15);
  }
  80% {
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.15);
  }
  100% {
    box-shadow: inset 0 0 0 20px rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 768px) {
  winners,
  banner-promo,
  rules,
  play {
    width: 100%;
  }

  .game-title {
    text-align: center;
  }
}
