.page-cockfighting-horse-racing {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Assuming body background is light */
}

.page-cockfighting-horse-racing__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  color: #FFFFFF; /* Text color for hero content */
  background-color: #26A9E0; /* Primary color background for hero */
}

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

.page-cockfighting-horse-racing__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-cockfighting-horse-racing__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-cockfighting-horse-racing__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__section {
  padding: 60px 20px;
}

.page-cockfighting-horse-racing__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.page-cockfighting-horse-racing__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__section-title {
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-cockfighting-horse-racing__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__text-block p,
.page-cockfighting-horse-racing__text-block li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-cockfighting-horse-racing__text-block a {
  color: #EA7C07; /* Login color for links within text */
  text-decoration: underline;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__text-block a {
  color: #FFFFFF; /* White for links on dark background */
}

.page-cockfighting-horse-racing__sub-title,
.page-cockfighting-horse-racing__step-title,
.page-cockfighting-horse-racing__tip-title,
.page-cockfighting-horse-racing__promotion-title,
.page-cockfighting-horse-racing__feature-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__sub-title,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__step-title,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__tip-title,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__promotion-title,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__feature-title {
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-horse-racing__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-cockfighting-horse-racing__btn-primary,
.page-cockfighting-horse-racing__btn-secondary,
.page-cockfighting-horse-racing__btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-cockfighting-horse-racing__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border-color: #26A9E0;
}

.page-cockfighting-horse-racing__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-cockfighting-horse-racing__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border-color: #26A9E0;
}

.page-cockfighting-horse-racing__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-cockfighting-horse-racing__btn-login {
  background-color: #EA7C07;
  color: #FFFFFF;
  border-color: #EA7C07;
}

.page-cockfighting-horse-racing__btn-login:hover {
  background-color: #c96800;
  border-color: #c96800;
}

.page-cockfighting-horse-racing__step-list,
.page-cockfighting-horse-racing__tip-list,
.page-cockfighting-horse-racing__promotion-list,
.page-cockfighting-horse-racing__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-cockfighting-horse-racing__step-item,
.page-cockfighting-horse-racing__tip-item,
.page-cockfighting-horse-racing__promotion-item,
.page-cockfighting-horse-racing__feature-item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__step-item,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__tip-item,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__promotion-item,
.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.page-cockfighting-horse-racing__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffffff;
  color: #26A9E0;
  border-bottom: 1px solid #e0e0e0;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__faq-question {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.page-cockfighting-horse-racing__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-horse-racing__faq-item summary {
  list-style: none;
}

.page-cockfighting-horse-racing__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-cockfighting-horse-racing__faq-item[open] .page-cockfighting-horse-racing__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-horse-racing__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
}

.page-cockfighting-horse-racing__dark-bg .page-cockfighting-horse-racing__faq-answer {
  color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-horse-racing__hero-section {
    padding: 10px 15px 40px;
  }

  .page-cockfighting-horse-racing__main-title {
    margin-bottom: 15px;
  }

  .page-cockfighting-horse-racing__hero-description {
    margin-bottom: 25px;
  }

  .page-cockfighting-horse-racing__section {
    padding: 40px 15px;
  }

  .page-cockfighting-horse-racing__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

  .page-cockfighting-horse-racing__hero-section {
    padding: 10px 15px 30px;
  }

  .page-cockfighting-horse-racing__hero-image-wrapper {
    max-height: 300px;
  }

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

  .page-cockfighting-horse-racing__hero-description {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

  .page-cockfighting-horse-racing__section {
    padding: 30px 15px;
  }

  .page-cockfighting-horse-racing__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-cockfighting-horse-racing__sub-title,
  .page-cockfighting-horse-racing__step-title,
  .page-cockfighting-horse-racing__tip-title,
  .page-cockfighting-horse-racing__promotion-title,
  .page-cockfighting-horse-racing__feature-title {
    font-size: clamp(1.1em, 4vw, 1.5em);
  }

  .page-cockfighting-horse-racing__text-block p,
  .page-cockfighting-horse-racing__text-block li {
    font-size: 1em;
  }

  .page-cockfighting-horse-racing__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting-horse-racing__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-horse-racing__btn-primary,
  .page-cockfighting-horse-racing__btn-secondary,
  .page-cockfighting-horse-racing__btn-login {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-horse-racing__step-item,
  .page-cockfighting-horse-racing__tip-item,
  .page-cockfighting-horse-racing__promotion-item,
  .page-cockfighting-horse-racing__feature-item {
    padding: 20px;
  }

  .page-cockfighting-horse-racing__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-cockfighting-horse-racing__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-cockfighting-horse-racing__section,
  .page-cockfighting-horse-racing__content-area,
  .page-cockfighting-horse-racing__text-block,
  .page-cockfighting-horse-racing__hero-content,
  .page-cockfighting-horse-racing__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-cockfighting-horse-racing__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}