/* style/fortune-tiger.css */
.page-fortune-tiger {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color, #FFF6D6); /* Default text color */
  background-color: var(--background-color, #0A0A0A); /* Default body background */
}

.page-fortune-tiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-fortune-tiger__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-fortune-tiger__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-fortune-tiger__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to overlap with image but not cover text */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.0) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 1) 100%);
  padding-top: 150px;
  padding-bottom: 30px;
  border-radius: 10px;
}

.page-fortune-tiger__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

.page-fortune-tiger__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-main-color, #FFF6D6);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-fortune-tiger__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.5);
}

.page-fortune-tiger__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fortune-tiger__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-fortune-tiger__text-content {
  flex: 1;
  min-width: 300px;
  color: var(--text-main-color, #FFF6D6);
  line-height: 1.7;
}

.page-fortune-tiger__text-content p {
  margin-bottom: 15px;
}

.page-fortune-tiger__text-content strong {
  color: #FFD36B;
}

.page-fortune-tiger__image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fortune-tiger__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-fortune-tiger__about-section,
.page-fortune-tiger__why-choose-section,
.page-fortune-tiger__safety-section {
  padding: 80px 0;
  background-color: var(--background-color, #0A0A0A);
}

.page-fortune-tiger__how-to-play-section,
.page-fortune-tiger__mobile-section,
.page-fortune-tiger__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg-color, #111111);
}

.page-fortune-tiger__how-to-play-section .page-fortune-tiger__content-wrapper {
  flex-direction: row-reverse; /* Image on left, text on right */
}

.page-fortune-tiger__subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #F2C14E;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fortune-tiger__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fortune-tiger__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-main-color, #FFF6D6);
}

.page-fortune-tiger__list-item::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFD36B;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-fortune-tiger__btn-primary,
.page-fortune-tiger__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-fortune-tiger__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-fortune-tiger__btn-primary:hover {
  background: linear-gradient(180deg, #FFE699 0%, #E6B033 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-fortune-tiger__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-fortune-tiger__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-fortune-tiger__faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--border-color, #3A2A12);
}

.page-fortune-tiger__faq-item {
  background-color: var(--card-bg-color, #111111);
  border-bottom: 1px solid var(--border-color, #3A2A12);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.page-fortune-tiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2C14E;
  list-style: none;
}

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

.page-fortune-tiger__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
  color: #FFD36B;
}

.page-fortune-tiger__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  color: var(--text-main-color, #FFF6D6);
  line-height: 1.6;
}

.page-fortune-tiger__faq-answer p {
  margin-bottom: 10px;
}

.page-fortune-tiger__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-color, #0A0A0A);
}

.page-fortune-tiger__cta-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-main-color, #FFF6D6);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-fortune-tiger__keyword {
  color: #FFD36B;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fortune-tiger__content-wrapper {
    flex-direction: column;
  }
  .page-fortune-tiger__how-to-play-section .page-fortune-tiger__content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fortune-tiger__hero-content {
    margin-top: -100px;
    padding-top: 100px;
  }
  .page-fortune-tiger__main-title {
    font-size: 2.2rem;
  }
  .page-fortune-tiger__hero-description {
    font-size: 1rem;
  }
  .page-fortune-tiger__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fortune-tiger__btn-primary,
  .page-fortune-tiger__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fortune-tiger__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fortune-tiger__section-title {
    font-size: 1.8rem;
  }
  .page-fortune-tiger__subtitle {
    font-size: 1.2rem;
  }
  .page-fortune-tiger__about-section,
  .page-fortune-tiger__how-to-play-section,
  .page-fortune-tiger__mobile-section,
  .page-fortune-tiger__safety-section,
  .page-fortune-tiger__faq-section,
  .page-fortune-tiger__cta-final-section {
    padding: 40px 0;
  }
  .page-fortune-tiger__container {
    padding: 0 15px;
  }
  .page-fortune-tiger img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fortune-tiger__section,
  .page-fortune-tiger__card,
  .page-fortune-tiger__container,
  .page-fortune-tiger__video-section,
  .page-fortune-tiger__video-container,
  .page-fortune-tiger__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fortune-tiger__video-section {
    padding-top: 10px !important;
  }
  .page-fortune-tiger__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-fortune-tiger__cta-buttons a {
    padding-left: 15px;
    padding-right: 15px;
  }
}