/* style/fortunetiger.css */
.page-fortunetiger {
  color: #FFF5E1; /* Texto principal claro para fundo escuro */
  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__dark-bg {
  background-color: #B71C1C; /* Cor de fundo principal para seções */
}

.page-fortunetiger__section-title {
  font-size: clamp(2em, 5vw, 3em);
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fortunetiger__section-description,
.page-fortunetiger__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fortunetiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Pequena margem superior */
  text-align: center;
  overflow: hidden;
}

.page-fortunetiger__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-fortunetiger__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-fortunetiger__main-title {
  color: #FFCC66; /* Glow */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-fortunetiger__tagline {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFF5E1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-fortunetiger__cta-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortunetiger__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Botão */
  color: #7A0E0E; /* Deep Red */
  border: 2px solid #F2B544; /* Borda */
}

.page-fortunetiger__cta-button--primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #FFCC66 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fortunetiger__cta-button--secondary {
  background-color: #C91F17; /* 主色调 */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #E53935; /* Auxiliar */
}

.page-fortunetiger__cta-button--secondary:hover {
  background-color: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fortunetiger__cta-button--play {
  margin-top: 20px;
}

/* Video Section */
.page-fortunetiger__video-section {
  padding: 40px 20px;
  text-align: center;
}

.page-fortunetiger__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-fortunetiger__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-fortunetiger__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-fortunetiger__video-caption {
  font-size: 1em;
  color: #FFF5E1;
  margin-bottom: 20px;
}

/* Content Sections */
.page-fortunetiger__about-game-section,
.page-fortunetiger__how-to-play-section,
.page-fortunetiger__features-section,
.page-fortunetiger__why-betf12-section,
.page-fortunetiger__tips-strategies-section,
.page-fortunetiger__faq-section,
.page-fortunetiger__final-cta-section {
  padding: 60px 20px;
}

.page-fortunetiger__content-area {
  text-align: left;
}

.page-fortunetiger__numbered-list,
.page-fortunetiger__bullet-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunetiger__numbered-list li,
.page-fortunetiger__bullet-list li {
  background-color: #D32F2F; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544; /* Borda */
}

.page-fortunetiger__list-title {
  color: #FFCC66; /* Glow */
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fortunetiger__list-text {
  color: #FFF5E1;
  font-size: 1em;
}

.page-fortunetiger__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Feature Grid */
.page-fortunetiger__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortunetiger__feature-card {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544; /* Borda */
}

.page-fortunetiger__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-fortunetiger__card-title {
  color: #FFCC66; /* Glow */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fortunetiger__card-text {
  color: #FFF5E1;
  font-size: 1em;
}

.page-fortunetiger__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-fortunetiger__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-fortunetiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.3em;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  cursor: pointer;
  position: relative;
  list-style: none; /* For details/summary */
}

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

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

.page-fortunetiger__faq-toggle {
  font-size: 1.5em;
  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: 0 25px 20px 25px;
  color: #FFF5E1;
  font-size: 1em;
  line-height: 1.7;
  text-align: left;
}

/* Final CTA Section */
.page-fortunetiger__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-fortunetiger {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fortunetiger__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-fortunetiger__tagline {
    font-size: 1.1em;
  }

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

  .page-fortunetiger__cta-button {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-fortunetiger__video-section,
  .page-fortunetiger__about-game-section,
  .page-fortunetiger__how-to-play-section,
  .page-fortunetiger__features-section,
  .page-fortunetiger__why-betf12-section,
  .page-fortunetiger__tips-strategies-section,
  .page-fortunetiger__faq-section,
  .page-fortunetiger__final-cta-section {
    padding: 30px 15px;
  }

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

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

  .page-fortunetiger__numbered-list li,
  .page-fortunetiger__bullet-list li,
  .page-fortunetiger__feature-card,
  .page-fortunetiger__faq-item {
    padding: 20px;
  }

  .page-fortunetiger__list-title,
  .page-fortunetiger__card-title {
    font-size: 1.3em;
  }

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

  .page-fortunetiger__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-fortunetiger__image-full-width,
  .page-fortunetiger__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fortunetiger img {
    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,
  .page-fortunetiger__section,
  .page-fortunetiger__card,
  .page-fortunetiger__container,
  .page-fortunetiger__cta-buttons,
  .page-fortunetiger__button-group,
  .page-fortunetiger__btn-container {
    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;
  }
  
  .page-fortunetiger__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }
  
  .page-fortunetiger__cta-buttons {
    display: flex;
    flex-direction: column; 
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Desktop video width for flex container */
.page-fortunetiger__video-container {
  width: 100%;
}