body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #F8F7FA;
  color: white;
}

p {
  margin: 0;
  padding: 0;
}

.landing-container {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: url("../img/bg.png") no-repeat top center;
  background-size: 100% 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 414px) {
  .landing-container {
    max-width: 400px;
  }
}

@media screen and (max-width: 375px) {
  .landing-container {
    max-width: 100%;
    background-size: cover;
  }
}

.hero-section {
  padding: 20px;
  text-align: center;
  background: url("../img/freecredit.png") no-repeat top center;
  background-size: contain;
  overflow: hidden;
  align-items: center;
  min-height: 60vh;
}

.header img {
  width: 100%;
}  

.logo {
  max-width: 120px;
  margin: 0 auto;
}

.hero-title {
  max-width: 100%;
  margin-top: 10px;
}

img.limited-10 {
  width: 70%;
  padding-top: 150px;
}

img.thunder {
  width: 110%;
  margin-top: -30px;
  margin-left: -5%;
  /* mix-blend-mode: screen; */
  display: none;
}

.highlight-text {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 10px 0;
  color: #FFD700;
}

.bonus-icons img {
  width: 100px;
  margin: 0 10px;
}

.hot-games {
  padding: 0 20px;
  margin-top: 150px;
  text-align: center;
}

.hot-games-header {
  width: 70%;
  padding-top: 70px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 375px) {
  .hot-games-header {
    width: 70%;
  }
}

.subtext {
  color: #580000;
  font-size: 15px;
  margin-bottom: 15px;
  text-shadow: 10px 10px 68px rgba(0, 0, 0, 1);
}

.game-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 -40px;
  padding: 0 40px;
}

.auto-scroll {
  display: flex;
  gap: 8px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.auto-scroll img {
  width: 105px;
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Scroll animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.game-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 2px;
  scroll-behavior: smooth;
  justify-content: flex-start;
  scrollbar-width: none; /* Firefox */
}

.game-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.game-list img {
  width: 105px;
  flex-shrink: 0;
  border-radius: 8px;
}

@media screen and (max-width: 375px) {
  .game-list img {
    width: 80px;
  }
}

.registration-form {
  margin-top: 5px;
}

.registration-form h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  text-shadow: 10px 10px 68px rgba(0, 0, 0, 1);
  margin: 0;
}

.registration-input {
  background: url("../img/form-bg.png") no-repeat top center;
  background-size: 95% 102%;
  margin-top: 5px;
  padding: 34px 42px;
}

@media screen and (max-width: 375px) {
  .registration-input {
      padding: 40px 35px;
  }
}

.registration-input label {
  display: block;
  margin-top: 10px;
}

.registration-input input {
  box-sizing: border-box; 
  width: 100%;
  padding: 12px 15px;
  margin-top: 5px;
  border: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4); /* translucent dark background */
  color: white;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); /* subtle inner border */
}

.registration-input input::placeholder {
  color: #ddd;
  opacity: 1;
}

.registration-input small {
  font-size: 10px;
  line-height: 1.2;
  color: #ccc;
  margin-bottom: 4px;
  display: block;
}

.registration-input input {
  margin-bottom: 2px; 
}

.submit-btn {
  cursor: pointer;
  display: flex; 
  justify-content: center; 
  align-items: center;     
  margin: auto;     
  margin-bottom: -80px;
  width: fit-content;     
}

.submit-btn img {
  width: 80%;
}

.new-member-reward {
  text-align: center;
  margin-top: 40px;
}

.reward-banner, .payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-banner img {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 20px 20px;
}

.reward-banner img {
  width: 100%;
}

.payment-method img {
  width: 70%;
  padding-bottom: 70px;
}


@media screen and (max-width: 375px) {
  .footer {
    padding: 10px 20px 50px 20px;
  }
}
