.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

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

.page-cockfighting__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-cockfighting__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

.page-cockfighting__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

.page-cockfighting__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.page-cockfighting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-cockfighting__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Intro Section */
.page-cockfighting__intro-section,
.page-cockfighting__strategy-section,
.page-cockfighting__types-section,
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-cockfighting__rules-section,
.page-cockfighting__advantages-section,
.page-cockfighting__registration-section,
.page-cockfighting__conclusion-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-cockfighting__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__content-grid .page-cockfighting__text-block {
  flex: 1;
}

.page-cockfighting__content-grid .page-cockfighting__image-block {
  flex: 1;
  text-align: center;
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.page-cockfighting__text-block h3 {
  color: #FFD700;
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting__text-block p,
.page-cockfighting__text-block li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-cockfighting__text-block ul,
.page-cockfighting__text-block ol {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-cockfighting__text-block ul li::before {
  content: '⚡';
  color: #FFD700;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-cockfighting__rules-section .page-cockfighting__section-title,
.page-cockfighting__advantages-section .page-cockfighting__section-title,
.page-cockfighting__registration-section .page-cockfighting__section-title,
.page-cockfighting__conclusion-section .page-cockfighting__section-title {
  color: #1A202C;
}

.page-cockfighting__rules-section .page-cockfighting__section-description,
.page-cockfighting__advantages-section .page-cockfighting__section-description,
.page-cockfighting__registration-section .page-cockfighting__section-description,
.page-cockfighting__conclusion-section .page-cockfighting__section-description {
  color: #555555;
}

.page-cockfighting__rules-section .page-cockfighting__text-block h3 {
  color: #1A202C;
}

.page-cockfighting__rules-section .page-cockfighting__text-block ul li::before {
  content: '✅';
}

/* Types Section */
.page-cockfighting__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  color: #f0f0f0;
  padding: 0 20px;
}

/* Advantages Section */
.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__feature-item {
  text-align: center;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-cockfighting__feature-text {
  font-size: 1rem;
  color: #555555;
}

/* Registration Section */
.page-cockfighting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-cockfighting__step-item {
  text-align: center;
  background: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-cockfighting__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__step-title {
  font-size: 1.4rem;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-cockfighting__step-text {
  font-size: 1rem;
  color: #555555;
}

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

.page-cockfighting__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

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

.page-cockfighting__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1A202C;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-cockfighting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-cockfighting__faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 3rem;
  }
  .page-cockfighting__hero-description {
    font-size: 1.2rem;
  }
  .page-cockfighting__section-title {
    font-size: 2.2rem;
  }
  .page-cockfighting__content-grid {
    flex-direction: column;
  }
  .page-cockfighting__content-grid .page-cockfighting__image-block {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__hero-section {
    height: auto;
    min-height: 600px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }
  .page-cockfighting__hero-title {
    font-size: 2.5rem;
  }
  .page-cockfighting__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .page-cockfighting__intro-section,
  .page-cockfighting__rules-section,
  .page-cockfighting__types-section,
  .page-cockfighting__advantages-section,
  .page-cockfighting__strategy-section,
  .page-cockfighting__registration-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 50px 0;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__text-block h3 {
    font-size: 1.5rem;
  }
  .page-cockfighting__text-block p,
  .page-cockfighting__text-block li {
    font-size: 0.95rem;
  }
  .page-cockfighting__cards-grid,
  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__card-title {
    font-size: 1.3rem;
  }
  .page-cockfighting__card-image {
    height: 200px;
  }
  .page-cockfighting__feature-item,
  .page-cockfighting__step-item {
    padding: 20px;
  }
  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting__faq-answer {
    padding: 15px 20px;
  }
  /* Mobile image responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Mobile video responsiveness */
  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  /* All containers containing images/videos on mobile */
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__content-grid,
  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid,
  .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;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-cockfighting__hero-section .page-cockfighting__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-cockfighting__hero-cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-cockfighting__hero-cta-buttons .page-cockfighting__btn-primary,
  .page-cockfighting__hero-cta-buttons .page-cockfighting__btn-secondary {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 2rem;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.5rem;
  }
  .page-cockfighting__feature-item,
  .page-cockfighting__step-item {
    padding: 15px;
  }
  .page-cockfighting__feature-icon,
  .page-cockfighting__step-icon {
    width: 80px;
    height: 80px;
  }
}