* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  overflow: hidden;
}

.landing-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.logo {
  position: absolute;
  top: 30px;
  left: 60px;
  height: 50px;
  z-index: 4;
}

.girl {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 90%;
  z-index: 2;
}

.bonus-text-container {
  position: absolute;
  top: 30%;
  left: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.welcome-text {
  color: #ffc700;
  font-size: 34px;
  font-weight: bold;
}

.bonus-text {
  width: 90%;
  max-width: 500px;
}

.promocode {
  width: 80%;
  max-width: 600px;
}
.extra-spins {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
}

.deposit-button {
  position: absolute;
  top: 80%;
  left: 5%;
  width: 300px;
  cursor: pointer;
  z-index: 3;
}

.payment-methods {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-methods img {
  height: 50px;
}