.page-cockfighting {
  font-family: Arial, sans-serif;
  color: var(--text-main-color, #F2FFF6); /* Default to light text for dark background */
  background-color: var(--background-color, #08160F); /* Assume dark background from custom colors */
}

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

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  background-color: var(--background-color, #08160F);
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em); /* Responsive H1 font size */
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section {
  padding: 80px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__dark-section {
  background-color: var(--card-bg-color, #11271B);
}

.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting__section-description {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-cockfighting__card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid var(--border-color, #2E7A4E);
  transition: transform 0.3s ease;
  color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__card-title {
  font-size: 1.4em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__card p {
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

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

.page-cockfighting__step-item {
  text-align: center;
  color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 2px solid var(--glow-color, #57E38D);
  display: block;
}

.page-cockfighting__step-title {
  font-size: 1.5em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__step-item p {
  font-size: 1.05em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

.page-cockfighting__sub-title {
  font-size: 1.6em;
  color: var(--gold-color, #F2C14E);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-cockfighting__list {
  list-style: disc inside;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.05em;
  line-height: 1.8;
}

.page-cockfighting__list li {
  margin-bottom: 10px;
}

.page-cockfighting__content-text {
  font-size: 1.05em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-cockfighting__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-cockfighting__promotion-card {
  background-color: var(--background-color, #08160F);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid var(--deep-green-color, #0A4B2C);
  color: var(--text-main-color, #F2FFF6);
  transition: transform 0.3s ease;
}

.page-cockfighting__promotion-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__promotion-title {
  font-size: 1.3em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__promotion-card p {
  font-size: 0.95em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

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

.page-cockfighting__feature-item {
  background-color: var(--background-color, #08160F);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid var(--divider-color, #1E3A2A);
  color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__feature-title {
  font-size: 1.3em;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__feature-item p {
  font-size: 0.95em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

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

.page-cockfighting__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold-color, #F2C14E);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

.page-cockfighting__faq-answer p {
  margin-bottom: 10px;
}

.page-cockfighting__faq-download-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold-color, #F2C14E);
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-download-button:hover {
  background-color: #e0b040;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }

  .page-cockfighting__main-title {
    font-size: 2em;
  }

  .page-cockfighting__hero-description {
    font-size: 1em;
  }

  .page-cockfighting__cta-button {
    width: 100%;
    max-width: 300px !important; /* Ensure button fits */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__section {
    padding: 60px 0;
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting__section-description {
    font-size: 0.95em;
  }

  .page-cockfighting__card-image,
  .page-cockfighting__step-image,
  .page-cockfighting__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__card,
  .page-cockfighting__step-item,
  .page-cockfighting__promotion-card,
  .page-cockfighting__feature-item,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting__content-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__promotions-grid,
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__sub-title {
    font-size: 1.4em;
  }

  .page-cockfighting__list,
  .page-cockfighting__content-text {
    padding: 0 15px;
    text-align: left;
  }

  .page-cockfighting__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-cockfighting__faq-download-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure all images adhere to min size */
.page-cockfighting img {
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__hero-image {
  min-width: unset;
  min-height: unset;
}

/* Specific overrides for small image placeholders (if any, though prohibited) */
.page-cockfighting__card-icon,
.page-cockfighting__feature-icon {
  min-width: 200px !important; /* Enforce minimum size for any 'icon' like elements */
  min-height: 200px !important;
  width: auto !important;
  height: auto !important;
}