.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  text-align: center;
  background-color: #08160F;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.page-cockfighting__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A lighter shade of primary for contrast */
  border: 2px solid #2AD16F; /* Button color */
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
}

/* General Section Styles */
.page-cockfighting__introduction-section,
.page-cockfighting__betting-types-section,
.page-cockfighting__benefits-section,
.page-cockfighting__how-to-join-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 80px 0;
}

.page-cockfighting__dark-section {
  background-color: #11271B; /* Card BG */
}

.page-cockfighting__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-block {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Card Grid */
.page-cockfighting__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Benefit List */
.page-cockfighting__benefit-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting__benefit-item {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #57E38D; /* Glow */
}

.page-cockfighting__benefit-title {
  color: #F2C14E; /* Gold */
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__benefit-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

/* How-to Steps */
.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-cockfighting__step-item {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 5px solid #2AD16F;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__step-title {
  color: #F2C14E; /* Gold */
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__step-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Promotions */
.page-cockfighting__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__promo-card {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
}

.page-cockfighting__promo-title {
  color: #57E38D; /* Glow */
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__promo-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  color: #F2C14E; /* Gold */
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-question:hover {
  background-color: #13994A;
}

.page-cockfighting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  color: #F2FFF6;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  content: '−';
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  background-color: #13994A;
}

/* Conclusion */
.page-cockfighting__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

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

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

  .page-cockfighting__hero-image-wrapper {
    max-height: 600px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }
  
  .page-cockfighting__hero-image-wrapper {
    max-height: 400px;
  }

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

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

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__betting-types-section,
  .page-cockfighting__benefits-section,
  .page-cockfighting__how-to-join-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 50px 0;
  }

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

  .page-cockfighting__text-block {
    font-size: 0.95rem;
  }

  .page-cockfighting__image-content {
    margin: 30px auto;
  }

  .page-cockfighting__card-grid,
  .page-cockfighting__benefit-list,
  .page-cockfighting__promo-cards {
    gap: 20px;
  }

  .page-cockfighting__card,
  .page-cockfighting__benefit-item,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-card {
    padding: 25px;
  }

  .page-cockfighting__card-title,
  .page-cockfighting__benefit-title,
  .page-cockfighting__promo-title {
    font-size: 1.4rem;
  }

  .page-cockfighting__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 18px 20px;
  }

  /* Mobile specific overrides for images and containers */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__betting-types-section,
  .page-cockfighting__benefits-section,
  .page-cockfighting__how-to-join-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section,
  .page-cockfighting__promo-card,
  .page-cockfighting__step-item,
  .page-cockfighting__benefit-item,
  .page-cockfighting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-cockfighting__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-cockfighting__cta-buttons {
    padding-left: 0; /* Buttons handle their own padding */
    padding-right: 0;
    gap: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .page-cockfighting__faq-question {
    list-style: none;
  }

  .page-cockfighting__faq-item[open] .page-cockfighting__faq-question .page-cockfighting__faq-toggle {
    content: '−';
  }
}