.page-cockfighting {
  font-family: Arial, sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

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

.page-cockfighting__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top: -100px; /* Pull content up over image for visual flow, but not overlapping */
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 8px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}

.page-cockfighting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #D6E2FF;
  color: #2F6BFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #1F2D3D;
}

.page-cockfighting__dark-section .page-cockfighting__section-title,
.page-cockfighting__dark-section .page-cockfighting__text-block {
  color: #ffffff;
}

.page-cockfighting__about-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__strategies-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-bottom {
  padding: 60px 0;
}

.page-cockfighting__about-section {
  background-color: #F4F7FB;
}

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

.page-cockfighting__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-cockfighting__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-cockfighting__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__types-section {
  background-color: #F4F7FB;
}

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

.page-cockfighting__type-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__card-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-cockfighting__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
}

.page-cockfighting__guide-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-left: 5px solid #2F6BFF;
}

.page-cockfighting__guide-step-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-cockfighting__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  text-align: left;
}

.page-cockfighting__guide-item a {
  color: #6FA3FF;
  text-decoration: underline;
}

.page-cockfighting__center-cta {
  text-align: center;
  margin-top: 40px;
}

.page-cockfighting__strategies-section {
  background-color: #2F6BFF;
}

.page-cockfighting__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-cockfighting__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-cockfighting__strategy-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-cockfighting__strategy-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  text-align: left;
}

.page-cockfighting__promotions-section {
  background-color: #F4F7FB;
}

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

.page-cockfighting__promo-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border: 1px solid #D6E2FF;
}

.page-cockfighting__promo-card .page-cockfighting__btn-primary {
  margin-top: 20px;
  display: inline-block;
}

.page-cockfighting__faq-section {
  background-color: #F4F7FB;
}

.page-cockfighting__faq-list {
  max-width: 800px;
  margin: 50px auto;
}

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

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #1F2D3D;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-left: 15px;
}

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

.page-cockfighting__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

.page-cockfighting__cta-bottom {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
  text-align: center;
  color: #ffffff;
  padding: 80px 0;
}

.page-cockfighting__cta-bottom .page-cockfighting__section-title {
  color: #ffffff;
}

.page-cockfighting__cta-bottom .page-cockfighting__text-block {
  color: #ffffff;
  margin-bottom: 40px;
}

.page-cockfighting__cta-bottom .page-cockfighting__btn-primary {
  background: #ffffff;
  color: #2F6BFF;
  border: none;
}

.page-cockfighting__cta-bottom .page-cockfighting__btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: 2.8em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }

  .page-cockfighting__hero-image {
    max-height: 400px;
  }

  .page-cockfighting__hero-content {
    margin-top: -60px;
    padding: 15px;
    max-width: 95%;
  }

  .page-cockfighting__main-title {
    font-size: 2em; /* Smaller font size for mobile H1 */
    margin-bottom: 10px;
  }

  .page-cockfighting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__about-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__strategies-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-bottom {
    padding: 40px 0;
  }

  .page-cockfighting__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__types-grid,
  .page-cockfighting__promos-grid,
  .page-cockfighting__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-cockfighting__feature-item,
  .page-cockfighting__type-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__strategy-item {
    padding: 20px;
  }

  .page-cockfighting__feature-icon,
  .page-cockfighting__card-image {
    margin-bottom: 15px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__card-title,
  .page-cockfighting__guide-step-title,
  .page-cockfighting__strategy-title {
    font-size: 1.3em;
  }

  .page-cockfighting__guide-item {
    padding: 20px;
  }

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

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

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

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}