/* style/cockfighting-betting-guide.css */

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

/* General page styling */
.page-cockfighting-betting-guide {
  color: var(--vnq8-text-main); /* Light text for dark background */
  background-color: var(--vnq8-background);
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.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: 2.5em;
  color: var(--vnq8-gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-betting-guide__sub-title {
  font-size: 1.5em;
  color: var(--vnq8-text-main);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting-betting-guide__text-block {
  margin-bottom: 15px;
  color: var(--vnq8-text-secondary);
}

.page-cockfighting-betting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--vnq8-text-secondary);
}

.page-cockfighting-betting-guide__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--vnq8-text-secondary);
}

.page-cockfighting-betting-guide__list-item {
  margin-bottom: 8px;
}

.page-cockfighting-betting-guide a {
  color: var(--vnq8-secondary-color);
  text-decoration: none;
}

.page-cockfighting-betting-guide a:hover {
  text-decoration: underline;
}

/* CTA Buttons */
.page-cockfighting-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-cockfighting-betting-guide__btn-primary,
.page-cockfighting-betting-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

.page-cockfighting-betting-guide__btn-primary {
  background: var(--vnq8-button-gradient);
  color: var(--vnq8-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting-betting-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-cockfighting-betting-guide__btn-secondary:hover {
  background: var(--vnq8-secondary-color);
  color: var(--vnq8-text-main);
  transform: translateY(-2px);
}

/* Hero Section */
.page-cockfighting-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-cockfighting-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  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: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  background-color: var(--vnq8-card-bg); /* Dark background for text */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--vnq8-border-color);
}

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

.page-cockfighting-betting-guide__description {
  font-size: 1.15em;
  color: var(--vnq8-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.page-cockfighting-betting-guide__introduction-section,
.page-cockfighting-betting-guide__rules-section,
.page-cockfighting-betting-guide__guide-section,
.page-cockfighting-betting-guide__strategy-section,
.page-cockfighting-betting-guide__promotions-section,
.page-cockfighting-betting-guide__safety-section,
.page-cockfighting-betting-guide__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--vnq8-divider-color);
}

.page-cockfighting-betting-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

/* FAQ Section */
.page-cockfighting-betting-guide__faq-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--vnq8-divider-color);
}

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

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

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

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

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

.page-cockfighting-betting-guide__faq-question .page-cockfighting-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-cockfighting-betting-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: var(--vnq8-text-secondary);
}

.page-cockfighting-betting-guide__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-betting-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-cockfighting-betting-guide__section-title {
    font-size: 2em;
  }
}

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

  .page-cockfighting-betting-guide__hero-section {
    padding-bottom: 30px;
  }

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

  .page-cockfighting-betting-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-cockfighting-betting-guide__description {
    font-size: 1em;
  }

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

  .page-cockfighting-betting-guide__sub-title {
    font-size: 1.3em;
  }

  .page-cockfighting-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-betting-guide__btn-primary,
  .page-cockfighting-betting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsiveness */
  .page-cockfighting-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-betting-guide__hero-image-wrapper,
  .page-cockfighting-betting-guide__image-content,
  .page-cockfighting-betting-guide__container,
  .page-cockfighting-betting-guide__section,
  .page-cockfighting-betting-guide__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-betting-guide__introduction-section,
  .page-cockfighting-betting-guide__rules-section,
  .page-cockfighting-betting-guide__guide-section,
  .page-cockfighting-betting-guide__strategy-section,
  .page-cockfighting-betting-guide__promotions-section,
  .page-cockfighting-betting-guide__safety-section,
  .page-cockfighting-betting-guide__conclusion-section,
  .page-cockfighting-betting-guide__faq-section {
    padding: 40px 0;
  }

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

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