.page-cockfighting {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
}

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

.page-cockfighting__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding to avoid header overlap */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0D0E12;
}

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-cockfighting__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #FFB04D 0%, #FF8C1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__cta-button--centered {
  margin-top: 30px;
}

.page-cockfighting__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FF8C1A;
  background: linear-gradient(90deg, #FFB04D 0%, #FF8C1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-cockfighting__about-section,
.page-cockfighting__features-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__latest-articles-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-cockfighting__about-section .page-cockfighting__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-cockfighting__about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-cockfighting__text-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #FFF3E6;
}

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

.page-cockfighting__feature-card {
  background-color: #17191F;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting__feature-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-cockfighting__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6;
}

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

.page-cockfighting__benefit-item {
  background-color: #17191F;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-cockfighting__benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-cockfighting__benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6;
}

.page-cockfighting__why-choose-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__step-card {
  background-color: #17191F;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-cockfighting__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-cockfighting__step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6;
}

.page-cockfighting__how-to-play-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__article-card {
  background-color: #17191F;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-decoration: none;
  color: #FFF3E6;
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-cockfighting__article-card:hover {
  transform: translateY(-5px);
}

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

.page-cockfighting__article-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px;
  color: #FFA53A;
}

.page-cockfighting__article-meta {
  font-size: 0.85rem;
  color: #FFB04D;
  padding: 0 15px 15px;
}

.page-cockfighting__view-all-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting__view-all-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  background-color: #17191F;
  color: #FFA53A;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #FFB04D;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-cockfighting__faq-answer p {
  padding-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting__hero-image {
    height: 500px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-cockfighting__section-title {
    font-size: 2rem;
  }
  .page-cockfighting__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting__about-image {
    margin-bottom: 30px;
  }
  .page-cockfighting__why-choose-image,
  .page-cockfighting__how-to-play-image {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-image {
    height: 400px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-cockfighting__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__feature-grid,
  .page-cockfighting__benefits-list,
  .page-cockfighting__steps-grid,
  .page-cockfighting__article-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__about-image,
  .page-cockfighting__feature-image,
  .page-cockfighting__why-choose-image,
  .page-cockfighting__how-to-play-image,
  .page-cockfighting__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__hero-section img,
  .page-cockfighting__about-section img,
  .page-cockfighting__features-section img,
  .page-cockfighting__why-choose-section img,
  .page-cockfighting__how-to-play-section img,
  .page-cockfighting__latest-articles-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-cockfighting__hero-image {
    height: 250px;
  }
  .page-cockfighting__main-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9rem;
  }
  .page-cockfighting__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.5rem;
  }
  .page-cockfighting__feature-card,
  .page-cockfighting__benefit-item,
  .page-cockfighting__step-card,
  .page-cockfighting__article-card {
    padding: 15px;
  }
  .page-cockfighting__card-title,
  .page-cockfighting__benefit-title,
  .page-cockfighting__step-title,
  .page-cockfighting__article-card h3 {
    font-size: 1.2rem;
  }
  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting__faq-answer p {
    font-size: 0.9rem;
  }
}