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

.page-cockfighting-betting-guide {
  background-color: var(--color-background);
  color: var(--color-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-cockfighting-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-cockfighting-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
}

.page-cockfighting-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-cockfighting-betting-guide__main-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting-betting-guide__lead-text {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.page-cockfighting-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-betting-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-guide__cta-button--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-cockfighting-betting-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-divider);
}

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

.page-cockfighting-betting-guide__section-title {
  font-size: 2em;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-cockfighting-betting-guide__paragraph {
  font-size: 1.05em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-betting-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-betting-guide__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-cockfighting-betting-guide__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 30px 0;
}

.page-cockfighting-betting-guide__list-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--color-text-main);
}

.page-cockfighting-betting-guide__list-title {
  font-size: 1.3em;
  color: var(--color-gold);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting-betting-guide__list-description {
  color: var(--color-text-secondary);
  font-size: 1em;
  line-height: 1.5;
}

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

.page-cockfighting-betting-guide__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--color-gold);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-cockfighting-betting-guide__faq-item[open] > .page-cockfighting-betting-guide__faq-question {
  background-color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.page-cockfighting-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-cockfighting-betting-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 15px;
  color: var(--color-text-main);
}

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

.page-cockfighting-betting-guide__faq-answer {
  padding: 20px 25px;
  color: var(--color-text-secondary);
  font-size: 1em;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-betting-guide__main-title {
    font-size: 2em;
  }

  .page-cockfighting-betting-guide__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-betting-guide__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-cockfighting-betting-guide__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-cockfighting-betting-guide__hero-content {
    margin-top: 30px;
  }

  .page-cockfighting-betting-guide__main-title {
    font-size: 1.8em !important;
    margin-bottom: 15px;
  }

  .page-cockfighting-betting-guide__lead-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-cockfighting-betting-guide__cta-button,
  .page-cockfighting-betting-guide__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px !important;
    font-size: 1em !important;
    margin-bottom: 15px;
  }

  .page-cockfighting-betting-guide__section {
    padding: 40px 0;
  }

  .page-cockfighting-betting-guide__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-betting-guide__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-cockfighting-betting-guide__paragraph,
  .page-cockfighting-betting-guide__list-description {
    font-size: 0.95em;
  }

  .page-cockfighting-betting-guide__list-item {
    padding: 20px;
  }

  .page-cockfighting-betting-guide__list-title {
    font-size: 1.2em;
  }

  .page-cockfighting-betting-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-cockfighting-betting-guide__faq-answer {
    padding: 15px 20px;
  }

  /* Image responsiveness */
  .page-cockfighting-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-betting-guide__content-image {
    margin: 30px auto;
  }
}