
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body{
    background-image: url(./banner/bod.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-attachment: fixed; }


.logo-website{
  text-align: center;
  padding-bottom: 5px;
}

.carousel-container-desktop, .carousel-container-mobile{
    margin: auto;
    border: 5px solid gold;
    background-color: black;
    border-radius: 8px;
    position: relative;
    margin: auto;
    box-shadow: 0px 0px 10px gold;

}
.carousel-container-desktop{
    width: 80vw;
    height: 30vh;
    display: block;
}

.carousel-container-mobile{
    width: 70vw;
    height: 25vh;
    display: none;
}


.slide{
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
    display: hidden;
}

.slide img{
    width: 100vw;
    height: 100vh;
}

.slide.active{
    opacity: 1;
}

.slidem{
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    border-radius: 6.5px;
    transition: opacity 0.5s ease-in-out;
}

.slidem img{
    width: 100vw;
    height: 100vh;
}

.slidem.active{
    opacity: 1;
}


.provider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
}

.provider-container {
  width: 67.5vw;
  height: 120px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  border-radius: 10px;
  white-space: nowrap;
  scrollbar-width: none;
}

.provider-container::-webkit-scrollbar {
  display: none;
}

.provider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.provider img {
  height: 79px;
  width: 165px;
  background-image: linear-gradient(180deg, rgb(255, 196, 0) 0%,rgb(255, 238, 0) 10%,rgb(255, 196, 0) 95%);
  border-radius: 15px;
  box-shadow: 0 0 3px black;
  border: 1px solid rgba(0, 0, 0, 0.568);
  padding: 5px 5px 0 5px;
  transition: background-color 0.3s;
}

.logo-wrapper {
  padding: 5px 5px 0 5px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.logo-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  animation: blink 0.5s infinite ease-in-out;
  border-radius: 15px;
}


.provider-wrapperm {
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-containerm {
  width: 100vw;
  height: 85px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  border-radius: 10px;
  white-space: nowrap;
  scrollbar-width: none;
  display: none;
}

.provider-containerm::-webkit-scrollbar {
  display: none;
}

.providerm {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
}

.providerm img {
  height: 50px;
  width: 100px;
  background-image: linear-gradient(180deg, rgb(255, 153, 0),rgb(255, 187, 0),rgb(255, 251, 0) );
  border-radius: 5px;
  box-shadow: 0 0 3px black;
  border: 1px solid rgba(0, 0, 0, 0.568);
  padding: 5px 5px 5px 5px;
  transition: background-color 0.3s;
}

.logo-wrapperm {
  padding: 5px 5px 0 5px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.logo-wrapperm:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  animation: blink 0.5s infinite ease-in-out;
  border-radius: 5px;
}

.prev,
.next {
  background-color: rgba(231, 197, 4, 0.9);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.prev:hover,
.next:hover {
  background-color: gold;
  color: black;
}

.prevm,
.nextm {
  background-color: rgba(231, 197, 4, 0.9);
  color: white;
  border: none;
  font-size: 20px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
  display: none;
}

.prevm:hover,
.nextm:hover {
  background-color: gold;
  color: black;
}
.date-menu{
  text-align: center;
  border-radius: 30px;
  font-size: 1.4vh;
  margin-right: 10px;
  text-align: right;
  justify-items: end;
  padding-bottom: 0;
}


#datetime{
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  background-color: black;
  padding: 5px;
  border-radius: 30px;
}

.game-container{
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 5px;
  row-gap: 10px;
  justify-content: center; 
}

.game-card-container{
  display: flex;
  flex-direction: row;
  color: black;
  padding: 10px;
  border-radius: 8px;
  width: 300px;
  height: 180px;
  box-shadow: rgb(0, 0, 0) 1px 1px 15px ;
  background-image: linear-gradient(180deg, rgb(255, 196, 0) 0%,rgb(255, 238, 0) 10%,rgb(255, 196, 0) 95%);
}


.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  height:60px;
  width: 167px;
  font-family:fantasy;
}



.fire-wrapper, .dont-wrapper , .trending-wrapper{
  height: 54px;
  width: 170px;
  text-align: center;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 1px 1px 5px black, inset -1px -1px 5px rgb(0, 0, 0);
}




.rtplow, .trending, .textjackpot{
  width: 140px;
  height: 35px;
  margin-top: 8px;
}



.progressbar-container {
  position: relative;
  width: 90%;
  background-color: #eee;
  box-shadow: black 0 0 2px;
  overflow: hidden;
  z-index: 1;
  height: 20px;
  margin: auto;
  border-radius: 30px;
  color: black;
  text-align:center;

}

.progressbar {
  height: 100%;
  width: 50%; 
  position: relative;
  z-index: 2;
  transition: width 0.3s ease;
  background: linear-gradient(
  60deg,
  gold 0%,
  #ffffff 10%,
  gold 20%,
  #ffffff 30%,
  gold 40%,
  #ffffff 50%,
  gold 60%,
  #ffffff 70%,
  gold 80%,
  #ffffff 90%,
  gold 100%
);
  background-size: 300% 100%;
  animation: glow 15s linear infinite;
}

.card-image{
  position: relataive;
  width: 230px;
  height: 119px;
  margin: 67px auto auto auto;
  display: flex;
  align-items:center ;
  justify-content: center;
  box-shadow: inset 1px 1px 5px rgb(0, 0, 0),inset -1px -1px 5px rgb(0, 0, 0);
  background-color: #ffffff;
  border-radius: 9px;
}

.layer{
  background-image: linear-gradient(130deg, rgb(97, 72, 2),rgb(78, 78, 78),rgb(97, 72, 2));
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 165px;
  height: 117px;
   border-radius: 9px;
}

.buttonmain{
  display:block;
  position: absolute;
  opacity: 0;
  width: 150px;
  height: 100px;
}

.game-card-container:hover .buttonmain{
  opacity: 1;
}

.game-card-container:hover .layer{
  opacity: 0.8;
}

.game-card-container:hover .image-wrapper img {
  transform: scale(1.1, 1.16);
  border-radius: 7px;
}



.main {
  margin-top: 9px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #3d3427;
  background-image: linear-gradient(45deg, #302c2c 0%, #272727  51%, #695f5f  100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
   text-decoration: none;
   width: 100px;
   font-family: sans-serif;
   color: gold;
}

.main:hover {
  background-position: right center;
}

.main:active {
  transform: scale(0.95);
}

.demo{
  margin-top: 7px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #ffbd2f 0%, #ff9500  51%, #ffb62f  100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  text-decoration: none;
  width: 100px;
  font-family: sans-serif;
}

.demo:hover {
  background-position: right center;
}

.demo:active {
  transform: scale(0.95);
}

.mobilebtn{
  display: none;
}

.pola-slot{
  display: block;
  font-weight: bold;
  width: 170px;
  height: 95%;
  margin: auto 0px auto 10px;
  background-color: rgb(255, 255, 255);
  color: black;
  box-shadow: inset 1px 1px 5px black,inset -1px -1px 5px black;
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-radius: 5px;
}

.provider-logo{
  width: 23px;
  height: 23px;
}

.top10{
  width: 30px;
  height: 30px;
  position: absolute;
  margin-left: -2px;
}

.polaheader{
  font-weight: bolder;
  text-align: center;
  font-size: 13px;
}

.game-card-container hr{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.pola-container{
  height: 50px;
}

.pola{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: right;
    margin-right: 6px;

}

.rtpheader{
  text-align: center;
  font-weight: bolder;
  padding-top: 15px;
  padding-bottom: 5px;
  font-size: 10px;
}

.rtp-value{
   position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  color: black;
  font-weight: bold;
  margin-top: 2.5px;
  font-size: 13px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  z-index: 10;
}

.image-wrapper img {
  display: block;
  width: 150px;
  height: 100px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease,transform 0.5s ease;
}


.rotate {
  animation: spin 1s linear infinite;
  transform-origin: center;
}



@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@keyframes blink {
  0%   { background-color: rgba(199, 155, 12, 0.9); }
  50%  { background-color: rgba(255, 217, 0, 0.9); }
  100% { background-color: rgba(236, 181, 1,0.9); }
}

@keyframes glow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -300% 0%;
  }
}

@media screen and (max-width: 1100px) {
.game-container{
  grid-template-columns: repeat(2, auto);
  }
}



@media screen and (max-width: 800px) {

  .card-header{
  position: relative;
  }
  .carousel-container-desktop{
    display: none;
  }
  .carousel-container-mobile{
    display: block;
  }


  .logo-website{
    width: auto;
    margin: auto;
  }

  .logo-website img{
    max-width: 150px;
  }

.provider-container{
  display: none;
}

.provider-containerm{
  display: block;
}

.date-menu{
  font-size: 1.7vh;
  margin-right: 0;
  margin-top: 0;
}

.layer, .buttonmain{
  display: none;
}

.game-card-container{
  flex-direction: column;
  border-radius: 8px;
  width: 160px;
  padding-bottom: 10px;
  margin: 0 auto;
  background-image: linear-gradient(180deg, rgb(255, 153, 0) 0%,rgb(255, 217, 0) 40%,rgb(255, 234, 47) 95%);
  height: 500px;}

.prevm,
.nextm {
  display: block;}


.prev,
.next {
  display: none;}


  .card-header {
    width: 90%;
    margin: auto auto 10px auto;
  }

  .textjackpot{
  width: 130px;
}

.rtplow{
  width: 130px;
}


  .pola-slot{
  display: block;
  width: 160px;
  padding-bottom: 10px;
  margin: auto;
  height: 180px;
  border-radius: 8px;
}


  .pola-container{
  height: 75px;
}

  .pola{
  text-align: right;
  font-size: 12px;
  width: 120px;
  margin-left:15px;
  margin-right:0px;
  }

  .top10{
  width: 40px;
  height: 40px;
  position: absolute;
  margin-left: -3px;

  }

  .card-image{
  width: 160px;
  height:160px;
  margin: auto;
  border-radius: 8px;
}


.image-wrapper img {
  width: 140px ;
  height: 140px;

}

.game-container{
  grid-template-columns: repeat(3, auto);
  column-gap: 10px;
}


.rtpheader{
  font-size: 12px;
  padding-top: 2px ;
}
  
.rtplow, .trending, .textjackpot{
  width: 120px;
  height: 35px;
  margin-top: 8px;
}

.progressbar-container{
  border-radius: 0px;
}

.game-card-container:hover .image-wrapper img {
  transform: scale(1.1, 1.1);
  border-radius: 6px;
}

.mobilebtn{
  display:flex;
  width: 179px;
  margin-left: -9.5px;
}

.demo, .main{
  width: 75px;
}

}

@media screen and (max-width: 600px){

  .game-container{
  grid-template-columns: repeat(2, auto);
}
}