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

body {
  width: 100%;
  overflow-x: hidden;
}

body.casino-backdrop {
  background-attachment: fixed;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.treasure-offset {
  top: 5px;
}

button {
  border: 0;
}

main {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 20px;
}

.offer-chest {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 400px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 10px 0;
}

.offer-vision {
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.offer-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  align-items: center;
}

.offer-ribbon {
  background-color: #002e3c;
  padding: 1rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-align: center;
  width: 100%;
}

.offer-ribbon p {
  color: #f28345;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0;
}

h1,
h2,
h3,
p,
ol,
li {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}

h1,
h2,
h3 {
  color: #0e4657;
}

.inquiry-vault {
  margin: 2rem auto;
  width: 100%;
  max-width: 1500px;
  padding: 0 20px;
}

.inquiry-slot {
  margin-bottom: 0.2rem;
  width: 100%;
}

.inquiry-key {
  color: #0e4657;
  padding: 0.6rem;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.inquiry-key::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

h3.inquiry-key.active::after {
  transform: rotate(180deg) !important;
}

.inquiry-answer {
  display: none;
  color: #000;
  padding: 1rem;
  background-color: #f5f5f5;
  margin-top: 0.5rem;
  width: 100%;
}

.inquiry-answer ul,
.inquiry-answer ol {
  margin: 0.5rem 0;
  padding-left: 2.5rem;
  list-style-position: inside;
}

.inquiry-answer ul li,
.inquiry-answer ol li {
  margin-bottom: 0.3rem;
  padding-left: 0.5rem;
}

ol.inquiry-answer,
ul.inquiry-answer {
  padding-left: 30px !important;
}

.inquiry-slot.active .inquiry-answer {
  display: block;
}

.inquiry-slot.active .inquiry-answer {
  max-height: 1000px;
  padding: 1rem;
}

.vault-footer {
  margin-top: 10px;
  width: 100%;
}

.vault-footer p {
  max-width: 1500px;
}

@media (min-width: 1200px) {
  main {
    max-width: 1250px;
  }

  .offer-chest {
    max-width: 1250px;
  }

  .vault-footer p {
    max-width: 1250px;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  main {
    max-width: 1000px;
    padding: 0 15px;
  }

  .offer-chest {
    max-width: 1000px;
    height: 350px;
  }

  .vault-footer p {
    max-width: 1000px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  main {
    max-width: 800px;
    padding: 0 15px;
  }

  .offer-chest {
    max-width: 800px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  main {
    padding: 0 10px;
    max-width: 100%;
  }

  .offer-chest {
    width: 100% !important;
    max-width: 100% !important;
    height: 250px;
    padding: 5px 0;
    margin: 0;
  }

  .offer-vision {
    width: 100% !important;
  }

  .offer-details {
    width: 100% !important;
  }

  .offer-ribbon {
    padding: 0.5rem 1rem;
    width: 100% !important;
  }

  .inquiry-vault {
    width: 100% !important;
    max-width: 100%;
  }

  .inquiry-key,
  .inquiry-answer {
    padding: 0.5rem;
    width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  ol,
  li {
    width: 100% !important;
    max-width: 100%;
  }
}
