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

.page-resources-understanding-cockfighting-rules__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-understanding-cockfighting-rules__hero-section {
  background: linear-gradient(135deg, #A80000 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-understanding-cockfighting-rules__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.page-resources-understanding-cockfighting-rules__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-resources-understanding-cockfighting-rules__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-understanding-cockfighting-rules__button--primary {
  background-color: #A80000;
  color: #fff;
}

.page-resources-understanding-cockfighting-rules__button--primary:hover {
  background-color: #8C0000;
  transform: translateY(-2px);
}

.page-resources-understanding-cockfighting-rules__button--secondary {
  background-color: #FFD700;
  color: #A80000;
  border: 2px solid #A80000;
}

.page-resources-understanding-cockfighting-rules__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-understanding-cockfighting-rules__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-resources-understanding-cockfighting-rules__article-content {
  max-width: 800px;
}

.page-resources-understanding-cockfighting-rules__heading {
  font-size: 2em;
  color: #A80000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-understanding-cockfighting-rules__sub-heading {
  font-size: 1.5em;
  color: #660000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-understanding-cockfighting-rules__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #444;
}

.page-resources-understanding-cockfighting-rules__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #444;
}

.page-resources-understanding-cockfighting-rules__list li {
  margin-bottom: 0.5em;
}

.page-resources-understanding-cockfighting-rules__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-understanding-cockfighting-rules__image--centered {
  text-align: center;
}

.page-resources-understanding-cockfighting-rules__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.page-resources-understanding-cockfighting-rules__step-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-understanding-cockfighting-rules__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-understanding-cockfighting-rules__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #A80000;
  margin-bottom: 10px;
}

.page-resources-understanding-cockfighting-rules__step-title {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
}

.page-resources-understanding-cockfighting-rules__step-item p {
  font-size: 0.95em;
  color: #666;
}

.page-resources-understanding-cockfighting-rules__faq {
  margin-top: 40px;
}

.page-resources-understanding-cockfighting-rules__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-understanding-cockfighting-rules__faq-question {
  font-size: 1.2em;
  color: #A80000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-understanding-cockfighting-rules__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-resources-understanding-cockfighting-rules__faq-question.active::after {
  content: '-';
}

.page-resources-understanding-cockfighting-rules__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

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

.page-resources-understanding-cockfighting-rules__call-to-action {
  background-color: #A80000;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.page-resources-understanding-cockfighting-rules__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #fff;
}

.page-resources-understanding-cockfighting-rules__back-link {
  text-align: center;
  margin-top: 40px;
}

.page-resources-understanding-cockfighting-rules__link {
  color: #A80000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-understanding-cockfighting-rules__link:hover {
  color: #FFD700;
}

.page-resources-understanding-cockfighting-rules .highlight {
  color: #A80000;
  font-weight: bold;
}

.page-resources-understanding-cockfighting-rules__hero-section .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-understanding-cockfighting-rules__hero-title {
    font-size: 2.2em;
  }
  .page-resources-understanding-cockfighting-rules__heading {
    font-size: 1.8em;
  }
  .page-resources-understanding-cockfighting-rules__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-understanding-cockfighting-rules__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-understanding-cockfighting-rules__hero-title {
    font-size: 1.8em;
  }
  .page-resources-understanding-cockfighting-rules__hero-description {
    font-size: 1em;
  }
  .page-resources-understanding-cockfighting-rules__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-understanding-cockfighting-rules__call-to-action p {
    font-size: 1.1em;
  }
}