.page-cockfighting {
  background-color: #100224; /* Deep Navy from custom palette for main background */
  color: #F3F8FF; /* Text Main */
  padding-top: 10px; /* Small top padding for main content as body has header offset */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

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

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F3F8FF; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F2C14E, #FFD700); /* Gold gradient */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-cockfighting__text-content {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
}

/* Hero Section */
.page-cockfighting__hero-section {
  background-color: #08162B; /* Deep Navy */
  position: relative;
  overflow: hidden;
  padding-bottom: 60px; /* Space for content below image on desktop */
}

.page-cockfighting__hero-visual {
  margin: 0;
  width: 100%;
}

.page-cockfighting__hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9; /* Standard widescreen aspect ratio */
  min-height: 200px; /* Ensure minimum height */
}

.page-cockfighting__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 15px;
  text-align: center;
  position: relative; /* Ensure it's above other elements if any */
  z-index: 2;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.page-cockfighting__hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

/* Intro Section */
.page-cockfighting__intro-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
  text-align: center;
}
.page-cockfighting__intro-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}


/* Guide Section */
.page-cockfighting__guide-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

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

.page-cockfighting__guide-list li {
  background-color: #10233F; /* Card BG */
  border-left: 5px solid #2B73F6; /* Blue */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__guide-list li strong {
  color: #F2C14E; /* Gold */
}
.page-cockfighting__guide-list li a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: 600;
}
.page-cockfighting__guide-list li a:hover {
  text-decoration: underline;
}
.page-cockfighting__guide-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}


/* Features Section */
.page-cockfighting__features-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
  text-align: center;
}

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

.page-cockfighting__feature-item {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid #244D84; /* Border */
}

.page-cockfighting__feature-item img {
  width: 100%;
  max-width: 400px; /* Constrain image width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting__feature-item h3 {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-cockfighting__feature-item p {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

/* Why e2bets Section */
.page-cockfighting__why-e2bets-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
  text-align: center;
}

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

.page-cockfighting__advantage-list li {
  background-color: #10233F; /* Card BG */
  border-left: 5px solid #F2C14E; /* Gold */
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #F3F8FF; /* Text Main */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__advantage-list li strong {
  color: #4FA8FF; /* Glow */
}

.page-cockfighting__cta-button--secondary {
  background: linear-gradient(180deg, #F2C14E 0%, #E0A800 100%); /* Gold gradient */
  color: #08162B; /* Deep Navy */
}

.page-cockfighting__cta-button--secondary:hover {
  background: linear-gradient(180deg, #E0A800 0%, #F2C14E 100%);
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
  text-align: center;
}

.page-cockfighting__promo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__promo-card {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid #244D84; /* Border */
  flex: 1 1 45%; /* Allows two cards per row on larger screens */
  max-width: 480px;
  text-align: left;
}

.page-cockfighting__promo-card h3 {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-cockfighting__promo-card p {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-cockfighting__promo-link {
  display: inline-block;
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #4FA8FF;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-cockfighting__promo-link:hover {
  color: #F3F8FF; /* Text Main */
  border-color: #F3F8FF;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-cockfighting__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__faq-question {
  font-size: 1.25rem;
  color: #F3F8FF; /* Text Main */
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-cockfighting__faq-item.active .page-cockfighting__faq-question::after {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 20px 20px;
}

.page-cockfighting__faq-answer p {
  margin: 0 0 10px 0;
  font-size: 1rem;
}

.page-cockfighting__faq-download-link {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #4FA8FF;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-cockfighting__faq-download-link:hover {
  color: #F3F8FF; /* Text Main */
  border-color: #F3F8FF;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }
  .page-cockfighting__hero-visual img {
    aspect-ratio: 4/3; /* Mobile aspect ratio */
  }
  .page-cockfighting__hero-content {
    padding: 30px 15px;
  }
  .page-cockfighting__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-cockfighting__hero-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
  }
  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-cockfighting__promo-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-cockfighting__promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 20px 12px;
  }
  .page-cockfighting__section-title {
    margin-bottom: 30px;
  }
  .page-cockfighting__text-content {
    font-size: 1rem;
  }
  .page-cockfighting img { /* Apply to all content images */
    max-width: 100%;
    height: auto;
  }
  .page-cockfighting__guide-list li,
  .page-cockfighting__advantage-list li,
  .page-cockfighting__faq-question,
  .page-cockfighting__faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .page-cockfighting__hero-description {
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  }
  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

/* Ensure content area images are not too small */
.page-cockfighting__intro-section img,
.page-cockfighting__guide-section img,
.page-cockfighting__feature-item img {
    min-width: 200px;
    min-height: 200px;
}
@media (max-width: 768px) {
  .page-cockfighting img {
    max-width: 100%;
    height: auto;
  }
}