.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
}

.page-cockfighting__section-spacing {
  padding: 40px 0;
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting__section-title--light {
  color: #FFFFFF;
}

.page-cockfighting__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555555;
}

.page-cockfighting__section-description--light {
  color: #f0f0f0;
}

.page-cockfighting__content-area {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-cockfighting__content-area p {
  margin-bottom: 15px;
}

.page-cockfighting__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  background-color: #26A9E0;
  display: flex;
  flex-direction: column;
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared.css */
}

.page-cockfighting__hero-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-cockfighting__hero-content-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  box-sizing: border-box;
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 900px;
  color: #FFFFFF;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-cockfighting__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-cockfighting__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-cockfighting__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-cockfighting__btn-primary--large {
  min-width: 250px;
}

/* Dark Section Styling */
.page-cockfighting__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Grid Layouts */
.page-cockfighting__grid {
  display: grid;
  gap: 30px;
}

.page-cockfighting__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-cockfighting__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Card Styling */
.page-cockfighting__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__card--dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__card--dark:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__card--dark .page-cockfighting__card-title {
  color: #FFFFFF;
}

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

/* Step-by-step Guide */
.page-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #e0f2f7;
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  color: #333333;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

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

/* Advantage Cards */
.page-cockfighting__advantage-card {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* Promotion Cards */
.page-cockfighting__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-cockfighting__card--promo {
  background-color: #FFFFFF;
  color: #333333;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card--promo .page-cockfighting__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.page-cockfighting__card--promo .page-cockfighting__card-title {
  font-size: 1.4em;
  padding: 15px 25px 5px;
  color: #26A9E0;
  text-align: left;
}

.page-cockfighting__card--promo p {
  padding: 0 25px 20px;
  text-align: left;
  font-size: 0.95em;
  line-height: 1.6;
}

.page-cockfighting__card--promo .page-cockfighting__btn-secondary {
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  text-align: center;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  border-bottom: 1px solid #d0d0d0;
  background-color: #eaf6fa;
  color: #26A9E0;
}

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

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

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

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

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

.page-cockfighting__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  text-align: left;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 2em;
  }

  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-cockfighting__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-cockfighting__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .page-cockfighting__promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

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

  .page-cockfighting__section-spacing {
    padding: 30px 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: 15px;
  }

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

  /* Hero Section Mobile */
  .page-cockfighting__hero-section {
    flex-direction: column;
    padding-top: 10px !important; /* Small top padding, assuming body has padding-top from shared.css */
  }

  .page-cockfighting__hero-image-container {
    height: 250px; /* Fixed height for mobile hero image container */
  }

  .page-cockfighting__hero-image {
    object-fit: contain !important; /* Mobile hero image: contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
    width: 100% !important;
    height: 100% !important;
  }

  .page-cockfighting__hero-content-wrapper {
    padding: 25px 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

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

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting a[class*="button"],
  .page-cockfighting 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: 12px 20px;
    font-size: 1em;
  }

  /* General Image & Container Mobile */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  /* Grid Layouts Mobile */
  .page-cockfighting__grid--3-cols,
  .page-cockfighting__grid--2-cols,
  .page-cockfighting__steps-grid,
  .page-cockfighting__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__card,
  .page-cockfighting__step-item,
  .page-cockfighting__advantage-card,
  .page-cockfighting__card--promo {
    padding: 20px;
  }

  .page-cockfighting__card-title,
  .page-cockfighting__step-title,
  .page-cockfighting__advantage-title {
    font-size: 1.3em;
  }

  .page-cockfighting__card--promo .page-cockfighting__card-title {
    font-size: 1.2em;
    padding: 10px 20px 5px;
  }

  .page-cockfighting__card--promo p {
    padding: 0 20px 15px;
  }

  .page-cockfighting__card--promo .page-cockfighting__btn-secondary {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

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

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