.page-cockfighting-live-betting-guide {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--bg-color);
}

.page-cockfighting-live-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-cockfighting-live-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting-live-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure image is not too small */
}

.page-cockfighting-live-betting-guide__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-cockfighting-live-betting-guide__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-cockfighting-live-betting-guide__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

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

.page-cockfighting-live-betting-guide__btn-primary,
.page-cockfighting-live-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-live-betting-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-cockfighting-live-betting-guide__btn-primary:hover {
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-2px);
}

.page-cockfighting-live-betting-guide__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-cockfighting-live-betting-guide__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--bg-color);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
  transform: translateY(-2px);
}

.page-cockfighting-live-betting-guide__content-section {
  padding: 60px 0;
  color: var(--text-main-color);
}

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

.page-cockfighting-live-betting-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-cockfighting-live-betting-guide__subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-cockfighting-live-betting-guide__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-cockfighting-live-betting-guide__paragraph strong {
  color: var(--text-main-color);
}

.page-cockfighting-live-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-cockfighting-live-betting-guide__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--text-secondary-color);
  border: 1px solid var(--border-color);
}

.page-cockfighting-live-betting-guide__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-cockfighting-live-betting-guide__card-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  object-fit: cover;
}

.page-cockfighting-live-betting-guide__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-cockfighting-live-betting-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-cockfighting-live-betting-guide__step-item {
  padding: 30px;
}

.page-cockfighting-live-betting-guide__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main-color);
  margin-bottom: 15px;
}

.page-cockfighting-live-betting-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  object-fit: cover;
}

.page-cockfighting-live-betting-guide__bet-types,
.page-cockfighting-live-betting-guide__strategy-list,
.page-cockfighting-live-betting-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-cockfighting-live-betting-guide__bet-types li,
.page-cockfighting-live-betting-guide__strategy-list li {
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-secondary-color);
}

.page-cockfighting-live-betting-guide__promo-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary-color);
}

.page-cockfighting-live-betting-guide__promo-list li::before {
  content: '✓';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-cockfighting-live-betting-guide__promo-list strong {
  color: var(--text-main-color);
}

.page-cockfighting-live-betting-guide__faq-list {
  margin-top: 40px;
}

.page-cockfighting-live-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg-color);
}

.page-cockfighting-live-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting-live-betting-guide__faq-question:hover {
  background-color: var(--main-color);
}

.page-cockfighting-live-betting-guide__faq-item[open] .page-cockfighting-live-betting-guide__faq-question {
  background-color: var(--main-color);
}

.page-cockfighting-live-betting-guide__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting-live-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-cockfighting-live-betting-guide__faq-item[open] .page-cockfighting-live-betting-guide__faq-toggle {
  content: '−';
}

.page-cockfighting-live-betting-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  border-top: 1px solid var(--divider-color);
}

.page-cockfighting-live-betting-guide__faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting-live-betting-guide__cta-center {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-cockfighting-live-betting-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-cockfighting-live-betting-guide__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-betting-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-cockfighting-live-betting-guide__hero-content {
    margin-top: 30px;
  }
  .page-cockfighting-live-betting-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-cockfighting-live-betting-guide__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting-live-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-live-betting-guide__btn-primary,
  .page-cockfighting-live-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-cockfighting-live-betting-guide__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting-live-betting-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-cockfighting-live-betting-guide__paragraph,
  .page-cockfighting-live-betting-guide__card-description,
  .page-cockfighting-live-betting-guide__promo-list li,
  .page-cockfighting-live-betting-guide__faq-answer {
    font-size: 0.9rem;
  }
  .page-cockfighting-live-betting-guide__feature-grid,
  .page-cockfighting-live-betting-guide__step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting-live-betting-guide__card,
  .page-cockfighting-live-betting-guide__step-item,
  .page-cockfighting-live-betting-guide__bet-types li,
  .page-cockfighting-live-betting-guide__strategy-list li,
  .page-cockfighting-live-betting-guide__faq-item {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting-live-betting-guide__card-image,
  .page-cockfighting-live-betting-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-live-betting-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting-live-betting-guide__faq-toggle {
    font-size: 1.3rem;
  }
  .page-cockfighting-live-betting-guide__cta-center {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-betting-guide__hero-section {
    padding-bottom: 30px;
  }
  .page-cockfighting-live-betting-guide__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-cockfighting-live-betting-guide__hero-description {
    font-size: 0.9rem;
  }
  .page-cockfighting-live-betting-guide__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-cockfighting-live-betting-guide__card-title {
    font-size: 1.2rem;
  }
  .page-cockfighting-live-betting-guide__step-title {
    font-size: 1.1rem;
  }
}

/* Ensure all images meet minimum size requirements */
.page-cockfighting-live-betting-guide img {
  min-width: 200px;
  min-height: 200px;
}

/* Override specific element styles to enforce contrast */
.page-cockfighting-live-betting-guide h1,
.page-cockfighting-live-betting-guide h2,
.page-cockfighting-live-betting-guide h3,
.page-cockfighting-live-betting-guide h4,
.page-cockfighting-live-betting-guide h5,
.page-cockfighting-live-betting-guide h6 {
  color: var(--text-main-color);
}

.page-cockfighting-live-betting-guide p,
.page-cockfighting-live-betting-guide li {
  color: var(--text-secondary-color);
}

.page-cockfighting-live-betting-guide__btn-primary {
  color: #ffffff;
}

.page-cockfighting-live-betting-guide__btn-secondary {
  color: var(--gold-color);
}

/* Specific contrast adjustments for branded elements */
.page-cockfighting-live-betting-guide__main-title {
  color: var(--gold-color);
}

.page-cockfighting-live-betting-guide__section-title {
  color: var(--gold-color);
}

.page-cockfighting-live-betting-guide__subtitle {
  color: var(--accent-color);
}

.page-cockfighting-live-betting-guide__faq-question {
  color: var(--text-main-color);
}

.page-cockfighting-live-betting-guide__faq-toggle {
  color: var(--gold-color);
}