.page-cockfighting-betting-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #0A203C; /* Main dark background */
}

.page-cockfighting-betting-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-betting-rules__hero-section {
  background: linear-gradient(135deg, #0A203C 0%, #3a506b 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
}

.page-cockfighting-betting-rules__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-betting-rules__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F8F8F8;
}

.page-cockfighting-betting-rules__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-cockfighting-betting-rules__btn--primary {
  background-color: #FFD700;
  color: #0A203C;
  border: 2px solid #FFD700;
}

.page-cockfighting-betting-rules__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-cockfighting-betting-rules__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-betting-rules__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A203C;
}

.page-cockfighting-betting-rules__content-section {
  padding: 60px 0;
}

.page-cockfighting-betting-rules__bg-light {
  background-color: #1A3554; /* Slightly lighter dark blue for contrast */
}

.page-cockfighting-betting-rules__bg-dark {
  background-color: #05101E; /* Even darker blue for contrast */
}

.page-cockfighting-betting-rules__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-betting-rules__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-betting-rules__section-title--light {
  color: #F8F8F8;
}

.page-cockfighting-betting-rules__text-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-cockfighting-betting-rules__text-block strong {
  color: #FFD700;
}

.page-cockfighting-betting-rules__lead-text {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-cockfighting-betting-rules__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-cockfighting-betting-rules__list li {
  background-color: #1A3554;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__list li h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting-betting-rules__list li p {
  color: #F0F0F0;
  font-size: 1.05em;
}

.page-cockfighting-betting-rules__ordered-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
  margin-bottom: 40px;
}

.page-cockfighting-betting-rules__ordered-list li {
  background-color: #1A3554;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
}

.page-cockfighting-betting-rules__ordered-list li::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A203C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-cockfighting-betting-rules__ordered-list li h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting-betting-rules__ordered-list li p {
  color: #F0F0F0;
  font-size: 1.05em;
}

.page-cockfighting-betting-rules__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting-betting-rules__link:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-cockfighting-betting-rules__link--gold {
  color: #FFD700;
}

.page-cockfighting-betting-rules__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-cockfighting-betting-rules__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A203C;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__cta-block p {
  font-size: 1.3em;
  color: #F8F8F8;
  margin-bottom: 25px;
}

.page-cockfighting-betting-rules__faq-item {
  background-color: #1A3554;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-betting-rules__faq-item p {
  color: #F0F0F0;
  font-size: 1.05em;
}

.page-cockfighting-betting-rules__cta-section {
  background: linear-gradient(90deg, #0A203C 0%, #05101E 100%);
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-betting-rules__cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-cockfighting-betting-rules__cta-content {
  flex: 1;
  text-align: left;
}

.page-cockfighting-betting-rules__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-cockfighting-betting-rules__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-cockfighting-betting-rules__cta-buttons {
  display: flex;
  gap: 20px;
}

.page-cockfighting-betting-rules__cta-image-wrapper {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.page-cockfighting-betting-rules__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-betting-rules__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-betting-rules__hero-subtitle {
    font-size: 1.2em;
  }
  .page-cockfighting-betting-rules__section-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-rules__cta-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting-betting-rules__cta-content {
    text-align: center;
  }
  .page-cockfighting-betting-rules__cta-buttons {
    justify-content: center;
  }
  .page-cockfighting-betting-rules__cta-image-wrapper {
    margin-top: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-rules__hero-section {
    padding: 80px 0;
  }
  .page-cockfighting-betting-rules__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-rules__hero-subtitle {
    font-size: 1em;
  }
  .page-cockfighting-betting-rules__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-betting-rules__content-section {
    padding: 40px 0;
  }
  .page-cockfighting-betting-rules__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting-betting-rules__lead-text {
    font-size: 1.1em;
  }
  .page-cockfighting-betting-rules__list li, .page-cockfighting-betting-rules__ordered-list li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-cockfighting-betting-rules__ordered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
  }
  .page-cockfighting-betting-rules__cta-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-rules__cta-description {
    font-size: 1em;
  }
  .page-cockfighting-betting-rules__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-rules__hero-section {
    padding: 60px 0;
  }
  .page-cockfighting-betting-rules__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-rules__hero-subtitle {
    font-size: 0.9em;
  }
  .page-cockfighting-betting-rules__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting-betting-rules__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-betting-rules__list li h3, .page-cockfighting-betting-rules__ordered-list li h3 {
    font-size: 1.3em;
  }
  .page-cockfighting-betting-rules__cta-title {
    font-size: 1.8em;
  }
}