/* style/fortune-tiger.css */

/* Variáveis de cor */
:root {
  --page-fortune-tiger-primary-color: #C61F1F;
  --page-fortune-tiger-secondary-color: #E53030;
  --page-fortune-tiger-card-bg: #2A1212;
  --page-fortune-tiger-background: #140C0C;
  --page-fortune-tiger-text-main: #FFF1E8;
  --page-fortune-tiger-border: #6A1E1E;
  --page-fortune-tiger-gold: #F3C54D;
  --page-fortune-tiger-deep-red: #7E0D0D;
  --page-fortune-tiger-button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-fortune-tiger {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Padrão para light-bg */
}

.page-fortune-tiger__dark-section {
  background: var(--page-fortune-tiger-background);
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-fortune-tiger__card-bg {
  background: var(--page-fortune-tiger-card-bg);
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__text-main {
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: 10px; /* Pequeno top padding, body já tem --header-offset */
  overflow: hidden;
}

.page-fortune-tiger__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-fortune-tiger__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Escurece o vídeo para melhor contraste do texto */
}

.page-fortune-tiger__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fortune-tiger__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.page-fortune-tiger__cta-button {
  display: inline-block;
  background: var(--page-fortune-tiger-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fortune-tiger__cta-button:hover {
  filter: brightness(1.1);
}

.page-fortune-tiger__cta-button--secondary {
  background: #ffffff;
  color: var(--page-fortune-tiger-primary-color);
  border: 2px solid var(--page-fortune-tiger-primary-color);
}

.page-fortune-tiger__cta-button--secondary:hover {
  background: var(--page-fortune-tiger-primary-color);
  color: #ffffff;
}

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

.page-fortune-tiger__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-fortune-tiger-primary-color);
}

.page-fortune-tiger__dark-section .page-fortune-tiger__section-title {
  color: var(--page-fortune-tiger-gold);
}

.page-fortune-tiger__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortune-tiger__about-section,
.page-fortune-tiger__gameplay-section,
.page-fortune-tiger__features-section,
.page-fortune-tiger__why-lsbet-section,
.page-fortune-tiger__testimonials-section,
.page-fortune-tiger__faq-section,
.page-fortune-tiger__cta-bottom-section {
  padding: 80px 0;
}

.page-fortune-tiger__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fortune-tiger__text-block {
  flex: 1;
  font-size: 1.1rem;
}

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

.page-fortune-tiger__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-fortune-tiger__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortune-tiger__step-card {
  background: var(--page-fortune-tiger-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-fortune-tiger-border);
}

.page-fortune-tiger__step-title {
  font-size: 1.5rem;
  color: var(--page-fortune-tiger-gold);
  margin-bottom: 15px;
}

.page-fortune-tiger__step-card p {
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__step-card a {
  color: var(--page-fortune-tiger-gold);
  text-decoration: underline;
}

.page-fortune-tiger__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-fortune-tiger__cta-wrapper--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fortune-tiger__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fortune-tiger__feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-fortune-tiger__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fortune-tiger__feature-title {
  font-size: 1.4rem;
  color: var(--page-fortune-tiger-primary-color);
  margin-bottom: 10px;
}

.page-fortune-tiger__feature-card p {
  color: #555555;
}

.page-fortune-tiger__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fortune-tiger__benefit-item {
  background: var(--page-fortune-tiger-deep-red);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-fortune-tiger-border);
  color: var(--page-fortune-tiger-text-main);
}

.page-fortune-tiger__benefit-title {
  font-size: 1.5rem;
  color: var(--page-fortune-tiger-gold);
  margin-bottom: 15px;
}

.page-fortune-tiger__benefit-item a {
  color: var(--page-fortune-tiger-gold);
  text-decoration: underline;
}

.page-fortune-tiger__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fortune-tiger__testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-style: italic;
  color: #555555;
}

.page-fortune-tiger__testimonial-author {
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
  color: #333333;
}

.page-fortune-tiger__faq-list {
  margin-top: 40px;
}

.page-fortune-tiger__faq-item {
  background: var(--page-fortune-tiger-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--page-fortune-tiger-border);
  overflow: hidden;
}

.page-fortune-tiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--page-fortune-tiger-gold);
  background: var(--page-fortune-tiger-deep-red);
  border-bottom: 1px solid var(--page-fortune-tiger-border);
}

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

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

.page-fortune-tiger__faq-item[open] .page-fortune-tiger__faq-question {
  border-bottom: 1px solid var(--page-fortune-tiger-border);
}

.page-fortune-tiger__faq-qtext {
  flex-grow: 1;
}

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

.page-fortune-tiger__faq-answer {
  padding: 20px;
  color: var(--page-fortune-tiger-text-main);
  font-size: 1rem;
}

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

.page-fortune-tiger__faq-answer a {
  color: var(--page-fortune-tiger-gold);
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 992px) {
  .page-fortune-tiger__content-grid {
    flex-direction: column;
  }
  .page-fortune-tiger__about-section .page-fortune-tiger__image-wrapper {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fortune-tiger__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important; /* body já tem --header-offset */
  }
  .page-fortune-tiger__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-fortune-tiger__hero-description {
    font-size: 1rem;
  }
  .page-fortune-tiger__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-fortune-tiger__about-section,
  .page-fortune-tiger__gameplay-section,
  .page-fortune-tiger__features-section,
  .page-fortune-tiger__why-lsbet-section,
  .page-fortune-tiger__testimonials-section,
  .page-fortune-tiger__faq-section,
  .page-fortune-tiger__cta-bottom-section {
    padding: 60px 0;
  }
  .page-fortune-tiger__container {
    padding: 0 15px;
  }

  /* Imagens responsivas */
  .page-fortune-tiger img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fortune-tiger__image-wrapper,
  .page-fortune-tiger__feature-icon,
  .page-fortune-tiger__testimonial-card,
  .page-fortune-tiger__step-card,
  .page-fortune-tiger__benefit-item,
  .page-fortune-tiger__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Vídeos responsivos */
  .page-fortune-tiger video,
  .page-fortune-tiger__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fortune-tiger__hero-video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Botões responsivos */
  .page-fortune-tiger__cta-button,
  .page-fortune-tiger a[class*="button"],
  .page-fortune-tiger 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-fortune-tiger__cta-wrapper,
  .page-fortune-tiger__cta-wrapper--center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-fortune-tiger__cta-wrapper--center {
    flex-direction: column;
  }
}