.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Light text for dark body background */
  background-color: #08160F; /* From custom color: Background */
}

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

.page-cockfighting__dark-bg {
  background-color: #08160F; /* Custom color: Background */
  color: #F2FFF6; /* Custom color: Text Main */
}

.page-cockfighting__light-bg {
  background-color: #11271B; /* Custom color: Card B G */
  color: #F2FFF6; /* Custom color: Text Main */
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Custom color: Gold */
  line-height: 1.2;
}

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

.page-cockfighting__text-block a {
  color: #2AD16F;
  text-decoration: none;
}

.page-cockfighting__text-block a:hover {
  text-decoration: underline;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom color: Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-cockfighting__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__small-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-cockfighting__large-button {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-cockfighting__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-cockfighting__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 900;
  color: #F2FFF6; /* Custom color: Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  color: #A7D9B8; /* Custom color: Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-cockfighting__about-section {
  padding: 60px 0;
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
  padding: 60px 0;
}

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

.page-cockfighting__feature-card {
  background-color: #11271B; /* Custom color: Card B G */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Custom color: Border */
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

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

.page-cockfighting__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Custom color: Gold */
  margin-bottom: 15px;
}

.page-cockfighting__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Custom color: Text Secondary */
}

/* Types of Bets Section */
.page-cockfighting__types-of-bets {
  padding: 60px 0;
}

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

.page-cockfighting__bet-item {
  background-color: #0A4B2C; /* Custom color: Deep Green */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Custom color: Border */
}

.page-cockfighting__bet-type-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2FFF6; /* Custom color: Text Main */
  margin-bottom: 10px;
}

.page-cockfighting__bet-description {
  font-size: 1em;
  color: #A7D9B8; /* Custom color: Text Secondary */
}

/* How to Bet Section */
.page-cockfighting__how-to-bet {
  padding: 60px 0;
}

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

.page-cockfighting__step-card {
  background-color: #11271B; /* Custom color: Card B G */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Custom color: Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-number {
  width: 50px;
  height: 50px;
  background-color: #F2C14E; /* Custom color: Gold */
  color: #08160F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-cockfighting__how-to-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #A7D9B8; /* Custom color: Text Secondary */
}

/* Tips Section */
.page-cockfighting__tips-section {
  padding: 60px 0;
}

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

.page-cockfighting__tip-card {
  background-color: #0A4B2C; /* Custom color: Deep Green */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Custom color: Border */
}

.page-cockfighting__tip-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-cockfighting__promo-item {
  background-color: #11271B; /* Custom color: Card B G */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Custom color: Border */
  text-align: left;
}

.page-cockfighting__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Custom color: Gold */
  margin-bottom: 10px;
}

.page-cockfighting__promo-description {
  font-size: 1em;
  color: #A7D9B8; /* Custom color: Text Secondary */
}

/* Responsible Betting Section */
.page-cockfighting__responsible-betting {
  padding: 60px 0;
}

.page-cockfighting__responsible-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Custom color: Text Secondary */
}

.page-cockfighting__responsible-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 60px 0;
}

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

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

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Custom color: Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Custom color: 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.5em;
  line-height: 1;
  color: #F2C14E; /* Custom color: Gold */
}

.page-cockfighting__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Custom color: Text Secondary */
  background-color: #11271B; /* Custom color: Card B G */
  border-top: 1px solid #2E7A4E; /* Custom color: Border */
}

.page-cockfighting__faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.page-cockfighting__cta-final {
  padding: 60px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__hero-content {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting__container {
    padding: 15px;
  }

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

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-cockfighting__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-cockfighting__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-cockfighting__hero-section .page-cockfighting__cta-button {
    margin: 0 auto;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__bet-list,
  .page-cockfighting__steps-grid,
  .page-cockfighting__tips-grid,
  .page-cockfighting__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__bet-item,
  .page-cockfighting__step-card,
  .page-cockfighting__tip-card,
  .page-cockfighting__promo-item {
    padding: 20px;
  }

  .page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__hero-image-wrapper,
  .page-cockfighting__hero-content,
  .page-cockfighting__container,
  .page-cockfighting__features-grid,
  .page-cockfighting__bet-list,
  .page-cockfighting__steps-grid,
  .page-cockfighting__tips-grid,
  .page-cockfighting__promo-list,
  .page-cockfighting__faq-list,
  .page-cockfighting__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-cockfighting__cta-final .page-cockfighting__cta-button {
    margin: 0 auto;
  }
}