.page-cockfighting-rules-betting {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-cockfighting-rules-betting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  background: #f8f9fa; /* Light background for hero section */
  position: relative;
  overflow: hidden;
}

.page-cockfighting-rules-betting__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-rules-betting__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
}

.page-cockfighting-rules-betting__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting-rules-betting__description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-cockfighting-rules-betting__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cockfighting-rules-betting__btn-primary,
.page-cockfighting-rules-betting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-rules-betting__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-cockfighting-rules-betting__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-cockfighting-rules-betting__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting-rules-betting__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-cockfighting-rules-betting__section {
  padding: 60px 20px;
}

.page-cockfighting-rules-betting__dark-bg {
  background-color: #26A9E0;
  color: #ffffff; /* White text for dark background */
}

.page-cockfighting-rules-betting__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-cockfighting-rules-betting__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-cockfighting-rules-betting__dark-bg .page-cockfighting-rules-betting__section-title {
  color: #ffffff;
}

.page-cockfighting-rules-betting__light-bg .page-cockfighting-rules-betting__section-title {
  color: #26A9E0;
}

.page-cockfighting-rules-betting__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-cockfighting-rules-betting__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-rules-betting__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-cockfighting-rules-betting__dark-bg .page-cockfighting-rules-betting__sub-title {
  color: #ffffff;
}

.page-cockfighting-rules-betting__list,
.page-cockfighting-rules-betting__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-cockfighting-rules-betting__ordered-list {
  list-style-type: decimal;
}

.page-cockfighting-rules-betting__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-cockfighting-rules-betting__image-item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-cockfighting-rules-betting__faq-list {
  margin-top: 30px;
}

.page-cockfighting-rules-betting__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-cockfighting-rules-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-cockfighting-rules-betting__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-rules-betting__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-cockfighting-rules-betting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-cockfighting-rules-betting__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-cockfighting-rules-betting__faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting-rules-betting__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-cockfighting-rules-betting__text-center {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-cockfighting-rules-betting__hero-section {
    padding: 10px 15px 40px;
  }

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

  .page-cockfighting-rules-betting__description {
    font-size: 1em;
  }

  .page-cockfighting-rules-betting__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-cockfighting-rules-betting__btn-primary,
  .page-cockfighting-rules-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-rules-betting__section {
    padding: 40px 15px;
  }

  .page-cockfighting-rules-betting__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-rules-betting__sub-title {
    font-size: 1.4em;
  }

  .page-cockfighting-rules-betting__text-block,
  .page-cockfighting-rules-betting__list-item {
    font-size: 0.95em;
  }

  .page-cockfighting-rules-betting__image-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure all images are responsive */
  .page-cockfighting-rules-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Ensure min size on mobile as well */
    min-height: 200px; /* Ensure min size on mobile as well */
  }

  .page-cockfighting-rules-betting__container,
  .page-cockfighting-rules-betting__section,
  .page-cockfighting-rules-betting__hero-section,
  .page-cockfighting-rules-betting__image-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-cockfighting-rules-betting__video-section {
    padding-top: 10px !important;
  }
}

/* Details/Summary specific styles for better UX */
details.page-cockfighting-rules-betting__faq-item[open] .page-cockfighting-rules-betting__faq-question {
  background-color: rgba(255, 255, 255, 0.2); /* Slightly darker when open */
}