* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
}

body {
  font-family: "Roboto", serif;

}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  filter: blur(4px);
}

.overlay-window {
  z-index: 2;
  width: 430px;
  height: auto;
  background-image: url("../images/bg-slot.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 7px 1px #6a8dfc;
  border-radius: 20px;

}

.window-color {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}

.logo {
  margin: 0 auto;
  display: block;
  width: 300px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.window-image {
  max-width: 290px;
  border-radius: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-top: 20px;
  box-shadow: 0px 0px 7px 1px #6a8dfc;
  
}

.window-image-main {
  position: absolute;
  width: 230px;
  height: auto;
  position: absolute;
  left: -8px;
  top: 50px;

}

.window-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.window-bonus {
  font-size: 33px;
  line-height: 38px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 0 5px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}


.window-bonus span {
  font-size: 38px;
  font-weight: bold;
  color: #e0ea1e;
}

.button-bonus {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #4b6cc6, #273c80);
  color: #ffffff;
  outline: none;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;;
  padding: 10px;
  width: 80%;
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  font-family: "Roboto", serif;
  display: inline-block;
  transition: .2s all ease-in-out;
} 

/* Ефект натискання */
.button-bonus:active {
  transform: translateY(4px);
}

.button-bonus:hover {
  transform: scale(1.06);
}

@media (max-width: 500px) {
  .background-image {
    background-image: url("../images/bg-mobile.jpg");
  }
  
  .window-image {
    max-width: 270px;
  }
  .window-image-main {
    width: 210px;
  }
  .window-bonus {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .window-bonus span {
    font-size: 35px;
  }

  .button-bonus {
    font-size: 27px;
    width: 85%;
  }

  .overlay-window {
    width: 90%;
  }

}