.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-cockfighting__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #F3C54D; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__sub-title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFB04A;
}

.page-cockfighting__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF1E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__highlight {
  color: #F3C54D;
  font-weight: bold;
}

.page-cockfighting__text-link {
  color: #FFB04A;
  text-decoration: underline;
}

.page-cockfighting__text-link:hover {
  color: #F3C54D;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: #140C0C;
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-cockfighting__main-title {
  color: #F3C54D; /* Gold */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__description {
  font-size: 19px;
  color: #FFF1E8;
  margin-bottom: 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #F3C54D 0%, #FFB04A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-button--wide {
  min-width: 250px;
}

.page-cockfighting__cta-button--secondary {
  background: #6A1E1E;
  color: #FFF1E8;
  margin-left: 20px;
}

.page-cockfighting__cta-button--secondary:hover {
  background: #7E0D0D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* General Section Styles */
.page-cockfighting__introduction-section,
.page-cockfighting__rules-section,
.page-cockfighting__promotions-section,
.page-cockfighting__conclusion-section {
  padding: 80px 0;
}

.page-cockfighting__types-section,
.page-cockfighting__benefits-section,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: #2A1212; /* Card BG */
}

.page-cockfighting__dark-bg {
  background-color: #140C0C; /* Background */
}

.page-cockfighting__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-cockfighting__list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFB04A;
  border-radius: 5px;
  font-size: 17px;
  color: #FFF1E8;
}

.page-cockfighting__list li strong {
  color: #F3C54D;
}

/* Card Grid */
.page-cockfighting__card-grid,
.page-cockfighting__feature-grid,
.page-cockfighting__promotion-cards,
.page-cockfighting__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__card,
.page-cockfighting__feature-card,
.page-cockfighting__promotion-card,
.page-cockfighting__tip-card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__card:hover,
.page-cockfighting__feature-card:hover,
.page-cockfighting__promotion-card:hover,
.page-cockfighting__tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__card img,
.page-cockfighting__promotion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__card-title,
.page-cockfighting__feature-title,
.page-cockfighting__promotion-title,
.page-cockfighting__tip-title {
  font-size: 22px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-cockfighting__card-text,
.page-cockfighting__feature-text,
.page-cockfighting__promotion-text,
.page-cockfighting__tip-text {
  font-size: 16px;
  color: #FFF1E8;
}

.page-cockfighting__read-more {
  display: inline-block;
  margin-top: 20px;
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFB04A;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-cockfighting__read-more:hover {
  background: #FFB04A;
  color: #140C0C;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3C54D; /* Gold */
  font-weight: bold;
  font-size: 18px;
}

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

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8;
}

details.page-cockfighting__faq-item[open] .page-cockfighting__faq-qtext {
  color: #F3C54D;
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.2); /* Slightly darker background for answer */
  border-radius: 0 0 10px 10px;
  font-size: 17px;
  color: #FFF1E8;
}

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

/* Responsive Styles */
@media (min-width: 769px) {
  .page-cockfighting__content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-cockfighting__content-grid .page-cockfighting__image-block {
    order: 2; /* Image on right for introduction */
  }

  .page-cockfighting__rules-section .page-cockfighting__content-grid .page-cockfighting__image-block {
    order: 1; /* Image on left for rules */
  }
}

@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .page-cockfighting__description {
    font-size: 17px;
  }
  .page-cockfighting__cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-cockfighting__card-title,
  .page-cockfighting__feature-title,
  .page-cockfighting__promotion-title,
  .page-cockfighting__tip-title {
    font-size: 20px;
  }
  .page-cockfighting__card img,
  .page-cockfighting__promotion-card img {
    
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__hero-image img {
    border-radius: 8px;
  }

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

  .page-cockfighting__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__cta-button--secondary {
    margin-left: 0;
  }

  .page-cockfighting__cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-cockfighting__sub-title {
    font-size: 24px;
  }

  .page-cockfighting__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__rules-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__conclusion-section,
  .page-cockfighting__types-section,
  .page-cockfighting__benefits-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__faq-section {
    padding: 50px 0;
  }

  .page-cockfighting__card-grid,
  .page-cockfighting__feature-grid,
  .page-cockfighting__promotion-cards,
  .page-cockfighting__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__card,
  .page-cockfighting__feature-card,
  .page-cockfighting__promotion-card,
  .page-cockfighting__tip-card {
    padding: 20px;
  }

  .page-cockfighting__card img,
  .page-cockfighting__promotion-card img {
    
    border-radius: 6px;
  }

  .page-cockfighting__card-title,
  .page-cockfighting__feature-title,
  .page-cockfighting__promotion-title,
  .page-cockfighting__tip-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .page-cockfighting__card-text,
  .page-cockfighting__feature-text,
  .page-cockfighting__promotion-text,
  .page-cockfighting__tip-text {
    font-size: 15px;
  }

  .page-cockfighting__list li {
    font-size: 15px;
    padding: 12px 15px;
  }

  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-cockfighting__faq-qtext {
    font-size: 16px;
  }

  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Mobile image and container responsiveness */
  .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__content-grid,
  .page-cockfighting__feature-grid,
  .page-cockfighting__promotion-cards,
  .page-cockfighting__tips-grid,
  .page-cockfighting__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
  }
}