@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.container h1 {
  text-align: center;
  font-size: 50px;
}
.gradient {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #ff6f00, #ff009d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.color {
  font-size: 2rem;
  font-weight: 600;
  color: #ff009d;
  text-shadow: 0 0 3px #fff, 0 0 10px rgba(255, 0, 157, 0.5);
}

.bonus-highlight, .bonus-highlight-mob {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(to right,#ff009d, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 0, 204, 0.8),
      0 0 20px rgba(51, 51, 255, 0.8);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 0, 204, 1), 0 0 30px rgba(51, 51, 255, 1);
  }
}

.container img {
  max-width: 100px;
  width: 100%;
  border-radius: 10px;
  margin: 10px;
}
.hero {
  background-image: url("img/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh; /* Висота 100% вікна браузера */
  width: 100%;
  z-index: 1;
}

.corner-ball {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
  filter: drop-shadow(0 0 30px #ff4d9d);
}

.top-left {
  top: -60px;
  left: -60px;
  width: 200px;
  transform: rotate(90deg);
}

.bottom-left {
  bottom: -150px;
  left: -5px;
  width: 300px;
  transform: rotate(280deg);
}

.bottom-right {
  bottom: -200px;
  right: -200px;
  width: 460px;
  transform: rotate(210deg);
}
.bottom-mob {
  display: none;
}
.plinko-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
a {
  text-decoration: none;
  color: transparent;
}
.color {
  color: #fff !important;
}
.button {
  font-size: 35px;
  margin-top: 20px;
  min-width: 400px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ff009d, #ff6f00);
  padding: 15px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #fff;
}
.prize.violet {
  background: linear-gradient(to bottom, #7000c6, #d900ff);
}
.prize.blue {
  background: linear-gradient(to bottom, #383bff, #0003b7);
}
.prize.light-blue {
  background: linear-gradient(to bottom, #00c4de, #72efff);
}
.prize.red {
  background: linear-gradient(to bottom, #ff4b4b, #ff2600);
}
.prize.green {
  background: linear-gradient(to bottom, #00ff2f, #62ff7f);
}
.plinko-balls {
  position: relative;
}

.row {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 32px;
}

.ball {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.ball.gray {
  background-color: #ccc;
}

.ball.pink {
  background-color: #ff4d9d;
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 2;
  border: 2px solid white;
  box-shadow: 0 0 8px #ff4d9d;
}

.plinko-prizes {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.prize {
  color: #fff;
  font-weight: bold;
  padding: 5px;
  border-radius: 3px;
  width: 32px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

@media (max-width: 700px) {
  .container h1 {
    font-size: 30px;
  }
  .container img {
    max-width: 60px;
    width: 100%;
  }

  .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .button {
    min-width: 300px;
  }
  .row {
    margin: 20px 0;
    gap: 22px;
  }
  .prize {
    width: 22px;
    font-size: 12px;
  }
  .one {
    top: 40px !important;
    left: 48%;
  }
  .two {
    top: 110px !important;
    left: 41%;
  }
  .thre {
    top: 147px !important;
    left: 65%;
  }
  .four {
    top: 174px !important;
    left: 20%;
  }

  .bottom-mob {
    display: block;
    top: -100px;
    right: -170px;
    width: 300px;
    transform: rotate(210deg);
  }
  .bonus-highlight {
    font-size: 33px;
    display: none;
  }
  .bonus-highlight-mob {
    display: block !important;
    font-size: 33px;
  }
}
.bonus-highlight-mob {
  display: none;
}
.ball.gray {
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.2);
}

.plinko-prizes .prize,
.button {
  box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.2);
}

.one {
  top: 40px;
  left: 48%;
}
.two {
  top: 110px;
  left: 41%;
}
.thre {
  top: 247px;
  left: 65%;
}
.four {
  top: 284px;
  left: 20%;
}
