.page-resources-cockfighting-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #121212 (dark), so use light text */
  background-color: transparent; /* Use transparent to let shared body background show */
}

.page-resources-cockfighting-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-cockfighting-betting-guide__hero-section {
  position: relative;
  background-color: #017439; /* Brand color as background */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-resources-cockfighting-betting-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-cockfighting-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-cockfighting-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-cockfighting-betting-guide__btn-primary,
.page-resources-cockfighting-betting-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, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-cockfighting-betting-guide__btn-primary {
  background-color: #C30808; /* Custom Register/Login button color */
  color: #FFFF00; /* Custom Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-cockfighting-betting-guide__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-resources-cockfighting-betting-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Custom Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-resources-cockfighting-betting-guide__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-2px);
}

.page-resources-cockfighting-betting-guide__video-wrapper {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
}

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

/* Content Area */
.page-resources-cockfighting-betting-guide__content-area {
  background-color: #FFFFFF; /* White background for content for readability */
  color: #333333; /* Dark text on light background */
  padding: 60px 0;
}

.page-resources-cockfighting-betting-guide__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-cockfighting-betting-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #017439;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-cockfighting-betting-guide__sub-title {
  font-size: 1.6em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-resources-cockfighting-betting-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-cockfighting-betting-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-cockfighting-betting-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-cockfighting-betting-guide__card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-resources-cockfighting-betting-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  width: 100%; /* Ensure image fills card width */
  min-height: 200px; /* Minimum size */
  object-fit: cover;
}

.page-resources-cockfighting-betting-guide__card-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 15px;
}

.page-resources-cockfighting-betting-guide__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-cockfighting-betting-guide__card-button {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-cockfighting-betting-guide__card-button:hover {
  background-color: #005f2e;
}

.page-resources-cockfighting-betting-guide__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-cockfighting-betting-guide__image-text-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 200px; /* Minimum size */
  object-fit: cover;
}

.page-resources-cockfighting-betting-guide__image-text-content {
  flex: 1;
}

.page-resources-cockfighting-betting-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 200px; /* Minimum size */
  object-fit: cover;
}

/* FAQ Section */
.page-resources-cockfighting-betting-guide__faq-container {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-resources-cockfighting-betting-guide__faq-item {
  border-bottom: 1px solid #eee;
}

.page-resources-cockfighting-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-resources-cockfighting-betting-guide__faq-question:hover {
  color: #005f2e;
}

.page-resources-cockfighting-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

.page-resources-cockfighting-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  color: #555555;
}

.page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px;
}

.page-resources-cockfighting-betting-guide__cta-buttons--bottom {
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-cockfighting-betting-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-cockfighting-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-cockfighting-betting-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-cockfighting-betting-guide__image-text-layout {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-cockfighting-betting-guide__image-text-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-resources-cockfighting-betting-guide__hero-section {
    padding: 40px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-cockfighting-betting-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-cockfighting-betting-guide__hero-description {
    font-size: 0.95em;
  }

  .page-resources-cockfighting-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-cockfighting-betting-guide__btn-primary,
  .page-resources-cockfighting-betting-guide__btn-secondary,
  .page-resources-cockfighting-betting-guide a[class*="button"],
  .page-resources-cockfighting-betting-guide 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-resources-cockfighting-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    overflow: hidden !important;
  }

  .page-resources-cockfighting-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-cockfighting-betting-guide__content-area {
    padding: 40px 0;
  }

  .page-resources-cockfighting-betting-guide__container {
    padding: 0 15px;
  }

  .page-resources-cockfighting-betting-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-cockfighting-betting-guide__sub-title {
    font-size: 1.3em;
  }

  .page-resources-cockfighting-betting-guide__paragraph,
  .page-resources-cockfighting-betting-guide__list-item,
  .page-resources-cockfighting-betting-guide__card-text,
  .page-resources-cockfighting-betting-guide__faq-answer p {
    font-size: 1em;
  }

  .page-resources-cockfighting-betting-guide__card-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-cockfighting-betting-guide__image-text-image {
    max-width: 100%;
  }

  .page-resources-cockfighting-betting-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-resources-cockfighting-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 12px 0;
  }

  .page-resources-cockfighting-betting-guide__faq-answer {
    padding: 0 10px;
  }

  .page-resources-cockfighting-betting-guide__faq-item.active .page-resources-cockfighting-betting-guide__faq-answer {
    padding: 10px;
  }
}