/**
 * Disable MaruPay game poster “shine” (animated white sweep on ::after).
 * Implemented in lazy Vite chunks; this sheet loads from index.php and wins via specificity + !important.
 */
#root [class*="_gameBox_"] [class*="_logoBox_"]::after,
#root [class*="_typeGameBox_"] [class*="_gameBox_"] [class*="_logoBox_"]::after,
#root [class*="_typeGameBox_"] [class*="_gameItemBox_"]::after,
#root [class*="_typeGameBox_"] [class*="_gameItemBox2_"] [class*="_box2Content_"]::after,
#root [class*="_typeGameBox_"] [class*="_box2Content_"]::after,
#root .game_img_box::after {
  display: none !important;
  content: none !important;
  animation: none !important;
  background: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* If a route still references this name, keep the sweep invisible */
@keyframes marupayGamePosterShine10s {
  0%,
  50%,
  100% {
    opacity: 0;
    transform: translateX(-140%) skewX(-12deg);
  }
}
