/* style/resources-cockfighting-betting-tips.css */
.page-resources-cockfighting-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #1a1a2e; /* Inherited from body via shared.css */
}

.page-resources-cockfighting-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
}

.page-resources-cockfighting-betting-tips__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-cockfighting-betting-tips__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-resources-cockfighting-betting-tips__video-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.page-resources-cockfighting-betting-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

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

.page-resources-cockfighting-betting-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-cockfighting-betting-tips__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-cockfighting-betting-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-cockfighting-betting-tips__dark-bg {
  background-color: #017439; /* Brand color */
  color: #ffffff;
}

.page-resources-cockfighting-betting-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-cockfighting-betting-tips__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-cockfighting-betting-tips__subsection-title {
  font-size: 1.8em;
  color: inherit;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-cockfighting-betting-tips__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: inherit;
}

.page-resources-cockfighting-betting-tips__text-block ul,
.page-resources-cockfighting-betting-tips__text-block ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: inherit;
}

.page-resources-cockfighting-betting-tips__text-block li {
  margin-bottom: 8px;
  color: inherit;
}

.page-resources-cockfighting-betting-tips__btn-primary,
.page-resources-cockfighting-betting-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-cockfighting-betting-tips__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-cockfighting-betting-tips__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-resources-cockfighting-betting-tips__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color */
  border: 2px solid #017439;
}

.page-resources-cockfighting-betting-tips__dark-bg .page-resources-cockfighting-betting-tips__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-resources-cockfighting-betting-tips__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-cockfighting-betting-tips__dark-bg .page-resources-cockfighting-betting-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-resources-cockfighting-betting-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-cockfighting-betting-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-cockfighting-betting-tips__image--centered {
  text-align: center;
}

/* FAQ Styles */
.page-resources-cockfighting-betting-tips__faq-list {
  margin-top: 30px;
}

.page-resources-cockfighting-betting-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Light background for dark sections */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__faq-item {
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-cockfighting-betting-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-cockfighting-betting-tips__light-bg .page-resources-cockfighting-betting-tips__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-cockfighting-betting-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-cockfighting-betting-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px;
}

.page-resources-cockfighting-betting-tips__faq-answer p {
  margin-bottom: 0;
  color: inherit;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-cockfighting-betting-tips__hero-title {
    font-size: 3em;
  }
  .page-resources-cockfighting-betting-tips__hero-description {
    font-size: 1.2em;
  }
  .page-resources-cockfighting-betting-tips__section-title {
    font-size: 2em;
  }
  .page-resources-cockfighting-betting-tips__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-cockfighting-betting-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-cockfighting-betting-tips__hero-section {
    padding: 60px 15px;
    min-height: 450px;
  }
  .page-resources-cockfighting-betting-tips__hero-title {
    font-size: 2.2em;
  }
  .page-resources-cockfighting-betting-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-cockfighting-betting-tips__section {
    padding: 40px 15px;
  }
  .page-resources-cockfighting-betting-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-cockfighting-betting-tips__subsection-title {
    font-size: 1.3em;
  }
  .page-resources-cockfighting-betting-tips__text-block p,
  .page-resources-cockfighting-betting-tips__text-block li {
    font-size: 1em;
  }

  /* Mobile image specific styles */
  .page-resources-cockfighting-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-cockfighting-betting-tips__section,
  .page-resources-cockfighting-betting-tips__card,
  .page-resources-cockfighting-betting-tips__container,
  .page-resources-cockfighting-betting-tips__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Mobile video specific styles */
  .page-resources-cockfighting-betting-tips video,
  .page-resources-cockfighting-betting-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-cockfighting-betting-tips__video-section,
  .page-resources-cockfighting-betting-tips__video-container,
  .page-resources-cockfighting-betting-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px; /* Video is full width in hero, no extra padding */
    padding-right: 0px;
    overflow: hidden !important;
  }
  .page-resources-cockfighting-betting-tips__hero-video-wrapper {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video is below header */
  }

  /* Mobile button specific styles */
  .page-resources-cockfighting-betting-tips__cta-button,
  .page-resources-cockfighting-betting-tips__btn-primary,
  .page-resources-cockfighting-betting-tips__btn-secondary,
  .page-resources-cockfighting-betting-tips a[class*="button"],
  .page-resources-cockfighting-betting-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    margin: 5px 0 !important;
  }
  .page-resources-cockfighting-betting-tips__cta-buttons,
  .page-resources-cockfighting-betting-tips__button-group,
  .page-resources-cockfighting-betting-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
}