/* style/cockfighting-betting-rules.css */
.page-cockfighting-betting-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-cockfighting-betting-rules__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-cockfighting-betting-rules__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.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;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-cockfighting-betting-rules__btn--primary {
  background-color: #ffc107;
  color: #333;
}

.page-cockfighting-betting-rules__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-cockfighting-betting-rules__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__introduction,
.page-cockfighting-betting-rules__general-rules,
.page-cockfighting-betting-rules__match-process,
.page-cockfighting-betting-rules__win-loss,
.page-cockfighting-betting-rules__bet-types,
.page-cockfighting-betting-rules__odds-calculation,
.page-cockfighting-betting-rules__responsible-gaming,
.page-cockfighting-betting-rules__faq,
.page-cockfighting-betting-rules__cta {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-betting-rules__introduction {
  background-color: #fefefe;
}

.page-cockfighting-betting-rules__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  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: #ffc107;
  border-radius: 2px;
}

.page-cockfighting-betting-rules__sub-section-title {
  font-size: 1.8em;
  color: #343a40;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
}

.page-cockfighting-betting-rules p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-cockfighting-betting-rules ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-cockfighting-betting-rules ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-cockfighting-betting-rules__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-betting-rules__faq-item {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-cockfighting-betting-rules__faq-question {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-cockfighting-betting-rules__faq-answer {
  font-size: 1.1em;
  color: #555;
  display: none; /* Hidden by default, will be toggled by JS */
}

.page-cockfighting-betting-rules__faq-question.active + .page-cockfighting-betting-rules__faq-answer {
  display: block;
}

.page-cockfighting-betting-rules__cta {
  text-align: center;
  background: linear-gradient(135deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
}

.page-cockfighting-betting-rules__cta .page-cockfighting-betting-rules__section-title {
  color: #ffc107;
  margin-bottom: 20px;
}

.page-cockfighting-betting-rules__cta .page-cockfighting-betting-rules__section-title::after {
  background-color: #fff;
}

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

.page-cockfighting-betting-rules__cta-buttons .page-cockfighting-betting-rules__btn {
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-betting-rules__title {
    font-size: 2.5em;
  }

  .page-cockfighting-betting-rules__subtitle {
    font-size: 1.2em;
  }

  .page-cockfighting-betting-rules__section-title {
    font-size: 2em;
  }

  .page-cockfighting-betting-rules__sub-section-title {
    font-size: 1.5em;
  }

  .page-cockfighting-betting-rules__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-betting-rules__introduction,
  .page-cockfighting-betting-rules__general-rules,
  .page-cockfighting-betting-rules__match-process,
  .page-cockfighting-betting-rules__win-loss,
  .page-cockfighting-betting-rules__bet-types,
  .page-cockfighting-betting-rules__odds-calculation,
  .page-cockfighting-betting-rules__responsible-gaming,
  .page-cockfighting-betting-rules__faq,
  .page-cockfighting-betting-rules__cta {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-rules__title {
    font-size: 2em;
  }

  .page-cockfighting-betting-rules__subtitle {
    font-size: 1em;
  }

  .page-cockfighting-betting-rules__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-rules__sub-section-title {
    font-size: 1.3em;
  }

  .page-cockfighting-betting-rules__btn {
    display: block;
    margin: 10px auto;
    width: 90%;
  }

  .page-cockfighting-betting-rules__cta-buttons .page-cockfighting-betting-rules__btn {
    min-width: unset;
  }
}