/**
 * Zap Games - Instant Win Games
 */
.zap-game-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.zap-game-canvas {
  position: relative;
  width: 100%;
  max-height: 90vh;
  margin-bottom: 1rem;
  border-radius: 6px;
  aspect-ratio: 9/16;
}

.zap-game-loading:not([hidden]),
.zap-game-error:not([hidden]) {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 6px;
}

.zap-game-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: zap-game-spin 0.8s linear infinite;
}

@keyframes zap-game-spin {
  to {
    transform: rotate(360deg);
  }
}

.zap-game-ticket-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  list-style: none;
  gap: 0.25rem;
}

/*# sourceMappingURL=zap-games.css.map */
