:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* From shared.css body background */
  --btn-login-color: #EA7C07;
}

.page-index-67-live-cockfighting-introduction {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Should be inherited from body, but good to ensure */
}

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

/* Fixed header offset */
.page-index-67-live-cockfighting-introduction__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset here */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Ensure hero section has a decent height */
  color: var(--text-light);
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.8), rgba(18, 18, 18, 0.8)); /* Overlay for image */
  z-index: 1;
}

.page-index-67-live-cockfighting-introduction__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-index-67-live-cockfighting-introduction__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, not color change */
}

.page-index-67-live-cockfighting-introduction__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-index-67-live-cockfighting-introduction__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-index-67-live-cockfighting-introduction__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-index-67-live-cockfighting-introduction__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-index-67-live-cockfighting-introduction__btn-primary,
.page-index-67-live-cockfighting-introduction__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;
  text-align: center;
  max-width: 100%; /* Ensure buttons are responsive */
}

.page-index-67-live-cockfighting-introduction__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__btn-primary:hover {
  background-color: #1e87c4; /* Slightly darker primary */
  border-color: #1e87c4;
}

.page-index-67-live-cockfighting-introduction__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-67-live-cockfighting-introduction__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-light);
}

/* Dark background sections */
.page-index-67-live-cockfighting-introduction__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0;
}

.page-index-67-live-cockfighting-introduction__about-section,
.page-index-67-live-cockfighting-introduction__how-to-start-section,
.page-index-67-live-cockfighting-introduction__promotions-section,
.page-index-67-live-cockfighting-introduction__faq-section,
.page-index-67-live-cockfighting-introduction__cta-final-section {
  padding: 60px 0;
  color: var(--text-light); /* Ensure light text on dark background */
}

.page-index-67-live-cockfighting-introduction__about-section .page-index-67-live-cockfighting-introduction__section-title,
.page-index-67-live-cockfighting-introduction__how-to-start-section .page-index-67-live-cockfighting-introduction__section-title,
.page-index-67-live-cockfighting-introduction__promotions-section .page-index-67-live-cockfighting-introduction__section-title,
.page-index-67-live-cockfighting-introduction__faq-section .page-index-67-live-cockfighting-introduction__section-title,
.page-index-67-live-cockfighting-introduction__cta-final-section .page-index-67-live-cockfighting-introduction__section-title {
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Features Section */
.page-index-67-live-cockfighting-introduction__features-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
}

.page-index-67-live-cockfighting-introduction__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-67-live-cockfighting-introduction__feature-card {
  background-color: #282828; /* Card background, still dark, but lighter than body */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-67-live-cockfighting-introduction__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__feature-card p {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-light);
  flex-grow: 1; /* Allow text to grow */
}

.page-index-67-live-cockfighting-introduction__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  min-height: 200px; /* Enforce min image size */
}

/* How to Start Section */
.page-index-67-live-cockfighting-introduction__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-67-live-cockfighting-introduction__step-card {
  background-color: #282828;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
}

.page-index-67-live-cockfighting-introduction__step-card .page-index-67-live-cockfighting-introduction__card-title {
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__step-card p {
  color: var(--text-light);
}

.page-index-67-live-cockfighting-introduction__cta-buttons-center {
  text-align: center;
  margin-top: 40px;
}

/* Other Games Section */
.page-index-67-live-cockfighting-introduction__other-games-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-index-67-live-cockfighting-introduction__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-67-live-cockfighting-introduction__game-card {
  background-color: #282828;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-67-live-cockfighting-introduction__game-card .page-index-67-live-cockfighting-introduction__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-height: 200px; /* Enforce min image size */
}

.page-index-67-live-cockfighting-introduction__game-card .page-index-67-live-cockfighting-introduction__card-title {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-67-live-cockfighting-introduction__game-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: var(--text-light);
  flex-grow: 1;
}

.page-index-67-live-cockfighting-introduction__btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-index-67-live-cockfighting-introduction__btn-text:hover {
  color: #1e87c4;
  text-decoration: underline;
}

/* Promotions Section */
.page-index-67-live-cockfighting-introduction__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-67-live-cockfighting-introduction__promo-list li {
  background-color: #282828;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
  font-size: 1.1em;
}

.page-index-67-live-cockfighting-introduction__promo-list li strong {
  color: var(--primary-color);
}

/* Security Section */
.page-index-67-live-cockfighting-introduction__security-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-index-67-live-cockfighting-introduction__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.page-index-67-live-cockfighting-introduction__security-item {
  background-color: #282828;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
}

.page-index-67-live-cockfighting-introduction__security-item .page-index-67-live-cockfighting-introduction__item-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__security-item p {
  font-size: 1em;
  color: var(--text-light);
}

/* FAQ Section */
.page-index-67-live-cockfighting-introduction__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-index-67-live-cockfighting-introduction__faq-item {
  background-color: #282828;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-index-67-live-cockfighting-introduction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #333;
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: bold;
}

.page-index-67-live-cockfighting-introduction__faq-question h3 {
  margin: 0;
  color: var(--primary-color);
}

.page-index-67-live-cockfighting-introduction__faq-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-67-live-cockfighting-introduction__faq-item.active .page-index-67-live-cockfighting-introduction__faq-toggle {
  transform: rotate(45deg);
}

.page-index-67-live-cockfighting-introduction__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #282828;
  color: var(--text-light);
}

.page-index-67-live-cockfighting-introduction__faq-item.active .page-index-67-live-cockfighting-introduction__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-index-67-live-cockfighting-introduction__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-index-67-live-cockfighting-introduction__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-67-live-cockfighting-introduction__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-index-67-live-cockfighting-introduction__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-index-67-live-cockfighting-introduction__cta-final-content {
  max-width: 800px;
}

.page-index-67-live-cockfighting-introduction__cta-final-section .page-index-67-live-cockfighting-introduction__section-title {
  color: var(--secondary-color);
}

.page-index-67-live-cockfighting-introduction__cta-final-section .page-index-67-live-cockfighting-introduction__text-block {
  color: var(--secondary-color);
  margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-index-67-live-cockfighting-introduction__hero-title {
    font-size: 2.5em;
  }

  .page-index-67-live-cockfighting-introduction__section-title {
    font-size: 2em;
  }

  .page-index-67-live-cockfighting-introduction__features-grid,
  .page-index-67-live-cockfighting-introduction__steps-grid,
  .page-index-67-live-cockfighting-introduction__games-grid,
  .page-index-67-live-cockfighting-introduction__security-features {
    grid-template-columns: 1fr;
  }

  .page-index-67-live-cockfighting-introduction__hero-cta-buttons {
    flex-direction: column;
  }

  .page-index-67-live-cockfighting-introduction__btn-primary,
  .page-index-67-live-cockfighting-introduction__btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-67-live-cockfighting-introduction__hero-title {
    font-size: 2em;
  }

  .page-index-67-live-cockfighting-introduction__hero-description {
    font-size: 1em;
  }

  .page-index-67-live-cockfighting-introduction__section-title {
    font-size: 1.8em;
  }

  .page-index-67-live-cockfighting-introduction__btn-primary,
  .page-index-67-live-cockfighting-introduction__btn-secondary {
    padding: 12px 20px;
  }
}