.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--body-bg); /* #08160F */
}

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

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to place content slightly over the image for visual flow, but not obscuring main image */
  background: linear-gradient(0deg, var(--body-bg) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  border-radius: 15px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary); /* #A7D9B8 */
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-cockfighting__btn-primary {
  background: var(--btn-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--primary-color); /* #11A84E */
  border: 2px solid var(--primary-color); /* #11A84E */
}

.page-cockfighting__btn-secondary:hover {
  background: var(--primary-color); /* #11A84E */
  color: #ffffff;
  transform: translateY(-2px);
}

.page-cockfighting__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color); /* #11A84E */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-color); /* #F2C14E */
  border-radius: 2px;
}

.page-cockfighting__section-description {
  font-size: 1.1rem;
  color: var(--text-secondary); /* #A7D9B8 */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-cockfighting__dark-section {
  background-color: var(--card-bg); /* #11271B */
  padding: 60px 0;
  color: var(--text-main); /* #F2FFF6 */
}

.page-cockfighting__introduction-section {
  padding: 60px 0;
}

.page-cockfighting__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-cockfighting__text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-cockfighting__highlight-text {
  color: var(--gold-color); /* #F2C14E */
  font-weight: 700;
}

.page-cockfighting__inline-link {
  color: var(--glow-color); /* #57E38D */
  text-decoration: none;
  font-weight: 600;
}

.page-cockfighting__inline-link:hover {
  text-decoration: underline;
}

.page-cockfighting__bet-types-section {
  padding: 60px 0;
}

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

.page-cockfighting__card {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-cockfighting__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color); /* #11A84E */
  margin-bottom: 15px;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-cockfighting__tip-text {
  font-size: 1.1rem;
  color: var(--text-main); /* #F2FFF6 */
  text-align: center;
  margin-top: 50px;
  font-style: italic;
}

.page-cockfighting__guide-section {
  padding: 60px 0;
}

.page-cockfighting__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-cockfighting__step-item {
  background-color: var(--body-bg); /* #08160F */
  border: 1px solid var(--deep-green-color); /* #0A4B2C */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main); /* #F2FFF6 */
}

.page-cockfighting__step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 15px;
}

.page-cockfighting__step-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-cockfighting__step-button {
  margin-top: 20px;
  display: inline-block;
  width: auto;
}

.page-cockfighting__cta-block {
  text-align: center;
  margin-top: 50px;
}

.page-cockfighting__cta-block p {
  font-size: 1.2rem;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
}

.page-cockfighting__advantages-section {
  padding: 60px 0;
}

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

.page-cockfighting__feature-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main); /* #F2FFF6 */
}

.page-cockfighting__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color); /* #11A84E */
  margin-bottom: 10px;
}

.page-cockfighting__feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-cockfighting__promotions-section {
  padding: 60px 0;
}

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

.page-cockfighting__promo-card {
  background-color: var(--body-bg); /* #08160F */
  border: 1px solid var(--divider-color); /* #1E3A2A */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main); /* #F2FFF6 */
}

.page-cockfighting__promo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 15px;
}

.page-cockfighting__promo-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-cockfighting__faq-section {
  padding: 60px 0;
}

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

.page-cockfighting__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main); /* #F2FFF6 */
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color); /* #11A84E */
  background-color: var(--body-bg); /* #08160F */
  border-bottom: 1px solid var(--divider-color); /* #1E3A2A */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  border-bottom: 1px solid transparent; /* Hide border when open */
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--gold-color); /* #F2C14E */
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-cockfighting__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__conclusion-section .page-cockfighting__cta-buttons {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
  .page-cockfighting__content-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-cockfighting__hero-content {
    margin-top: -80px;
    padding: 20px;
    border-radius: 10px;
  }
  .page-cockfighting__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-cockfighting__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .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: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-cockfighting__section-description,
  .page-cockfighting__tip-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-cockfighting__dark-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__bet-types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__advantages-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 40px 0;
  }
  .page-cockfighting__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__text-block p,
  .page-cockfighting__card-text,
  .page-cockfighting__step-item p,
  .page-cockfighting__feature-item p,
  .page-cockfighting__promo-text,
  .page-cockfighting__faq-answer p {
    font-size: 0.9rem;
  }
  .page-cockfighting__card-grid,
  .page-cockfighting__feature-list,
  .page-cockfighting__promo-grid {
    gap: 20px;
  }
  .page-cockfighting__card-image,
  .page-cockfighting__feature-icon,
  .page-cockfighting__image-block img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.6rem;
  }
  .page-cockfighting__hero-content {
    margin-top: -60px;
  }
}