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

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-cockfighting__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting__subsection-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-cockfighting__section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-cockfighting__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-cockfighting__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-cockfighting__hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-cockfighting__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-cockfighting__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-cockfighting__btn-secondary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-cockfighting__btn-secondary:hover {
  background: #c26606;
  border-color: #c26606;
}

.page-cockfighting__intro-section,
.page-cockfighting__guide-section,
.page-cockfighting__features-section,
.page-cockfighting__promotions-section,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-final {
  padding: 60px 0;
}

.page-cockfighting__intro-section .page-cockfighting__section-title,
.page-cockfighting__promotions-section .page-cockfighting__section-title,
.page-cockfighting__faq-section .page-cockfighting__section-title {
  color: #26A9E0;
}

.page-cockfighting__intro-section .page-cockfighting__section-text,
.page-cockfighting__promotions-section .page-cockfighting__section-text,
.page-cockfighting__faq-section .page-cockfighting__section-text {
  color: #333333;
}

.page-cockfighting__guide-section .page-cockfighting__section-title,
.page-cockfighting__features-section .page-cockfighting__section-title,
.page-cockfighting__tips-section .page-cockfighting__section-title,
.page-cockfighting__cta-final .page-cockfighting__section-title {
  color: #FFFFFF;
}

.page-cockfighting__guide-section .page-cockfighting__section-text,
.page-cockfighting__guide-section .page-cockfighting__subsection-title,
.page-cockfighting__tips-section .page-cockfighting__section-text {
  color: #f0f0f0;
}

.page-cockfighting__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__image--large {
  width: 800px;
  height: 600px;
}

.page-cockfighting__image--medium {
  width: 600px;
  height: 400px;
}

.page-cockfighting__image--faq {
  width: 600px;
  height: 400px;
}

.page-cockfighting__ordered-list,
.page-cockfighting__unordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0; /* For dark background sections */
}

.page-cockfighting__light-bg .page-cockfighting__ordered-list,
.page-cockfighting__light-bg .page-cockfighting__unordered-list {
  color: #333333; /* For light background sections */
}

.page-cockfighting__ordered-list li strong {
  color: #26A9E0;
}

.page-cockfighting__ordered-list li a,
.page-cockfighting__unordered-list li a {
  color: #26A9E0;
  text-decoration: none;
}

.page-cockfighting__ordered-list li a:hover,
.page-cockfighting__unordered-list li a:hover {
  text-decoration: underline;
}

.page-cockfighting__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__feature-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark body bg */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 350px; /* Ensure cards are large enough */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-10px);
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
  text-align: justify;
}

.page-cockfighting__card-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-cockfighting__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 30px;
}

.page-cockfighting__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark body bg */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__light-bg .page-cockfighting__faq-item {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.page-cockfighting__light-bg .page-cockfighting__faq-question {
  background: #ffffff;
}

.page-cockfighting__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-cockfighting__light-bg .page-cockfighting__faq-question:hover {
  background: #f0f0f0;
}

.page-cockfighting__faq-title {
  font-size: 1.2rem;
  color: #26A9E0;
  margin: 0;
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  transform: rotate(45deg); /* For '-' symbol if it's a '+' */
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 20px;
}

.page-cockfighting__faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0; /* For dark background sections */
}

.page-cockfighting__light-bg .page-cockfighting__faq-answer p {
  color: #333333; /* For light background sections */
}

.page-cockfighting__cta-final {
  text-align: center;
}

.page-cockfighting__cta-final .page-cockfighting__section-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 3rem;
  }
  .page-cockfighting__hero-description {
    font-size: 1.1rem;
  }
  .page-cockfighting__section-title {
    font-size: 2rem;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.6rem;
  }
  .page-cockfighting__feature-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__hero-section {
    min-height: 500px;
    padding: 20px;
  }
  .page-cockfighting__hero-content {
    padding: 20px;
  }
  .page-cockfighting__hero-title {
    font-size: 2.2rem;
  }
  .page-cockfighting__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.4rem;
  }
  .page-cockfighting__section-text {
    font-size: 1rem;
  }
  .page-cockfighting__image,
  .page-cockfighting__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
  }
  .page-cockfighting__intro-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__features-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final {
    padding: 40px 0;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__feature-card {
    min-height: auto;
  }
  .page-cockfighting__faq-question {
    padding: 12px 15px;
  }
  .page-cockfighting__faq-title {
    font-size: 1.1rem;
  }
  .page-cockfighting__faq-answer {
    padding: 0 15px;
  }
  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px 15px;
  }
  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__hero-video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-cockfighting__hero-video {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }
  .page-cockfighting__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.5rem;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.2rem;
  }
  .page-cockfighting__faq-title {
    font-size: 1rem;
  }
}