/* style/fortunetiger.css */
.page-fortunetiger {
  color: #ffffff; /* Dark body background #1a1a2e requires light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fortunetiger__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-fortunetiger__section {
  padding: 60px 0;
  text-align: center;
}

.page-fortunetiger__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-fortunetiger__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-fortunetiger__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fortunetiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fortunetiger__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fortunetiger__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-fortunetiger__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-fortunetiger__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
  /* No fixed font-size, use responsive scaling */
  font-size: clamp(2em, 5vw, 3.5em);
}

.page-fortunetiger__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fortunetiger__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-fortunetiger__btn-primary,
.page-fortunetiger__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortunetiger__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-fortunetiger__btn-primary:hover {
  background-color: #005a2b;
  border-color: #005a2b;
}

.page-fortunetiger__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #ffffff;
}

.page-fortunetiger__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

/* Specific button colors */
.page-fortunetiger__btn-register,
.page-fortunetiger__btn-play,
.page-fortunetiger__btn-start-playing,
.page-fortunetiger__btn-register-bonus,
.page-fortunetiger__btn-register-now {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-fortunetiger__btn-register:hover,
.page-fortunetiger__btn-play:hover,
.page-fortunetiger__btn-start-playing:hover,
.page-fortunetiger__btn-register-bonus:hover,
.page-fortunetiger__btn-register-now:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-fortunetiger__btn-download,
.page-fortunetiger__btn-promotions,
.page-fortunetiger__btn-login {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-fortunetiger__btn-download:hover,
.page-fortunetiger__btn-promotions:hover,
.page-fortunetiger__btn-login:hover {
  background-color: #f0f0f0;
  color: #005a2b;
}

.page-fortunetiger__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-fortunetiger__image-bottom {
  margin-bottom: 0;
}

.page-fortunetiger__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-fortunetiger__ordered-list,
.page-fortunetiger__unordered-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-fortunetiger__ordered-list li,
.page-fortunetiger__unordered-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.05em;
}

.page-fortunetiger__ordered-list li strong,
.page-fortunetiger__unordered-list li strong {
  color: #FFFF00;
}

/* FAQ Section */
.page-fortunetiger__faq-section {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-fortunetiger__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-fortunetiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background-color: #017439;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fortunetiger__faq-question::-webkit-details-marker {
  display: none;
}

.page-fortunetiger__faq-question::marker {
  display: none;
}

.page-fortunetiger__faq-qtext {
  flex-grow: 1;
}

.page-fortunetiger__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-fortunetiger__faq-item[open] .page-fortunetiger__faq-toggle {
  transform: rotate(45deg);
}

.page-fortunetiger__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-fortunetiger__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fortunetiger__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fortunetiger__section {
    padding: 40px 0;
  }

  .page-fortunetiger__hero-section {
    min-height: 450px;
    padding-top: 10px !important;
  }

  .page-fortunetiger__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-fortunetiger__hero-description {
    font-size: 1em;
  }

  .page-fortunetiger__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-fortunetiger__btn-primary,
  .page-fortunetiger__btn-secondary,
  .page-fortunetiger a[class*="button"],
  .page-fortunetiger a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fortunetiger__section-title {
    font-size: 2em;
  }

  .page-fortunetiger__subsection-title {
    font-size: 1.5em;
  }

  .page-fortunetiger__text-block {
    font-size: 1em;
  }

  .page-fortunetiger__ordered-list li,
  .page-fortunetiger__unordered-list li {
    font-size: 0.95em;
    padding: 10px;
  }

  .page-fortunetiger img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fortunetiger__image-content {
    margin: 20px auto;
  }

  .page-fortunetiger__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fortunetiger__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}