.page-cockfighting {
  padding-top: 10px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-cockfighting__hero-section {
  position: relative;
  text-align: center;
  padding: 0;
  margin-top: 0;
  margin-bottom: 40px;
  max-width: 100%;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9; /* For 1920x1080 */
}

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

.page-cockfighting__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-cockfighting__description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 25px;
  color: #FFF6D6;
}

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

.page-cockfighting__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #111111; /* Text color for buttons */
}

.page-cockfighting__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-cockfighting__button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-cockfighting__button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 1px solid #3A2A12;
}

.page-cockfighting__button--secondary:hover {
  background-color: #3A2A12;
  color: #FFD36B;
  transform: translateY(-2px);
}

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  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: #FFD36B;
  border-radius: 2px;
}

.page-cockfighting__content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
}

.page-cockfighting__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-cockfighting__text-content {
  flex: 1;
}

.page-cockfighting__text-content p {
  margin-bottom: 15px;
}

.page-cockfighting__image-container {
  flex: 1;
  min-width: 280px; /* Ensure images are not too small */
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-cockfighting__feature-card {
  background-color: #111111;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  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.3);
}

.page-cockfighting__feature-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-cockfighting__step-item {
  background-color: #111111;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
  font-size: 1.2rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__step-item a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-cockfighting__step-item a:hover {
  color: #FFD36B;
}

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

.page-cockfighting__text-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting__text-content ul li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-cockfighting__text-content ul li::before {
  content: '✓';
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting__faq-list {
  margin-top: 30px;
}

.page-cockfighting__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__faq-question {
  font-size: 1.15rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__faq-answer {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-cockfighting__faq-answer a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-cockfighting__faq-answer a:hover {
  color: #FFD36B;
}

.page-cockfighting__join-us {
  text-align: center;
  padding: 40px 20px;
  background-color: #111111;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__join-us .page-cockfighting__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (max-width: 849px) {
  .page-cockfighting__content-wrapper {
    flex-direction: column;
  }

  .page-cockfighting__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-cockfighting__image-container {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 20px;
  }

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

  .page-cockfighting__button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__section {
    padding: 15px;
    margin: 30px auto;
  }

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

  .page-cockfighting__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-cockfighting__description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .page-cockfighting__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting__text-content ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-cockfighting__description {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .page-cockfighting__hero-actions {
    gap: 10px;
  }

  .page-cockfighting__button {
    padding: 10px 20px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__step-item,
  .page-cockfighting__faq-item {
    padding: 20px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__step-title,
  .page-cockfighting__faq-question {
    font-size: 1.1rem;
  }

  .page-cockfighting__faq-answer {
    font-size: 0.9rem;
  }
}