.page-resources-c1-cockfighting-live-viewing-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, ensuring contrast */
}

.page-resources-c1-cockfighting-live-viewing-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-c1-cockfighting-live-viewing-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: rgba(38, 169, 224, 0.8); /* Using main color with transparency */
}

.page-resources-c1-cockfighting-live-viewing-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image to improve text contrast */
}

.page-resources-c1-cockfighting-live-viewing-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-c1-cockfighting-live-viewing-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-resources-c1-cockfighting-live-viewing-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-primary,
.page-resources-c1-cockfighting-live-viewing-guide__btn-secondary,
.page-resources-c1-cockfighting-live-viewing-guide__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-primary:hover {
  background-color: #1a8cc7;
  transform: translateY(-2px);
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-secondary:hover {
  background-color: rgba(38, 169, 224, 0.1);
  transform: translateY(-2px);
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #26A9E0;
  color: #ffffff;
  border: none;
  border-radius: 5px;
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-small:hover {
  background-color: #1a8cc7;
  transform: translateY(-1px);
}

.page-resources-c1-cockfighting-live-viewing-guide__btn-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-resources-c1-cockfighting-live-viewing-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-c1-cockfighting-live-viewing-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-resources-c1-cockfighting-live-viewing-guide__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-c1-cockfighting-live-viewing-guide__light-bg {
  background-color: #f5f5f5;
  color: #333333;
  padding: 60px 0;
}

/* Why Choose Us Section */
.page-resources-c1-cockfighting-live-viewing-guide__why-choose-us .page-resources-c1-cockfighting-live-viewing-guide__section-title,
.page-resources-c1-cockfighting-live-viewing-guide__why-choose-us .page-resources-c1-cockfighting-live-viewing-guide__section-description {
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-c1-cockfighting-live-viewing-guide__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-c1-cockfighting-live-viewing-guide__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

/* How to Watch Section */
.page-resources-c1-cockfighting-live-viewing-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-resources-c1-cockfighting-live-viewing-guide__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-c1-cockfighting-live-viewing-guide__step-number {
  font-size: 2.5em;
  color: #26A9E0;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.page-resources-c1-cockfighting-live-viewing-guide__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-resources-c1-cockfighting-live-viewing-guide__guide-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Betting Strategies Section */
.page-resources-c1-cockfighting-live-viewing-guide__betting-strategies .page-resources-c1-cockfighting-live-viewing-guide__section-title,
.page-resources-c1-cockfighting-live-viewing-guide__betting-strategies .page-resources-c1-cockfighting-live-viewing-guide__section-description {
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-c1-cockfighting-live-viewing-guide__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__strategy-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Matches Section */
.page-resources-c1-cockfighting-live-viewing-guide__match-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-c1-cockfighting-live-viewing-guide__match-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-card h3,
.page-resources-c1-cockfighting-live-viewing-guide__match-card p,
.page-resources-c1-cockfighting-live-viewing-guide__match-card a {
  padding: 0 20px;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-title {
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-title a:hover {
  color: #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-details {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-resources-c1-cockfighting-live-viewing-guide__match-card .page-resources-c1-cockfighting-live-viewing-guide__btn-small {
  margin: 0 20px 20px 20px;
}

/* Other Entertainment Section */
.page-resources-c1-cockfighting-live-viewing-guide__other-entertainment .page-resources-c1-cockfighting-live-viewing-guide__section-title,
.page-resources-c1-cockfighting-live-viewing-guide__other-entertainment .page-resources-c1-cockfighting-live-viewing-guide__section-description {
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-title {
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-title a:hover {
  text-decoration: underline;
}

.page-resources-c1-cockfighting-live-viewing-guide__game-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px 20px;
}

/* Promotions Section */
.page-resources-c1-cockfighting-live-viewing-guide__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-c1-cockfighting-live-viewing-guide__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__card-title {
  color: #ffffff;
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__card-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__card-title a:hover {
  color: #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__card-text {
  color: #cccccc;
}

.page-resources-c1-cockfighting-live-viewing-guide__promotions .page-resources-c1-cockfighting-live-viewing-guide__btn-small {
  margin-top: 20px;
}

/* FAQ Section */
.page-resources-c1-cockfighting-live-viewing-guide__faq-section .page-resources-c1-cockfighting-live-viewing-guide__section-title,
.page-resources-c1-cockfighting-live-viewing-guide__faq-section .page-resources-c1-cockfighting-live-viewing-guide__section-description {
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #eee;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #555555;
}

.page-resources-c1-cockfighting-live-viewing-guide__faq-answer p {
  margin: 0;
  padding-top: 15px;
}

/* Final CTA Section */
.page-resources-c1-cockfighting-live-viewing-guide__cta-final {
  text-align: center;
  padding: 80px 20px;
  background-color: #26A9E0; /* Using main brand color */
  color: #ffffff;
}

.page-resources-c1-cockfighting-live-viewing-guide__cta-final .page-resources-c1-cockfighting-live-viewing-guide__section-title,
.page-resources-c1-cockfighting-live-viewing-guide__cta-final .page-resources-c1-cockfighting-live-viewing-guide__section-description {
  color: #ffffff;
}

/* Global image and video responsive styles */
.page-resources-c1-cockfighting-live-viewing-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-resources-c1-cockfighting-live-viewing-guide video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-c1-cockfighting-live-viewing-guide__main-title {
    font-size: 3em;
  }
  .page-resources-c1-cockfighting-live-viewing-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-c1-cockfighting-live-viewing-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__main-title {
    font-size: 2.5em;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__intro-text {
    font-size: 1em;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__section-description {
    font-size: 1em;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__btn-primary,
  .page-resources-c1-cockfighting-live-viewing-guide__btn-secondary,
  .page-resources-c1-cockfighting-live-viewing-guide__btn-small {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__btn-center {
    max-width: 100%;
  }

  .page-resources-c1-cockfighting-live-viewing-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-c1-cockfighting-live-viewing-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__section,
  .page-resources-c1-cockfighting-live-viewing-guide__card,
  .page-resources-c1-cockfighting-live-viewing-guide__container,
  .page-resources-c1-cockfighting-live-viewing-guide__video-section,
  .page-resources-c1-cockfighting-live-viewing-guide__video-container,
  .page-resources-c1-cockfighting-live-viewing-guide__video-wrapper,
  .page-resources-c1-cockfighting-live-viewing-guide__cta-buttons,
  .page-resources-c1-cockfighting-live-viewing-guide__button-group,
  .page-resources-c1-cockfighting-live-viewing-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-resources-c1-cockfighting-live-viewing-guide__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific offset */
  }

  .page-resources-c1-cockfighting-live-viewing-guide__features-grid,
  .page-resources-c1-cockfighting-live-viewing-guide__steps-grid,
  .page-resources-c1-cockfighting-live-viewing-guide__strategy-cards,
  .page-resources-c1-cockfighting-live-viewing-guide__match-list,
  .page-resources-c1-cockfighting-live-viewing-guide__game-categories,
  .page-resources-c1-cockfighting-live-viewing-guide__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-resources-c1-cockfighting-live-viewing-guide__hero-section {
    padding: 60px 15px;
  }
}