:root {
  --page-fortunetiger-primary-color: #C91F17;
  --page-fortunetiger-secondary-color: #E53935;
  --page-fortunetiger-card-bg: #D32F2F;
  --page-fortunetiger-background-color: #B71C1C;
  --page-fortunetiger-text-main-color: #FFF5E1;
  --page-fortunetiger-border-color: #F2B544;
  --page-fortunetiger-glow-color: #FFCC66;
  --page-fortunetiger-gold-color: #F4D34D;
  --page-fortunetiger-deep-red-color: #7A0E0E;
  --page-fortunetiger-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
}

.page-fortunetiger {
  color: var(--page-fortunetiger-text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--page-fortunetiger-background-color);
}

.page-fortunetiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  color: var(--page-fortunetiger-text-main-color);
  background-color: var(--page-fortunetiger-deep-red-color);
}

.page-fortunetiger__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fortunetiger__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__hero-content {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  max-width: 900px;
  padding: 0 20px;
}

.page-fortunetiger__main-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--page-fortunetiger-gold-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-fortunetiger__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunetiger__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-fortunetiger__btn-primary,
.page-fortunetiger__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortunetiger__btn-primary {
  background: var(--page-fortunetiger-btn-gradient);
  color: var(--page-fortunetiger-deep-red-color);
  border: 2px solid var(--page-fortunetiger-gold-color);
}

.page-fortunetiger__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-fortunetiger__btn-secondary {
  background-color: transparent;
  color: var(--page-fortunetiger-gold-color);
  border: 2px solid var(--page-fortunetiger-gold-color);
}

.page-fortunetiger__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-fortunetiger__section {
  padding: 60px 20px;
  background-color: var(--page-fortunetiger-background-color);
  color: var(--page-fortunetiger-text-main-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fortunetiger__dark-section {
  background-color: var(--page-fortunetiger-deep-red-color);
  color: var(--page-fortunetiger-text-main-color);
}

.page-fortunetiger__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fortunetiger__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--page-fortunetiger-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fortunetiger__content-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.page-fortunetiger__content-area p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-fortunetiger__content-area a {
  color: var(--page-fortunetiger-gold-color);
  text-decoration: underline;
}

.page-fortunetiger__content-area a:hover {
  color: var(--page-fortunetiger-glow-color);
}

.page-fortunetiger__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--page-fortunetiger-gold-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__image--left {
  align-self: flex-start;
  margin-right: 30px;
}

.page-fortunetiger__image--right {
  align-self: flex-end;
  margin-left: 30px;
}

.page-fortunetiger__content-area ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-fortunetiger__content-area ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-fortunetiger__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunetiger__faq-item {
  background-color: var(--page-fortunetiger-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid var(--page-fortunetiger-border-color);
}

.page-fortunetiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--page-fortunetiger-text-main-color);
  background-color: var(--page-fortunetiger-secondary-color);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-fortunetiger__faq-question:hover {
  background-color: var(--page-fortunetiger-primary-color);
}

.page-fortunetiger__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-fortunetiger-gold-color);
}

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

.page-fortunetiger__faq-answer {
  padding: 20px 25px;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--page-fortunetiger-text-main-color);
  border-top: 1px solid var(--page-fortunetiger-primary-color);
  font-size: 1.05rem;
}

.page-fortunetiger__faq-answer p {
  margin: 0;
}

.page-fortunetiger__conclusion-section {
  text-align: center;
  background-color: var(--page-fortunetiger-background-color);
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-fortunetiger__content-area {
    flex-direction: row;
    align-items: center;
  }
  .page-fortunetiger__content-area:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .page-fortunetiger__image--left {
    margin-right: 30px;
    margin-left: 0;
  }
  .page-fortunetiger__image--right {
    margin-left: 30px;
    margin-right: 0;
  }
  .page-fortunetiger__content-area > *:not(img) {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-fortunetiger__hero-section {
    padding: 40px 15px;
  }
  .page-fortunetiger__main-title {
    font-size: 2.2rem;
  }
  .page-fortunetiger__description {
    font-size: 1rem;
  }
  .page-fortunetiger__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fortunetiger__btn-primary,
  .page-fortunetiger__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fortunetiger__section {
    padding: 40px 15px;
  }
  .page-fortunetiger__section-title {
    font-size: 1.8rem;
  }
  .page-fortunetiger__sub-title {
    font-size: 1.3rem;
  }
  .page-fortunetiger__content-area {
    flex-direction: column;
    align-items: center;
  }
  .page-fortunetiger__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 20px 0 !important;
    display: block !important;
  }
  .page-fortunetiger__container,
  .page-fortunetiger__overview-section,
  .page-fortunetiger__why-play-section,
  .page-fortunetiger__strategy-section,
  .page-fortunetiger__mobile-section,
  .page-fortunetiger__payments-section,
  .page-fortunetiger__faq-section,
  .page-fortunetiger__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fortunetiger p,
  .page-fortunetiger li {
    font-size: 1rem;
  }
  .page-fortunetiger__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-fortunetiger__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}