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

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

.page-cockfighting-forum-rules__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-forum-rules__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  z-index: 0;
}

.page-cockfighting-forum-rules__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-cockfighting-forum-rules__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  color: #eee;
  position: relative;
  z-index: 1;
}

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

.page-cockfighting-forum-rules__section-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting-forum-rules__sub-section-title {
  font-size: 1.8em;
  color: #b39700; /* Darker variant of FFD700 for better contrast */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting-forum-rules__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-cockfighting-forum-rules__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #555;
}

.page-cockfighting-forum-rules__list li {
  margin-bottom: 10px;
}

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

.page-cockfighting-forum-rules__main-image,
.page-cockfighting-forum-rules__secondary-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.page-cockfighting-forum-rules__main-image:hover,
.page-cockfighting-forum-rules__secondary-image:hover {
  transform: translateY(-5px);
}

.page-cockfighting-forum-rules__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #fdf5e6; /* Light background for CTA */
  border-radius: 10px;
  border: 1px solid #FFD700;
}

.page-cockfighting-forum-rules__cta-text {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-cockfighting-forum-rules__cta-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #8B0000;
}

.page-cockfighting-forum-rules__cta-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting-forum-rules__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-forum-rules__hero-subtitle {
    font-size: 1.1em;
  }
  .page-cockfighting-forum-rules__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-forum-rules__sub-section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-forum-rules__paragraph {
    font-size: 1em;
  }
  .page-cockfighting-forum-rules__cta-text {
    font-size: 1.3em;
  }
  .page-cockfighting-forum-rules__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-forum-rules__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-forum-rules__hero-subtitle {
    font-size: 0.9em;
  }
  .page-cockfighting-forum-rules__section-title {
    font-size: 1.6em;
  }
  .page-cockfighting-forum-rules__sub-section-title {
    font-size: 1.3em;
  }
  .page-cockfighting-forum-rules__paragraph {
    font-size: 0.95em;
  }
  .page-cockfighting-forum-rules__cta-text {
    font-size: 1.1em;
  }
  .page-cockfighting-forum-rules__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}