.page-cockfighting-live-stream-rules {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff;
}

.page-cockfighting-live-stream-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting-live-stream-rules__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff; /* White text for dark background */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-cockfighting-live-stream-rules__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-cockfighting-live-stream-rules__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-stream-rules__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-live-stream-rules__btn-primary,
.page-cockfighting-live-stream-rules__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-live-stream-rules__btn-primary {
  background-color: #EA7C07; /* Login/CTA color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-cockfighting-live-stream-rules__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-cockfighting-live-stream-rules__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Main brand color */
  border: 2px solid #26A9E0;
}

.page-cockfighting-live-stream-rules__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting-live-stream-rules__content-area {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting-live-stream-rules__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #26A9E0; /* Main brand color */
  text-align: center;
}

.page-cockfighting-live-stream-rules__sub-section-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

.page-cockfighting-live-stream-rules__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

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

.page-cockfighting-live-stream-rules__list,
.page-cockfighting-live-stream-rules__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-cockfighting-live-stream-rules__ordered-list {
  list-style-type: decimal;
}

.page-cockfighting-live-stream-rules__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-cockfighting-live-stream-rules__list-item strong {
  color: #000000;
}

.page-cockfighting-live-stream-rules__faq-container {
  margin-top: 50px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting-live-stream-rules__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-cockfighting-live-stream-rules__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-cockfighting-live-stream-rules__faq-question:hover {
  color: #1a7bb0;
}

.page-cockfighting-live-stream-rules__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-cockfighting-live-stream-rules__faq-item.active .page-cockfighting-live-stream-rules__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-live-stream-rules__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
}

.page-cockfighting-live-stream-rules__faq-item.active .page-cockfighting-live-stream-rules__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px;
}

.page-cockfighting-live-stream-rules__faq-answer p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-cockfighting-live-stream-rules__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.page-cockfighting-live-stream-rules__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #000000;
  font-weight: bold;
}

.page-cockfighting-live-stream-rules__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-live-stream-rules__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-live-stream-rules__section-title {
    font-size: 2em;
  }
  .page-cockfighting-live-stream-rules__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-stream-rules {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting-live-stream-rules__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting-live-stream-rules__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-live-stream-rules__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-live-stream-rules__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-cockfighting-live-stream-rules__btn-primary,
  .page-cockfighting-live-stream-rules__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting-live-stream-rules__content-area {
    padding: 40px 0;
  }
  .page-cockfighting-live-stream-rules__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-stream-rules__sub-section-title {
    font-size: 1.4em;
  }
  .page-cockfighting-live-stream-rules__text-block,
  .page-cockfighting-live-stream-rules__list-item,
  .page-cockfighting-live-stream-rules__faq-answer p {
    font-size: 0.95em;
  }
  .page-cockfighting-live-stream-rules__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-cockfighting-live-stream-rules__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-cockfighting-live-stream-rules__cta-bottom {
    padding: 30px 15px;
  }
  .page-cockfighting-live-stream-rules__cta-text {
    font-size: 1.2em;
  }
  .page-cockfighting-live-stream-rules__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-cockfighting-live-stream-rules__faq-question {
    font-size: 1.1em;
    padding: 15px 0;
  }
  .page-cockfighting-live-stream-rules__faq-answer {
    padding: 0 10px;
  }
  .page-cockfighting-live-stream-rules__faq-item.active .page-cockfighting-live-stream-rules__faq-answer {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-stream-rules__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-stream-rules__section-title {
    font-size: 1.6em;
  }
  .page-cockfighting-live-stream-rules__sub-section-title {
    font-size: 1.2em;
  }
  .page-cockfighting-live-stream-rules__cta-buttons {
    gap: 10px;
  }
  .page-cockfighting-live-stream-rules__btn-large {
    font-size: 1em;
    padding: 12px 25px;
  }
}