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

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

.page-cockfighting-betting-guide__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-cockfighting-betting-guide__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-color);
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-betting-guide__subsection-title {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-betting-guide__text-block {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-cockfighting-betting-guide__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-cockfighting-betting-guide__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-cockfighting-betting-guide__list-item strong {
  color: var(--gold-color);
}

.page-cockfighting-betting-guide__numbered-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item {
  counter-increment: step-counter;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold-color);
  color: var(--background-color);
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 10px;
}

.page-cockfighting-betting-guide__btn-primary,
.page-cockfighting-betting-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
}

.page-cockfighting-betting-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-cockfighting-betting-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

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

.page-cockfighting-betting-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-cockfighting-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-cockfighting-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Adjust to pull content up over the image slightly without overlap */
  padding: 40px;
  background: rgba(17, 39, 27, 0.95); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

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

.page-cockfighting-betting-guide__hero-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting-guide__cta-button {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Image containers for content */
.page-cockfighting-betting-guide__image-container {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
}

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

/* Bet Types Grid */
.page-cockfighting-betting-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting-betting-guide__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-cockfighting-betting-guide__card-header {
  margin-bottom: 15px;
}

.page-cockfighting-betting-guide__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting-betting-guide__card-text {
  font-size: 16px;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-cockfighting-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-cockfighting-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  list-style: none;
}

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

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

.page-cockfighting-betting-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-cockfighting-betting-guide__faq-item[open] .page-cockfighting-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-betting-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: fadein 0.3s ease-out;
}

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

.page-cockfighting-betting-guide__faq-link {
  color: var(--gold-color);
  text-decoration: underline;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

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

/* Conclusion Section */
.page-cockfighting-betting-guide__conclusion .page-cockfighting-betting-guide__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting-betting-guide__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-betting-guide__section {
    padding: 40px 15px;
  }

  .page-cockfighting-betting-guide__section-title {
    font-size: 28px;
  }

  .page-cockfighting-betting-guide__subsection-title {
    font-size: 20px;
  }

  .page-cockfighting-betting-guide__text-block {
    font-size: 16px;
  }

  .page-cockfighting-betting-guide__list-item,
  .page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item {
    padding: 15px;
    font-size: 15px;
    padding-left: 60px;
  }

  .page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item::before {
    width: 30px;
    height: 30px;
    font-size: 18px;
    left: 15px;
  }

  .page-cockfighting-betting-guide__numbered-list .page-cockfighting-betting-guide__list-item h3 {
    font-size: 18px;
  }

  .page-cockfighting-betting-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }

  .page-cockfighting-betting-guide__hero-content {
    margin-top: -80px;
    padding: 20px;
  }

  .page-cockfighting-betting-guide__main-title {
    font-size: 30px;
  }

  .page-cockfighting-betting-guide__hero-description {
    font-size: 16px;
  }

  .page-cockfighting-betting-guide__btn-primary,
  .page-cockfighting-betting-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-betting-guide__image-container {
    margin: 30px auto;
  }

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

  .page-cockfighting-betting-guide__section,
  .page-cockfighting-betting-guide__card,
  .page-cockfighting-betting-guide__container,
  .page-cockfighting-betting-guide__hero-content,
  .page-cockfighting-betting-guide__image-container,
  .page-cockfighting-betting-guide__faq-list,
  .page-cockfighting-betting-guide__btn-container {
    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__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-cockfighting-betting-guide__card-title {
    font-size: 20px;
  }

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

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

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}