.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text on default light body background */
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-cockfighting__section-title {
  color: #0A2463;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-cockfighting__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-cockfighting__button--cta {
  background-color: #E3B505;
  color: #0A2463;
}

.page-cockfighting__button--cta:hover {
  background-color: #c09a04;
  color: #ffffff;
}

.page-cockfighting__button--outline {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-cockfighting__button--outline:hover {
  background-color: #0A2463;
  color: #ffffff;
}

/* Hero Section */
.page-cockfighting__hero-section {
  background: linear-gradient(135deg, #0A2463, #3a5c9a);
  padding: 100px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

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

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

.page-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-button {
  display: inline-block;
  padding: 18px 35px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.page-cockfighting__hero-button--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-cockfighting__hero-button--primary:hover {
  background-color: #c09a04;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-cockfighting__hero-button--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-cockfighting__hero-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-cockfighting__hero-image-wrapper {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-cockfighting__introduction-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Features Section */
.page-cockfighting__features-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-cockfighting__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-icon {
  width: 250px; /* Min size 200x200 */
  height: 250px; /* Min size 200x200 */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-cockfighting__card-description {
  font-size: 1em;
  color: #555555;
}

/* How To Play Section */
.page-cockfighting__how-to-play-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-cockfighting__step-list {
  list-style-type: decimal;
  padding-left: 30px;
  margin-top: 30px;
}

.page-cockfighting__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-cockfighting__list-item strong {
  color: #0A2463;
}

.page-cockfighting__list-item a {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting__list-item a:hover {
  text-decoration: underline;
}

/* Match Types Section */
.page-cockfighting__match-types-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-cockfighting__type-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__type-image {
  width: 100%;
  height: 250px; /* Ensure images are large and consistent */
  object-fit: cover;
}

.page-cockfighting__type-card .page-cockfighting__card-title {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-cockfighting__type-card .page-cockfighting__card-description {
  padding: 0 20px 30px;
  color: #555555;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-cockfighting__promo-list {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 30px;
}

.page-cockfighting__promo-list .page-cockfighting__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-cockfighting__promo-list .page-cockfighting__list-item strong {
  color: #E3B505;
}

/* Security Section */
.page-cockfighting__security-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-cockfighting__security-section .page-cockfighting__section-title {
  color: #E3B505;
}

.page-cockfighting__security-section .page-cockfighting__section-title::after {
  background-color: #ffffff;
}

.page-cockfighting__security-section .page-cockfighting__text-content {
  color: #f0f0f0;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-cockfighting__faq-accordion {
  margin-top: 40px;
}

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

.page-cockfighting__accordion-header {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  background-color: #0A2463;
  color: #E3B505;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-cockfighting__accordion-header:hover {
  background-color: #1a3c7c;
}

.page-cockfighting__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-cockfighting__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-cockfighting__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting__accordion-content p {
  margin: 15px 0;
  color: #555555;
}

/* Call to Action Section */
.page-cockfighting__cta-section {
  background: linear-gradient(45deg, #0A2463, #E3B505);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-cockfighting__cta-content {
  max-width: 800px;
}

.page-cockfighting__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.page-cockfighting__button--join-now {
  background-color: #ffffff;
  color: #0A2463;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-cockfighting__button--join-now:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-cockfighting__cta-small-text {
  margin-top: 25px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-cockfighting__cta-small-text a {
  color: #E3B505;
  font-weight: bold;
  text-decoration: none;
}

.page-cockfighting__cta-small-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting__hero-section {
    flex-direction: column;
    padding: 80px 20px;
  }

  .page-cockfighting__hero-content {
    order: 2;
  }

  .page-cockfighting__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .page-cockfighting__hero-title {
    font-size: 2.8em;
  }

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

  .page-cockfighting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-cockfighting__cta-title {
    font-size: 2.2em;
  }

  .page-cockfighting__button--join-now {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-cockfighting__text-content, .page-cockfighting__list-item, .page-cockfighting__card-description {
    font-size: 0.95em;
  }

  .page-cockfighting__feature-icon {
    width: 200px;
    height: 200px;
  }

  .page-cockfighting__type-image {
    height: 200px;
  }

  .page-cockfighting__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
  }

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

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

  .page-cockfighting__button--join-now {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.8em;
  }

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

  .page-cockfighting__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-cockfighting__feature-icon {
    width: 180px;
    height: 180px;
  }

  .page-cockfighting__type-image {
    height: 180px;
  }

  .page-cockfighting__accordion-header {
    font-size: 1em;
    padding: 15px 18px;
  }

  .page-cockfighting__cta-title {
    font-size: 1.6em;
  }

  .page-cockfighting__cta-description {
    font-size: 0.9em;
  }
}