.page-cockfighting {
  background-color: #0A0A0A;
  color: #FFF6D6;
  padding-top: 10px; /* Minimal padding-top, body handles header offset */
}

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

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-cockfighting__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

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

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

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-cockfighting__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(242, 193, 78, 0.3);
}

.page-cockfighting__cta-button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-cockfighting__cta-button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(242, 193, 78, 0.3);
}

.page-cockfighting__about-section,
.page-cockfighting__why-ok3655-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__cta-section--bottom {
  padding: 60px 0;
  text-align: center;
}

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

.page-cockfighting__text-content {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #FFF6D6;
}

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

.page-cockfighting__feature-card {
  background-color: #111111;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

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

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

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

.page-cockfighting__image-wrapper {
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
}

.page-cockfighting__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  filter: none; /* Ensure no image filters are applied */
  min-width: 200px; /* Minimum width for content images */
  min-height: 200px; /* Minimum height for content images */
}

.page-cockfighting__image-caption {
  font-size: 0.85rem;
  color: #999;
  margin-top: 15px;
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 800px;
  text-align: left;
}

.page-cockfighting__step-item {
  background-color: #111111;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
  position: relative;
  padding-left: 65px;
}

.page-cockfighting__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #F2C14E;
  color: #111111;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

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

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

.page-cockfighting__cta-section--bottom {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-cockfighting__description {
    font-size: 1rem;
  }
  .page-cockfighting__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-cockfighting__about-section, 
  .page-cockfighting__why-ok3655-section, 
  .page-cockfighting__how-to-play-section, 
  .page-cockfighting__cta-section--bottom {
    padding: 40px 0;
  }
  .page-cockfighting__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__step-item {
    padding-left: 55px;
  }
  .page-cockfighting__step-item::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    left: 15px;
    top: 20px;
  }
  .page-cockfighting__step-title {
    font-size: 1.1rem;
  }
  .page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__hero-section {
    padding-bottom: 20px;
  }
  .page-cockfighting__hero-banner {
    margin-bottom: 20px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-cockfighting__description {
    font-size: 0.95rem;
  }
  .page-cockfighting__cta-button {
    width: 90%;
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-cockfighting__text-content {
    font-size: 0.9rem;
  }
  .page-cockfighting__feature-card {
    padding: 20px;
  }
  .page-cockfighting__feature-title {
    font-size: 1.1rem;
  }
  .page-cockfighting__feature-description {
    font-size: 0.9rem;
  }
  .page-cockfighting__step-item {
    padding: 20px;
    padding-left: 50px;
  }
  .page-cockfighting__step-item::before {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    left: 15px;
    top: 18px;
  }
  .page-cockfighting__step-title {
    font-size: 1rem;
  }
  .page-cockfighting__step-description {
    font-size: 0.85rem;
  }
  .page-cockfighting__image-caption {
    font-size: 0.8rem;
  }
}