.page-cockfighting-live-faq {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

.page-cockfighting-live-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live-faq__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-live-faq__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-cockfighting-live-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live-faq__hero-subtitle {
  font-size: 1.3em;
  color: #E5E5D1;
  margin-bottom: 30px;
}

.page-cockfighting-live-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-cockfighting-live-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-cockfighting-live-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-cockfighting-live-faq__intro {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-cockfighting-live-faq__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-cockfighting-live-faq__faq-list {
  padding: 60px 0;
  background-color: #26263F;
}

.page-cockfighting-live-faq__faq-item {
  background-color: #1A1A2E;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70033;
}

.page-cockfighting-live-faq__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-cockfighting-live-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-cockfighting-live-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-cockfighting-live-faq__faq-answer {
  font-size: 1.1em;
  color: #E5E5D1;
  padding-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

.page-cockfighting-live-faq__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
}

.page-cockfighting-live-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-cockfighting-live-faq__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-cockfighting-live-faq__image--inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-cockfighting-live-faq__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
  border: 2px solid #FFD700;
}

.page-cockfighting-live-faq__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-cockfighting-live-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-live-faq__btn--secondary:hover {
  background-color: #FFD7001A;
  transform: translateY(-2px);
}

.page-cockfighting-live-faq__btn--lg {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-cockfighting-live-faq__cta {
  background-color: #1A1A2E;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #FFD70033;
}

.page-cockfighting-live-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-cockfighting-live-faq__cta-text {
  font-size: 1.2em;
  color: #E5E5D1;
  margin-bottom: 40px;
}

.page-cockfighting-live-faq__btn--cta {
  margin: 0 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-live-faq__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting-live-faq__hero-subtitle,
  .page-cockfighting-live-faq__text-content,
  .page-cockfighting-live-faq__faq-answer {
    font-size: 1em;
  }

  .page-cockfighting-live-faq__section-title,
  .page-cockfighting-live-faq__cta-title {
    font-size: 2em;
  }

  .page-cockfighting-live-faq__faq-question {
    font-size: 1.3em;
  }

  .page-cockfighting-live-faq__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-cockfighting-live-faq__btn--lg {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-live-faq__btn--cta {
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-faq__hero {
    padding: 60px 0;
  }

  .page-cockfighting-live-faq__hero-title {
    font-size: 2em;
  }

  .page-cockfighting-live-faq__hero-subtitle {
    font-size: 0.9em;
  }

  .page-cockfighting-live-faq__section-title,
  .page-cockfighting-live-faq__cta-title {
    font-size: 1.8em;
  }

  .page-cockfighting-live-faq__faq-question {
    font-size: 1.1em;
  }

  .page-cockfighting-live-faq__faq-item {
    padding: 20px 20px;
  }
}