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

body {
  font-family: "Kanit", Arial, sans-serif;
  background: radial-gradient(
    circle at center,
    rgba(7, 2, 28, 0.7) 0%,
    #07021c 70%
  );
  background-color: #07021c;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 4rem);
  padding: 2rem 1rem;
  justify-content: center;
}

.headline {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 5.5rem);
  background: transparent;
  border: 6px solid #ce6d00;
  border-radius: 40px;
  padding: 0 2rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 0 5px rgba(246, 156, 11, 0.7), 0 0 20px rgba(246, 156, 11, 0.5);
  z-index: 2;
}

.reason {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  line-height: 1;
  margin-bottom: 5.5rem;
  z-index: 2;
  max-width: 1200px;
}

.reason .brand {
  color: #fdb813;
  font-weight: 700;
  font-style: italic;
}

.info-box {
  background-color: #0a1652;
  border-radius: 35px;
  padding: 1.5rem;
  font-size: clamp(1.4rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0rem;
  width: 100%;
  max-width: 800px;
  box-shadow: 10px 10px 0px rgb(0 0 0 / 50%);
  z-index: 2;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin-top: 1rem;
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.footer {
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  max-width: 600px;
}

.footer .support-email {
  color: #fdb813;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 992px) {
  body {
    padding: 0;
  }

  .container {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
  }

  .info-box {
    text-align: center;
    position: relative;
    right: 15%;
    margin-bottom: 23rem;
    margin-top: 7rem;
    font-size: 2.366rem;
  }

  .image-wrapper {
    position: absolute;
    bottom: -0rem;
    right: -20rem;
    width: 95vh;
    max-width: 100%;
    max-height: 95vh;
    z-index: 0;
    margin-top: 0;
  }

  .image-wrapper img {
    width: auto;
    height: auto;
    max-height: auto;
    min-width: 98vh;
  }

  .footer {
    position: absolute;
    bottom: 1rem;
    left: -14rem;
    text-align: left;
    margin-top: 0;
    padding-top: 0;
    align-self: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    justify-content: flex-start;
    padding: 2.5rem;
    min-height: 100vh;
    overflow: hidden;
  }

  .headline {
    border-radius: 20px;
    padding: 8px 20px;
    border: 4px solid #ce6d00;
    margin-bottom: 2.5rem;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .reason {
    margin-bottom: 4rem;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }

  .info-box {
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.5;
    padding: 1.5rem;
    max-width: 600px;
  }

  .image-wrapper {
    position: absolute;
    bottom: 1rem;
    width: 120vw;
    right: -30vw;
    max-width: none;
    min-width: unset;
    z-index: 0;
    margin-top: 0;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
  }

  .footer {
    font-size: 1.2rem;
    position: relative;
    bottom: auto;
    left: -4rem;
    margin-top: auto;
    padding-top: 2rem;
    text-align: start;
    z-index: 1;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    justify-content: flex-start;
    padding: 1.5rem;
    min-height: 100vh;
    overflow: hidden;
  }

  .headline {
    border-radius: 20px;
    padding: 8px 20px;
    border: 4px solid #ce6d00;
    margin-bottom: 2rem;
    font-size: clamp(1.9rem, 5vw, 2.2rem);
  }

  .reason {
    margin-bottom: 4rem;
    font-size: clamp(1.5rem, 3vw, 1.5rem);
  }

  .info-box {
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 1.2rem);
    line-height: 1.5;
    padding: 1.2rem;
  }

  .image-wrapper {
    position: absolute;
    bottom: 8rem;
    width: 140vw;
    right: -35vw;
    max-width: none;
    min-width: unset;
    z-index: 0;
    margin-top: 0;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
  }

  .footer {
    font-size: 1rem;
    position: relative;
    bottom: auto;
    left: -1rem;
    margin-top: auto;
    padding-top: 2rem;
    text-align: start;
    z-index: 1;
    width: 100%;
  }
  body {
    padding: 0;
  }
}
