.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* Default light text for dark body background */
  background-color: var(--Deep-Navy); /* Ensure body background is dark */
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: var(--Gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  color: var(--Text-Secondary);
  text-align: justify;
  margin-bottom: 20px;
}

.page-cockfighting__highlight {
  color: var(--Glow);
  font-weight: bold;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-cockfighting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--Glow);
  border: 2px solid var(--Glow);
}

.page-cockfighting__btn-secondary:hover {
  background: var(--Glow);
  color: var(--Deep-Navy);
  transform: translateY(-2px);
}

.page-cockfighting__btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-cockfighting__btn-small:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow */
  background-color: var(--Deep-Navy); /* Dark background for text contrast */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-50px);
}

.page-cockfighting__main-title {
  color: var(--Gold);
  font-size: clamp(2em, 4vw, 3.2em);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-cockfighting__description {
  font-size: 1.15em;
  color: var(--Text-Secondary);
  margin-bottom: 30px;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Intro Section */
.page-cockfighting__intro-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-cockfighting__intro-section .page-cockfighting__section-title {
  color: var(--Primary-Color); /* Brand color for title */
}

.page-cockfighting__intro-section .page-cockfighting__text-block {
  color: #333333;
}

.page-cockfighting__intro-section a {
  color: var(--Primary-Color);
  text-decoration: underline;
}

/* Features Section */
.page-cockfighting__features-section {
  background-color: var(--Deep-Navy);
  padding: 80px 0;
  color: var(--Text-Main);
}

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

.page-cockfighting__feature-card {
  background-color: var(--Card-BG);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Border);
}

.page-cockfighting__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 1.5em;
  color: var(--Glow);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__feature-description {
  color: var(--Text-Secondary);
  font-size: 1em;
}

/* Guide Section */
.page-cockfighting__guide-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #333333;
}

.page-cockfighting__guide-section .page-cockfighting__section-title {
  color: var(--Primary-Color);
}

.page-cockfighting__guide-section .page-cockfighting__text-block {
  color: #333333;
}

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

.page-cockfighting__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  color: var(--Primary-Color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__step-description {
  color: #555555;
  margin-bottom: 20px;
}

/* Gameshow Section */
.page-cockfighting__gameshow-section {
  background-color: var(--Deep-Navy);
  padding: 80px 0;
  color: var(--Text-Main);
}

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

.page-cockfighting__gameshow-item {
  background-color: var(--Card-BG);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Border);
}

.page-cockfighting__gameshow-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-cockfighting__gameshow-title {
  font-size: 1.4em;
  color: var(--Glow);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__gameshow-description {
  color: var(--Text-Secondary);
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #333333;
}

.page-cockfighting__promotions-section .page-cockfighting__section-title {
  color: var(--Primary-Color);
}

.page-cockfighting__promotions-section .page-cockfighting__text-block {
  color: #333333;
}

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

.page-cockfighting__promotion-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-cockfighting__promotion-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-cockfighting__promotion-title {
  font-size: 1.4em;
  color: var(--Primary-Color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__promotion-description {
  color: #555555;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-cockfighting__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Responsible Gaming Section */
.page-cockfighting__responsible-gaming-section {
  background-color: var(--Deep-Navy);
  padding: 80px 0;
  color: var(--Text-Main);
}

.page-cockfighting__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__responsible-list li {
  background-color: var(--Card-BG);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--Border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__responsible-list li p {
  color: var(--Text-Secondary);
  margin: 0;
  font-size: 1em;
}

.page-cockfighting__responsible-list li strong {
  color: var(--Glow);
  font-size: 1.1em;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #333333;
}

.page-cockfighting__faq-section .page-cockfighting__section-title {
  color: var(--Primary-Color);
}

.page-cockfighting__faq-section .page-cockfighting__text-block {
  color: #333333;
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--Primary-Color);
  cursor: pointer;
  list-style: none; /* For <summary> */
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for <summary> */
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--Glow);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  content: '−';
}

.page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

/* Final CTA Section */
.page-cockfighting__cta-final-section {
  background-color: var(--Deep-Navy);
  padding: 80px 0;
  text-align: center;
  color: var(--Text-Main);
}

.page-cockfighting__cta-final-section .page-cockfighting__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--Text-Secondary);
}

/* Universal image styling */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    margin-top: -80px;
    transform: translateY(-40px);
  }
}

@media (max-width: 768px) {
  /* HERO Section Mobile */
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
  }
  .page-cockfighting__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
    transform: translateY(-30px);
    border-radius: 10px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-cockfighting__description {
    font-size: 1em;
  }
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  /* General Containers and Text Mobile */
  .page-cockfighting__container {
    padding: 30px 15px;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .page-cockfighting__text-block {
    font-size: 0.95em;
  }

  /* Features Section Mobile */
  .page-cockfighting__features-grid,
  .page-cockfighting__guide-steps,
  .page-cockfighting__gameshow-grid,
  .page-cockfighting__promotions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__feature-card,
  .page-cockfighting__step-item,
  .page-cockfighting__gameshow-item,
  .page-cockfighting__promotion-card {
    padding: 20px;
  }
  .page-cockfighting__feature-icon {
    max-width: 100%;
  }

  /* Images Mobile */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Buttons Mobile */
  .page-cockfighting__btn-small {
    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;
  }

  /* FAQ Section Mobile */
  .page-cockfighting__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }

  /* Other Content Modules Mobile */
  .page-cockfighting__responsible-list li {
    padding: 15px;
  }
}