/* style/cockfighting-betting-rules-explained.css */
.page-cockfighting-betting-rules-explained {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #1a1a1a;
}

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

.page-cockfighting-betting-rules-explained__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules-explained__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-cockfighting-betting-rules-explained__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFF;
}

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

.page-cockfighting-betting-rules-explained__intro-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 40px;
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules-explained__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #CC0000;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-cockfighting-betting-rules-explained__sub-title,
.page-cockfighting-betting-rules-explained__card-title,
.page-cockfighting-betting-rules-explained__feature-title,
.page-cockfighting-betting-rules-explained__step-title,
.page-cockfighting-betting-rules-explained__faq-question {
  font-size: 1.8em;
  color: #CC0000; /* Red for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-cockfighting-betting-rules-explained p {
  margin-bottom: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-cockfighting-betting-rules-explained .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-cockfighting-betting-rules-explained__list,
.page-cockfighting-betting-rules-explained__list--ordered,
.page-cockfighting-betting-rules-explained__list--checked,
.page-cockfighting-betting-rules-explained__list--warning {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-betting-rules-explained__list li,
.page-cockfighting-betting-rules-explained__list--ordered li,
.page-cockfighting-betting-rules-explained__list--checked li,
.page-cockfighting-betting-rules-explained__list--warning li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-cockfighting-betting-rules-explained__list--ordered {
  list-style-type: decimal;
}

.page-cockfighting-betting-rules-explained__list--checked li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-cockfighting-betting-rules-explained__list--warning li::before {
  content: '⚠';
  color: #CC0000;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-cockfighting-betting-rules-explained__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting-betting-rules-explained__btn--primary {
  background-color: #CC0000;
  color: #FFFFFF;
}

.page-cockfighting-betting-rules-explained__btn--primary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules-explained__btn--secondary {
  background-color: #FFD700;
  color: #333333;
}

.page-cockfighting-betting-rules-explained__btn--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules-explained__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
  margin-top: 15px;
}

.page-cockfighting-betting-rules-explained__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
  margin-top: 50px;
}

.page-cockfighting-betting-rules-explained__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting-betting-rules-explained__link:hover {
  color: #CC0000;
  text-decoration: underline;
}

.page-cockfighting-betting-rules-explained__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting-betting-rules-explained__card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #CC0000;
}

.page-cockfighting-betting-rules-explained__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting-betting-rules-explained__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting-betting-rules-explained__feature-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #FFD700;
}

.page-cockfighting-betting-rules-explained__feature-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-top: 0;
  margin-bottom: 15px;
}

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

.page-cockfighting-betting-rules-explained__step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-cockfighting-betting-rules-explained__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CC0000;
  color: #FFFFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-rules-explained__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-cockfighting-betting-rules-explained__faq-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting-betting-rules-explained__faq-item {
  background-color: #2a2a2a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules-explained__faq-question {
  font-size: 1.3em;
  color: #CC0000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-cockfighting-betting-rules-explained__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  display: none; /* Hidden by default */
}

.page-cockfighting-betting-rules-explained__faq-item.active .page-cockfighting-betting-rules-explained__faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-betting-rules-explained__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-betting-rules-explained__hero-subtitle {
    font-size: 1.2em;
  }
  .page-cockfighting-betting-rules-explained__section-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-rules-explained__sub-title,
  .page-cockfighting-betting-rules-explained__card-title,
  .page-cockfighting-betting-rules-explained__feature-title,
  .page-cockfighting-betting-rules-explained__step-title,
  .page-cockfighting-betting-rules-explained__faq-question {
    font-size: 1.5em;
  }
  .page-cockfighting-betting-rules-explained__grid-2-cols,
  .page-cockfighting-betting-rules-explained__features-grid,
  .page-cockfighting-betting-rules-explained__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-rules-explained__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-betting-rules-explained__hero-subtitle {
    font-size: 1em;
  }
  .page-cockfighting-betting-rules-explained__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-cockfighting-betting-rules-explained__intro-text,
  .page-cockfighting-betting-rules-explained__card,
  .page-cockfighting-betting-rules-explained__feature-item,
  .page-cockfighting-betting-rules-explained__step-item,
  .page-cockfighting-betting-rules-explained__faq-item {
    padding: 20px;
  }
}