/*
 * W9_AE_DIRECT_GAME_LAUNCH_V1
 *
 * Source runtime game card contains a full-card hover layer:
 *
 *   relative mb-3
 *     -> hover:opacity-100 ...
 *        bg-black bg-opacity-70 z-10
 *
 * On touch devices this creates the intermediate "1" state.
 *
 * Do not modify:
 * - game artwork
 * - frame
 * - provider badge
 * - favorite star
 * - parent game-card click owner
 */

/* Exact full-card hover/ratio/play layer */
div.relative.mb-3 >
div[class*="hover:opacity-100"][class*="absolute"][class*="w-full"][class*="h-full"][class*="bg-black"][class*="bg-opacity-70"][class*="z-10"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/*
 * Defensive mobile rule:
 * no hover/touch intermediate owner may capture first tap.
 */
@media (hover: none), (pointer: coarse) {
  div.relative.mb-3 >
  div[class*="hover:opacity-100"][class*="bg-opacity-70"] {
    display: none !important;
    pointer-events: none !important;
  }
}
