/*
File Name: 		custom.css
Description:  You can add your custom CSS here and it will overwrite template styles
*/
/*# sourceMappingURL=maps/custom.css.map */

/* Masquer le bloc de scores en haut du site */
.menu-panel__top-bar {
    display: none !important;



.pong-loader,
.df-icon--preloader-arcade {
  display: none !important;
}

.preloader-overlay {
  background: #000 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: opacity 0.5s ease !important;
  pointer-events: all !important;
}

.preloader-overlay.loaded {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}


button:focus {
  outline: 2px solid #00ff; /* remplacez #38f par la couleur que vous voulez */
}

@media (hover: hover) and (pointer: fine) {
  #df-custom-cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
  }
  #df-custom-cursor::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #a3ff12;
    opacity: 1;
  }
  #df-custom-cursor::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #a3ff12;
    opacity: 0.5;
  }
}



.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* ratio 16:9 */
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}