.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text on light body background */
  background-color: #f9f9f9;
  padding-top: 120px; /* Space for fixed header */
}

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

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #0A2463);
  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: var(--secondary-color, #FFD700);
  border-radius: 2px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-cockfighting__btn-primary {
  background: var(--primary-color, #0A2463);
  color: #ffffff;
}

.page-cockfighting__btn-primary:hover {
  background: #071a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-secondary {
  background: var(--secondary-color, #FFD700);
  color: #0A2463;
}

.page-cockfighting__btn-secondary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-small {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
  background: var(--primary-color, #0A2463);
  color: #ffffff;
  margin-top: 15px;
}

.page-cockfighting__btn-small:hover {
  background: #071a4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-cockfighting__hero-section {
  background: linear-gradient(135deg, var(--primary-color, #0A2463), #1a3a7a);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

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

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

.page-cockfighting__content-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 50%;
  height: auto;
  display: block;
}

.page-cockfighting__text-block {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #444;
}

.page-cockfighting__text-block strong {
  color: var(--primary-color, #0A2463);
}

/* Features Section */
.page-cockfighting__features-section {
  padding: 80px 0;
  background-color: var(--primary-color, #0A2463);
  color: #ffffff;
}

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

.page-cockfighting__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__feature-item h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color, #FFD700);
}

.page-cockfighting__feature-item p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.page-cockfighting__type-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__type-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #0A2463);
  padding: 20px 20px 10px;
}

.page-cockfighting__type-card p {
  font-size: 15px;
  color: #555;
  padding: 0 20px 20px;
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 80px 0;
  background-color: var(--primary-color, #0A2463);
  color: #ffffff;
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-cockfighting__guide-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__guide-list li h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 15px;
}

.page-cockfighting__guide-list li p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

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

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

.page-cockfighting__tip-card {
  background: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__tip-image {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__tip-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color, #0A2463);
  margin-bottom: 15px;
}

.page-cockfighting__tip-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* CTA Section */
.page-cockfighting__cta-section {
  background: linear-gradient(45deg, #0A2463, #1a3a7a);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__cta-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color, #FFD700);
}

.page-cockfighting__cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 42px;
  }
  .page-cockfighting__section-title {
    font-size: 32px;
  }
  .page-cockfighting__cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    padding-top: 100px !important;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-cockfighting__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__hero-section,
  .page-cockfighting__intro-section,
  .page-cockfighting__features-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__cta-section {
    padding: 60px 0;
  }

  .page-cockfighting__hero-title {
    font-size: 32px;
  }

  .page-cockfighting__hero-subtitle,
  .page-cockfighting__cta-description {
    font-size: 18px;
  }

  .page-cockfighting__hero-cta,
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting__btn-small,
  .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 !important;
    font-size: 16px !important;
  }

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

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

  .page-cockfighting__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-cockfighting__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-cockfighting__feature-icon,
  .page-cockfighting__tip-image {
    width: 80px;
    height: auto;
  }

  .page-cockfighting__feature-item h3,
  .page-cockfighting__type-card h3,
  .page-cockfighting__guide-list li h3,
  .page-cockfighting__tip-card h3 {
    font-size: 20px;
  }

  .page-cockfighting__feature-item p,
  .page-cockfighting__type-card p,
  .page-cockfighting__guide-list li p,
  .page-cockfighting__tip-card p {
    font-size: 15px;
  }

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

  .page-cockfighting__cta-title {
    font-size: 32px;
  }
  
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__intro-section .page-cockfighting__container,
  .page-cockfighting__features-section .page-cockfighting__container,
  .page-cockfighting__types-section .page-cockfighting__container,
  .page-cockfighting__guide-section .page-cockfighting__container,
  .page-cockfighting__tips-section .page-cockfighting__container,
  .page-cockfighting__cta-section .page-cockfighting__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 28px;
  }
  .page-cockfighting__section-title {
    font-size: 24px;
  }
  .page-cockfighting__cta-title {
    font-size: 28px;
  }
  .page-cockfighting__hero-subtitle,
  .page-cockfighting__cta-description {
    font-size: 16px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
  }
}