.page-resources-cockfighting-rules {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-resources-cockfighting-rules__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303A4A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-cockfighting-rules__hero-content {
  z-index: 1;
  position: relative;
  max-width: 800px;
}

.page-resources-cockfighting-rules__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-resources-cockfighting-rules__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(50%);
}

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

.page-resources-cockfighting-rules__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-cockfighting-rules__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  margin: 10px;
}

.page-resources-cockfighting-rules__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

.page-resources-cockfighting-rules__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources-cockfighting-rules__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-cockfighting-rules__section:last-of-type {
  border-bottom: none;
}

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

.page-resources-cockfighting-rules__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-resources-cockfighting-rules__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-cockfighting-rules__text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

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

.page-resources-cockfighting-rules__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  color: #F0F0F0;
}

.page-resources-cockfighting-rules__list-item::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-resources-cockfighting-rules__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-resources-cockfighting-rules__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-cockfighting-rules__bet-type-card {
  background-color: #2A313C;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-cockfighting-rules__bet-type-card:hover {
  transform: translateY(-5px);
}

.page-resources-cockfighting-rules__bet-type-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-resources-cockfighting-rules__bet-type-description {
  color: #D0D0D0;
  font-size: 1em;
  margin-bottom: 15px;
}

.page-resources-cockfighting-rules__example {
  font-style: italic;
  color: #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  font-size: 0.95em;
}

.page-resources-cockfighting-rules__cta-content {
  text-align: center;
}

.page-resources-cockfighting-rules__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-cockfighting-rules__faq-item {
  background-color: #2A313C;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-resources-cockfighting-rules__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-cockfighting-rules__faq-answer {
  color: #D0D0D0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-cockfighting-rules__hero-title {
    font-size: 2.8em;
  }

  .page-resources-cockfighting-rules__hero-description {
    font-size: 1.1em;
  }

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

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

  .page-resources-cockfighting-rules__bet-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-cockfighting-rules__hero {
    padding: 80px 0;
  }

  .page-resources-cockfighting-rules__hero-title {
    font-size: 2.2em;
  }

  .page-resources-cockfighting-rules__hero-description {
    font-size: 1em;
  }

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

  .page-resources-cockfighting-rules__section {
    padding: 40px 0;
  }

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

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

  .page-resources-cockfighting-rules__text, .page-resources-cockfighting-rules__list-item, .page-resources-cockfighting-rules__bet-type-description, .page-resources-cockfighting-rules__example, .page-resources-cockfighting-rules__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-cockfighting-rules__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-cockfighting-rules__hero {
    padding: 60px 0;
  }

  .page-resources-cockfighting-rules__hero-title {
    font-size: 1.8em;
  }

  .page-resources-cockfighting-rules__hero-description {
    font-size: 0.9em;
  }

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

  .page-resources-cockfighting-rules__section-title {
    font-size: 1.5em;
  }

  .page-resources-cockfighting-rules__sub-title {
    font-size: 1.1em;
  }

  .page-resources-cockfighting-rules__list-item {
    padding: 10px 15px;
  }

  .page-resources-cockfighting-rules__bet-type-card {
    padding: 20px;
  }
}