body {
  padding: 0;
  margin: 0;
}

/* header style */
header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: fixed;
  top: 0;
  background-color: rgb(28 28 28 / 64%);
  z-index: 999;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #d17900;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05em;
  padding: 1%;
}

.logo a {
  text-decoration: none;
  color: #d17900;
}

.page-links {
  display: flex;
  flex-direction: row;
}

.nav-link {
  font-size: 24px;
  color: #ffffff;
  margin: auto 20px;
}

/* Homepage */

/* hero section style */
.clsHeroSection {
  height: 438px;
  display: flex;
  flex-direction: row;
  position: relative;
}

.clsHeroImage {
  width: 50%;
  height: 100%;
}

.clsHeroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clsHeroSection > .hero-text {
  width: 50%;
  height: 100%;
  background-color: #6e0404;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2%;
}

.home-hero-section {
  height: 538px;
  background-color: #6e0404;
}

.hero-text.clsHome {
  padding: 19% 42% 0 10%;
}

.hero-text * {
  text-align: left;
}

.hero-text h1 {
  font-size: 34px;
  color: #f9b821;
}

.hero-text p {
  font-size: 20px;
  color: white;
}

/* feature section */
.feature-section {
  background-color: #01392f;
  background-image: url("../images/background3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding-bottom: 4%; */
  position: relative;
}

.main-intro {
  padding: 20px 60px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
  padding: 4%;
}

.clsFeatureIntro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4%;
  z-index: 1;
  position: relative;
  gap: 7%;
}

.character-image img {
  width: 187px;
}

.features {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.clsFeatureBlock {
  padding: 5px 21px;
  margin-bottom: 10px;
  background-color: #6e0404;
}

.clsFeatureBlock h2 {
  margin: 15px 0;
}

.play-section {
  background-color: #395809;
  padding-bottom: 40px;
  background-image: url("../images/gamebg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.clsStartButton {
}

.clsBgcolor {
  width: 100%;
  height: 100%;
  background-color: rgba(25, 28, 26, 0.5);
  position: absolute;
  z-index: 0;
}

.clsGameContainer {
  width: 60%;
  padding-top: 65px;
  z-index: 1;
}

.clsGameImage img {
  border-radius: 20px;
  box-shadow: 2px 2px 2px 2px #061c0a;
  object-fit: cover;
  width: 100%;
}

.clsStartButton {
  text-align: center;
  margin-top: 15px;
}

.clsStartButton button {
  width: 180px;
  height: 50px;
  background: none;
  border: 1px solid white;
  font-size: 21px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.clsStartButton button:hover {
  color: #f9b821;
  border: 1px solid #f9b821;
  /* box-shadow: 1px 1px 9px 4px rgb(178, 1, 1); */
}

.clsAboutUsSection {
  background-color: #6e0404;
  display: flex;
  flex-direction: row;
  padding: 4%;
}

.clsSnippet {
  padding: 4%;
  background-color: #6c6c6c5c;
}

.clsAboutUsSection > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.3333%;
  padding: 0 2%;
  gap: 80px;
}

.clsAboutUsSection > div > div > h2 {
  text-align: center;
}

.clsAboutUsSection > div > div > p {
  text-align: justify;
}

/* Question section */
.faq-section {
  background-color: #6e0404;
}

.faq-container {
  width: 50%;
  margin: auto;
  padding: 50px 0;
}

.faq-container h2 {
  text-align: center;
}

.clsQuestionBlock {
  width: 100%;
}

.clsQuestionBlock > p {
  margin: 0;
}

.clsCollapsible {
  background-color: rgb(39 39 39 / 50%);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active,
.clsCollapsible:hover {
  background-color: none;
}

.clsAnswer {
  padding: 0 18px;
  /* margin: 10px 0; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: none;
}

footer {
  background-color: #131313;
}

.footer-logos {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.footer-logo {
  width: 15%;
  height: auto;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.footer-logo img {
  width: 80%;
  object-fit: cover;
}

.clsFooterIntro {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  color: #f9b821;
}

.footer-links a {
  margin: 20px;
  font-size: 19px;
  color: #f9b821;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.footer-links a:hover {
  color: white;
}

.clsCopyright {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
  color: white;
}

/* Font style */
.clsTextContent {
  color: #ffffff;
}

.clsHeadingContent {
  color: #f9b821;
}

a {
  text-decoration: none;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #395809;
  padding: 20px 0;
}

.disclaimer-content {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer-block {
  width: 100%;
}

.disclaimer-block ul {
  color: #ced58e;
}

.play-rules {
  background-image: url("../images/background64.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Play Page style */
.play-ground-section {
  padding: 2rem;
  background: black;
}

.play-game {
  max-width: 940px;
  margin: 0 auto;
}

.contact-section {
  background-color: #395809;
}

.contact-form {
  width: 50%;
  margin: 0 auto;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

#contactForm input {
  width: 100%;
  height: 42px;
  background: none;
  outline: none;
  color: white;
  border: 1px solid white;
}

#contactForm textarea {
  width: 100%;
  background: none;
  outline: none;
  border: 2px solid white;
  color: white;
}

#contactForm * {
  margin: 7px 0;
}

#contactForm button {
  width: 35%;
  height: 50px;
  font-size: 19px;
  background: none;
  color: white;
  border: 1px solid white;
  transition: all 0.3s ease;
}

#contactForm button:hover {
  color: #f9b821;
  border: 1px solid #f9b821;
}

.nav-toggle-link {
  font-size: 24px;
  color: #ed9f00;
  margin: auto 20px;
}

.nav-toggle-container {
  display: none;
}

@media only screen and (max-width: 900px) {
  .clsFeatureIntro {
    flex-direction: column;
    padding: 4%;
  }

  .hero-text.clsHome {
    padding: 19% 10% 0 10%;
  }

  .clsAboutUsSection {
    flex-direction: column;
  }

  .clsAboutUsSection > div {
    flex-direction: column;
    width: 97%;
    gap: 0;
  }

  .clsHeroSection > .hero-text {
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: #6e040477;
  }

  .clsHeroImage {
    width: 100%;
    position: absolute;
    z-index: 0;
  }

  .contact-form {
    width: 80%;
  }

  .disclaimer-content {
    width: 80%;
  }

  .page-links {
    display: none;
    position: absolute;
    flex-direction: column;
    width: 100%;
    top: 55.5px;
    max-height: 0;
    transition: display 0.2s ease-out;
  }

  .page-links.actives {
    display: flex;
  }

  .nav-link {
    background-color: #1b1b1aa8;
    padding: 10px 27px;
    margin: 0;
  }

  .nav-link:hover {
    background-color: #565652a8;
  }

  header {
    justify-content: space-between;
  }

  .nav-toggle-container {
    display: flex;
  }
}

@media only screen and (max-width: 490px) {
  .footer-links {
    display: none;
  }

  .footer-logos {
    display: grid;
    grid-template-columns: auto auto;
  }

  .footer-logo {
    width: 100%;
  }
}

strong {
  color: #d54903;
}

.clsContentContainer {
  background-color: #6e0404;
  padding: 7% 10%;
}

.content-block h2 {
  color: #f9b821;
}

.content-block p {
  color: white;
}

.content-block ul {
  color: white;
}

.contact-us {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: white;
}

.input-box label {
  width: 18%;
  padding: 1%;
  color: white;
}

.input-box input {
  width: 30%;
}

.submit {
  background: none;
}
