.page-fortunetiger {
  color: #FFF5E1; /* Text Main on dark body background */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

/* General Section Styling */
.page-fortunetiger__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0a0a0a; /* Default section background, same as body for consistency */
}

.page-fortunetiger__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Inner padding for content */
  box-sizing: border-box;
}

/* Hero Section */
.page-fortunetiger__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #B71C1C; /* Background color for hero section */
}

.page-fortunetiger__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
}

.page-fortunetiger__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fortunetiger__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 10;
  max-width: 900px;
  margin-top: 30px; /* Space between image and text */
  padding: 0 15px;
  text-align: center;
}

.page-fortunetiger__main-title {
  font-size: clamp(2.2em, 5vw, 3.5em); /* Responsive font size */
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Enhance readability */
}

.page-fortunetiger__hero-description {
  font-size: 1.2em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Titles and Paragraphs */
.page-fortunetiger__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F4D34D; /* Gold */
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fortunetiger__sub-title {
  font-size: clamp(1.4em, 3vw, 2.2em);
  color: #FFCC66; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__paragraph {
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
}

.page-fortunetiger__highlight {
  color: #FFD86A; /* Brighter gold for highlights */
  font-weight: bold;
}

/* CTA Buttons */
.page-fortunetiger__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-fortunetiger__btn-primary,
.page-fortunetiger__btn-secondary,
.page-fortunetiger__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-fortunetiger__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Border */
}

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

.page-fortunetiger__btn-secondary {
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #E53935; /* Auxiliary color */
}

.page-fortunetiger__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  background-color: #E53935; /* Auxiliary color */
}

.page-fortunetiger__btn-tertiary {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #C91F17; /* Main color */
}

.page-fortunetiger__btn-tertiary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  filter: brightness(1.2);
}

/* Image-Text Block Layout */
.page-fortunetiger__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: left;
}

.page-fortunetiger__image-left,
.page-fortunetiger__image-right {
  flex: 1;
  min-width: 250px; /* Ensure image doesn't get too small */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  display: block; /* For responsiveness */
  height: auto; /* For responsiveness */
  object-fit: cover;
}

.page-fortunetiger__text-content-left,
.page-fortunetiger__text-content-right {
  flex: 1.5;
}

.page-fortunetiger__image-text-block--reversed {
  flex-direction: row-reverse;
}

/* Lists */
.page-fortunetiger__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-fortunetiger__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #FFF5E1; /* Text Main */
  font-size: 1.05em;
}

.page-fortunetiger__list li::before {
  content: '★'; /* Custom bullet point */
  position: absolute;
  left: 0;
  color: #FFD86A; /* Brighter gold */
  font-weight: bold;
}

/* FAQ Section */
.page-fortunetiger__faq {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

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

.page-fortunetiger__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  overflow: hidden; /* For details tag */
}

.page-fortunetiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFF5E1; /* Text Main */
  cursor: pointer;
  background-color: #C91F17; /* Main color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-fortunetiger__faq-question:hover {
  filter: brightness(1.1);
}

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

.page-fortunetiger__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A; /* Brighter gold */
}

.page-fortunetiger__faq-item[open] .page-fortunetiger__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fortunetiger__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  text-align: left;
  background-color: #D32F2F; /* Card BG */
}

.page-fortunetiger__faq-answer a {
  color: #FFD86A; /* Link color */
  text-decoration: underline;
}

.page-fortunetiger__faq-item summary {
  list-style: none; /* Remove default marker */
}
.page-fortunetiger__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fortunetiger__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-fortunetiger__image-text-block--reversed {
    flex-direction: column; /* Reset order for mobile */
  }
  .page-fortunetiger__text-content-left,
  .page-fortunetiger__text-content-right {
    text-align: center;
    margin-top: 30px;
  }
  .page-fortunetiger__list {
    text-align: center; /* Center lists on mobile */
    padding-left: 0;
  }
  .page-fortunetiger__list li {
    padding-left: 0;
  }
  .page-fortunetiger__list li::before {
    position: static; /* Remove absolute positioning */
    margin-right: 5px; /* Add space */
  }
}

@media (max-width: 768px) {
  .page-fortunetiger__section {
    padding: 40px 15px;
  }

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

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

  .page-fortunetiger__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-fortunetiger__sub-title {
    font-size: clamp(1.2em, 6vw, 1.8em);
  }

  .page-fortunetiger__paragraph {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-fortunetiger img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortunetiger__section,
  .page-fortunetiger__card,
  .page-fortunetiger__container,
  .page-fortunetiger__image-text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsiveness (if any video is added) */
  .page-fortunetiger video,
  .page-fortunetiger__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortunetiger__video-section,
  .page-fortunetiger__video-container,
  .page-fortunetiger__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-fortunetiger__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }

  /* Button responsiveness */
  .page-fortunetiger__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-fortunetiger__btn-primary,
  .page-fortunetiger__btn-secondary,
  .page-fortunetiger__btn-tertiary,
  .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-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure content area images are not too small */
.page-fortunetiger__game-overview img,
.page-fortunetiger__profut-experience img,
.page-fortunetiger__game-variety img,
.page-fortunetiger__security-commitment img {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fix classes */
.page-fortunetiger__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-fortunetiger__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* No CSS filters for images */
.page-fortunetiger img {
  filter: none;
}