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

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

.page-cockfight-betting-rules__hero {
  position: relative;
  height: 450px; /* Adjusted height for better visual */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.page-cockfight-betting-rules__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-cockfight-betting-rules__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.7), rgba(255, 215, 0, 0.5));
  z-index: 2;
}

.page-cockfight-betting-rules__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-cockfight-betting-rules__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfight-betting-rules__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfight-betting-rules__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-cockfight-betting-rules__section:last-of-type {
  border-bottom: none;
}

.page-cockfight-betting-rules__section-title {
  font-size: 2.5em;
  color: #B22222;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfight-betting-rules__sub-title {
  font-size: 1.8em;
  color: #B22222;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfight-betting-rules__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-cockfight-betting-rules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfight-betting-rules__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-cockfight-betting-rules__grid-item ul,
.page-cockfight-betting-rules__winning-conditions ul,
.page-cockfight-betting-rules__losing-conditions ul,
.page-cockfight-betting-rules__prohibitions ul,
.page-cockfight-betting-rules__tips ol {
  list-style-type: disc;
  margin-left: 25px;
  color: #555;
}

.page-cockfight-betting-rules__grid-item li,
.page-cockfight-betting-rules__winning-conditions li,
.page-cockfight-betting-rules__losing-conditions li,
.page-cockfight-betting-rules__prohibitions li,
.page-cockfight-betting-rules__tips li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-cockfight-betting-rules__grid-item li strong {
  color: #B22222;
}

.page-cockfight-betting-rules__image-inline {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfight-betting-rules__winning-conditions,
.page-cockfight-betting-rules__losing-conditions {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.page-cockfight-betting-rules__winning-conditions .page-cockfight-betting-rules__sub-title {
  color: #388e3c; /* Dark Green for Winning */
}

.page-cockfight-betting-rules__losing-conditions .page-cockfight-betting-rules__sub-title {
  color: #d32f2f; /* Dark Red for Losing */
}

.page-cockfight-betting-rules__prohibitions ul {
  list-style-type: circle;
}

.page-cockfight-betting-rules__tips ol {
  list-style-type: decimal;
  margin-left: 25px;
}

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

.page-cockfight-betting-rules__btn--primary {
  background-color: #B22222;
  color: #fff;
  border: 2px solid #B22222;
  margin-right: 15px;
}

.page-cockfight-betting-rules__btn--primary:hover {
  background-color: #8B0000;
  border-color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-cockfight-betting-rules__btn--secondary:hover {
  background-color: #FFD700;
  color: #B22222;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfight-betting-rules__link-text {
  color: #B22222;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfight-betting-rules__link-text:hover {
  text-decoration: underline;
  color: #8B0000;
}

.page-cockfight-betting-rules__cta {
  background-color: #B22222;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-cockfight-betting-rules__cta .page-cockfight-betting-rules__text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-cockfight-betting-rules__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfight-betting-rules__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.page-cockfight-betting-rules__faq-question {
  font-size: 1.3em;
  color: #B22222;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfight-betting-rules__faq-answer {
  font-size: 1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfight-betting-rules__hero-title {
    font-size: 2.8em;
  }
  .page-cockfight-betting-rules__hero-subtitle {
    font-size: 1.2em;
  }
  .page-cockfight-betting-rules__section-title {
    font-size: 2em;
  }
  .page-cockfight-betting-rules__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-cockfight-betting-rules__hero {
    height: 350px;
  }
  .page-cockfight-betting-rules__hero-title {
    font-size: 2.2em;
  }
  .page-cockfight-betting-rules__hero-subtitle {
    font-size: 1em;
  }
  .page-cockfight-betting-rules__section {
    padding: 40px 0;
  }
  .page-cockfight-betting-rules__grid {
    grid-template-columns: 1fr;
  }
  .page-cockfight-betting-rules__btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-cockfight-betting-rules__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-cockfight-betting-rules__cta .page-cockfight-betting-rules__text {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-cockfight-betting-rules__hero {
    height: 300px;
  }
  .page-cockfight-betting-rules__hero-title {
    font-size: 1.8em;
  }
  .page-cockfight-betting-rules__hero-subtitle {
    font-size: 0.9em;
  }
  .page-cockfight-betting-rules__section-title {
    font-size: 1.8em;
  }
  .page-cockfight-betting-rules__sub-title {
    font-size: 1.3em;
  }
  .page-cockfight-betting-rules__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}