/* style/resources-cockfighting-betting-tips.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --background-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-dark: #333333;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;
}

.page-resources-cockfighting-betting-tips {
  color: var(--text-light); /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-cockfighting-betting-tips__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assumes shared.css handles body padding-top */
}

.page-resources-cockfighting-betting-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-cockfighting-betting-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-cockfighting-betting-tips__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: var(--text-light);
}

.page-resources-cockfighting-betting-tips__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-cockfighting-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

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

.page-resources-cockfighting-betting-tips__btn-primary,
.page-resources-cockfighting-betting-tips__btn-secondary,
.page-resources-cockfighting-betting-tips__text-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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;
  text-align: center;
}

.page-resources-cockfighting-betting-tips__btn-primary {
  background-color: var(--button-register-bg);
  color: var(--button-text-color);
  border: 2px solid var(--button-register-bg);
}

.page-resources-cockfighting-betting-tips__btn-primary:hover {
  background-color: darken(var(--button-register-bg), 10%);
  border-color: darken(var(--button-register-bg), 10%);
}

.page-resources-cockfighting-betting-tips__btn-secondary {
  background-color: transparent;
  color: var(--button-text-color);
  border: 2px solid var(--button-login-bg);
}

.page-resources-cockfighting-betting-tips__btn-secondary:hover {
  background-color: var(--button-login-bg);
  color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__text-link {
  color: var(--primary-color);
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-resources-cockfighting-betting-tips__text-link:hover {
  color: darken(var(--primary-color), 10%);
}

.page-resources-cockfighting-betting-tips__content-section {
  padding: 60px 0;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text for light background */
}

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

.page-resources-cockfighting-betting-tips__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  margin-top: 40px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-resources-cockfighting-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-cockfighting-betting-tips__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-cockfighting-betting-tips__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

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

.page-resources-cockfighting-betting-tips__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--secondary-color);
  border-bottom: 1px solid #eee;
}

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

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

.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 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #fefefe;
  color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-resources-cockfighting-betting-tips__cta-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-resources-cockfighting-betting-tips__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

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

  .page-resources-cockfighting-betting-tips__hero-description {
    font-size: 1.1em;
  }

  .page-resources-cockfighting-betting-tips__section-title {
    font-size: 2em;
  }

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

  .page-resources-cockfighting-betting-tips__cta-title {
    font-size: 2.5em;
  }

  .page-resources-cockfighting-betting-tips__cta-description {
    font-size: 1.1em;
  }
}

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

  .page-resources-cockfighting-betting-tips__hero-section {
    height: auto;
    min-height: 300px;
    padding: 60px 0; /* Adjust padding for mobile hero */
    padding-top: 0; /* Assumes shared.css handles body padding-top */
  }

  .page-resources-cockfighting-betting-tips__hero-content {
    padding: 15px;
  }

  .page-resources-cockfighting-betting-tips__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-cockfighting-betting-tips__hero-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-resources-cockfighting-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .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;
    padding: 12px 15px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-cockfighting-betting-tips__content-section {
    padding: 40px 0;
  }

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

  .page-resources-cockfighting-betting-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .page-resources-cockfighting-betting-tips__paragraph {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

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

  .page-resources-cockfighting-betting-tips__image-wrapper {
    margin: 20px 0;
  }

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

  .page-resources-cockfighting-betting-tips__faq-answer {
    padding: 0 20px;
  }

  .page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-answer {
    padding: 10px 20px;
  }

  .page-resources-cockfighting-betting-tips__cta-section {
    padding: 60px 0;
  }

  .page-resources-cockfighting-betting-tips__cta-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-cockfighting-betting-tips__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Ensure all content containers are responsive */
  .page-resources-cockfighting-betting-tips__section,
  .page-resources-cockfighting-betting-tips__card,
  .page-resources-cockfighting-betting-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color contrast safety */
.page-resources-cockfighting-betting-tips__dark-bg {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-resources-cockfighting-betting-tips__light-bg {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-cockfighting-betting-tips__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
}

.page-resources-cockfighting-betting-tips__faq-question {
  background-color: var(--secondary-color);
}

.page-resources-cockfighting-betting-tips__faq-item.active .page-resources-cockfighting-betting-tips__faq-answer {
  background-color: #f8f8f8;
}

.page-resources-cockfighting-betting-tips__btn-primary {
  background: var(--button-register-bg);
  color: var(--button-text-color);
  border-color: var(--button-register-bg);
}

.page-resources-cockfighting-betting-tips__btn-secondary {
  background: transparent;
  color: var(--button-text-color);
  border-color: var(--button-login-bg);
}

.page-resources-cockfighting-betting-tips__btn-secondary:hover {
  background: var(--button-login-bg);
  color: var(--secondary-color);
}