.page-cockfighting {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

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

.page-cockfighting__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5; /* 1920x600 */
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

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

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

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

.page-cockfighting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  color: #111111; /* Dark text for light button */
}

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

.page-cockfighting__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-cockfighting__btn--secondary {
  background-color: transparent;
  border: 2px solid #F2C14E; /* Main color as border */
  color: #FFF6D6;
}

.page-cockfighting__btn--secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

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

.page-cockfighting__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color */
  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; /* Auxiliary color */
  border-radius: 2px;
}

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

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

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

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

.page-cockfighting__image-block {
  flex: 1;
  text-align: center;
}

.page-cockfighting__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin: 0 auto;
}

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

.page-cockfighting__feature-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 15px;
}

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

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
}

.page-cockfighting__steps-list li {
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
}

.page-cockfighting__steps-list li:last-child {
  margin-bottom: 0;
}

.page-cockfighting__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: -15px;
  top: 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
  padding-left: 35px;
}

.page-cockfighting__steps-list p {
  padding-left: 35px;
}

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

.page-cockfighting__card--bet-type {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-cockfighting__card-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-cockfighting__card--bet-type p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tip-counter;
}

.page-cockfighting__tips-list li {
  background-color: #111111; /* Card BG */
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-cockfighting__tips-list li::before {
  content: '✔️'; /* Unicode checkmark */
  font-size: 1.2rem;
  color: #FFD36B; /* Glow color */
  flex-shrink: 0;
}

.page-cockfighting__tips-list li p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-cockfighting__faq-item {
  background-color: #111111; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  margin-bottom: 20px;
}

.page-cockfighting__faq-item:last-child {
  margin-bottom: 0;
}

.page-cockfighting__faq-question {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

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

.page-cockfighting__section--conclusion .page-cockfighting__description {
  text-align: center;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-cockfighting__hero-section {
    padding-bottom: 60px;
  }

  .page-cockfighting__main-title {
    font-size: 2.8rem;
  }

  .page-cockfighting__description {
    font-size: 1.2rem;
  }

  .page-cockfighting__btn {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  .page-cockfighting__section {
    padding: 80px 20px;
  }

  .page-cockfighting__section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
  }

  .page-cockfighting__content-wrapper {
    flex-direction: row;
    gap: 60px;
  }

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

  .page-cockfighting__text-block, .page-cockfighting__image-block {
    flex: 1;
  }

  .page-cockfighting__image-block img {
    width: 100%;
    height: auto;
  }

  .page-cockfighting__feature-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-cockfighting__content-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-cockfighting__steps-list li::before {
    left: -20px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 30px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  }

  .page-cockfighting__description {
    font-size: 1rem;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-cockfighting__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 30px;
  }

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

  .page-cockfighting__image-block img, .page-cockfighting__feature-list img, .page-cockfighting__tips-list img, .page-cockfighting__faq-item img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-cockfighting__feature-list {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__content-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__steps-list li::before {
    left: 0;
  }

  .page-cockfighting__step-title, .page-cockfighting__steps-list p {
    padding-left: 55px; /* Adjust for counter */
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

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

  .page-cockfighting__btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

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

  .page-cockfighting__description, .page-cockfighting__feature-item p, .page-cockfighting__card--bet-type p, .page-cockfighting__tips-list li p, .page-cockfighting__faq-answer {
    font-size: 0.9rem;
  }
}