/* style/game-guides-cockfighting-guide.css */
.page-game-guides-cockfighting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
}

.page-game-guides-cockfighting-guide__dark-bg {
  background-color: #000000; /* Explicitly dark background for sections */
  color: #ffffff;
}

.page-game-guides-cockfighting-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background sections */
}

.page-game-guides-cockfighting-guide__text-content--dark-text {
  color: #333333; /* Specific text content that needs dark text on light background */
}

.page-game-guides-cockfighting-guide__hero-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-game-guides-cockfighting-guide__hero-content {
  max-width: 900px;
  z-index: 2;
  margin-bottom: 40px;
}

.page-game-guides-cockfighting-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-cockfighting-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-guides-cockfighting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-game-guides-cockfighting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-game-guides-cockfighting-guide__section {
  padding: 60px 20px;
}

.page-game-guides-cockfighting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-guides-cockfighting-guide__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-game-guides-cockfighting-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
}

.page-game-guides-cockfighting-guide__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for sub-titles */
}

.page-game-guides-cockfighting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-game-guides-cockfighting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-game-guides-cockfighting-guide__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-game-guides-cockfighting-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-guides-cockfighting-guide__btn-primary,
.page-game-guides-cockfighting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  word-wrap: normal;
}

.page-game-guides-cockfighting-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-right: 15px;
}

.page-game-guides-cockfighting-guide__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-game-guides-cockfighting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-guides-cockfighting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-game-guides-cockfighting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-game-guides-cockfighting-guide__cta-buttons--center {
  text-align: center;
}

.page-game-guides-cockfighting-guide__content-image-section .page-game-guides-cockfighting-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-guides-cockfighting-guide__content-image-section .page-game-guides-cockfighting-guide__text-content {
  flex: 1.5;
  min-width: 300px;
}

.page-game-guides-cockfighting-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-game-guides-cockfighting-guide__video-section {
  margin-top: 60px;
  text-align: center;
}

.page-game-guides-cockfighting-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-cockfighting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-game-guides-cockfighting-guide__video-description {
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-game-guides-cockfighting-guide__faq-list {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-game-guides-cockfighting-guide__faq-item {
  border-bottom: 1px solid #eee;
  background-color: #ffffff;
  color: #333333;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides-cockfighting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #f9f9f9;
  color: #333333;
}

.page-game-guides-cockfighting-guide__faq-question h3 {
  margin: 0;
  color: #333333;
}

.page-game-guides-cockfighting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-game-guides-cockfighting-guide__faq-item.active .page-game-guides-cockfighting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides-cockfighting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1em;
  color: #555555;
}

.page-game-guides-cockfighting-guide__faq-item.active .page-game-guides-cockfighting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 20px;
}

.page-game-guides-cockfighting-guide__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides-cockfighting-guide__main-title {
    font-size: 2.8em;
  }

  .page-game-guides-cockfighting-guide__section-title {
    font-size: 2em;
  }

  .page-game-guides-cockfighting-guide__sub-title {
    font-size: 1.5em;
  }

  .page-game-guides-cockfighting-guide__container--flex {
    flex-direction: column;
  }

  .page-game-guides-cockfighting-guide__container--reverse-on-mobile {
    flex-direction: column-reverse;
  }

  .page-game-guides-cockfighting-guide__text-content,
  .page-game-guides-cockfighting-guide__image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-guides-cockfighting-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-game-guides-cockfighting-guide__main-title {
    font-size: 2.2em;
  }

  .page-game-guides-cockfighting-guide__subtitle {
    font-size: 1em;
  }

  .page-game-guides-cockfighting-guide__section {
    padding: 40px 15px;
  }

  .page-game-guides-cockfighting-guide__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-cockfighting-guide__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides-cockfighting-guide__paragraph,
  .page-game-guides-cockfighting-guide__list-item,
  .page-game-guides-cockfighting-guide__faq-answer p {
    font-size: 0.95em;
  }

  .page-game-guides-cockfighting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-game-guides-cockfighting-guide__btn-primary,
  .page-game-guides-cockfighting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-guides-cockfighting-guide__container,
  .page-game-guides-cockfighting-guide__section,
  .page-game-guides-cockfighting-guide__video-section,
  .page-game-guides-cockfighting-guide__video-container,
  .page-game-guides-cockfighting-guide__video-wrapper,
  .page-game-guides-cockfighting-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-game-guides-cockfighting-guide img,
  .page-game-guides-cockfighting-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-cockfighting-guide__video-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-game-guides-cockfighting-guide__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-game-guides-cockfighting-guide__faq-answer {
    padding: 0 15px;
  }

  .page-game-guides-cockfighting-guide__faq-item.active .page-game-guides-cockfighting-guide__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-cockfighting-guide__main-title {
    font-size: 1.8em;
  }

  .page-game-guides-cockfighting-guide__section-title {
    font-size: 1.5em;
  }
}