/* style/resources-live-cockfighting-commentary-guide.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #f9f9f9;
  --border-color: #e0e0e0;
  --button-login: #EA7C07;
}

.page-resources-live-cockfighting-commentary-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--secondary-color); /* Body background is white */
}

.page-resources-live-cockfighting-commentary-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, var(--primary-color), #40c0f0); /* Slightly darker gradient for contrast */
  color: var(--text-color-light);
  overflow: hidden;
}

.page-resources-live-cockfighting-commentary-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-resources-live-cockfighting-commentary-guide__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 90%;
}

.page-resources-live-cockfighting-commentary-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 80%;
  line-height: 1.5;
}

.page-resources-live-cockfighting-commentary-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login); /* Use specific login color for CTA */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-live-cockfighting-commentary-guide__cta-button:hover {
  background: #e06a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-commentary-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for image to fit better with text */
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-commentary-guide__content-area {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-resources-live-cockfighting-commentary-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-live-cockfighting-commentary-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-resources-live-cockfighting-commentary-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-live-cockfighting-commentary-guide__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-resources-live-cockfighting-commentary-guide p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.page-resources-live-cockfighting-commentary-guide__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-resources-live-cockfighting-commentary-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
}

.page-resources-live-cockfighting-commentary-guide__list li {
  margin-bottom: 10px;
  color: var(--text-color-dark);
}

.page-resources-live-cockfighting-commentary-guide__list strong {
  color: var(--primary-color);
}

.page-resources-live-cockfighting-commentary-guide__btn-primary {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  margin-right: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-live-cockfighting-commentary-guide__btn-primary:hover {
  background: #1f8ec4;
  transform: translateY(-2px);
}

.page-resources-live-cockfighting-commentary-guide__btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-live-cockfighting-commentary-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
}

/* FAQ styles */
.page-resources-live-cockfighting-commentary-guide__faq-list {
  margin-top: 40px;
}

.page-resources-live-cockfighting-commentary-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-live-cockfighting-commentary-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-live-cockfighting-commentary-guide__faq-question:hover {
  background: var(--background-color-light);
  border-color: #d0d0d0;
}

.page-resources-live-cockfighting-commentary-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-live-cockfighting-commentary-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color-dark);
  pointer-events: none;
}

.page-resources-live-cockfighting-commentary-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-live-cockfighting-commentary-guide__faq-item.active .page-resources-live-cockfighting-commentary-guide__faq-toggle {
  color: var(--text-color-dark);
  transform: rotate(45deg); /* Changed to rotate for a different effect */
}

.page-resources-live-cockfighting-commentary-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: var(--background-color-light);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-resources-live-cockfighting-commentary-guide__faq-item.active .page-resources-live-cockfighting-commentary-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-live-cockfighting-commentary-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: var(--text-color-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-live-cockfighting-commentary-guide__main-title {
    font-size: 40px;
  }
  .page-resources-live-cockfighting-commentary-guide__hero-description {
    font-size: 18px;
  }
  .page-resources-live-cockfighting-commentary-guide__section-title {
    font-size: 32px;
  }
  .page-resources-live-cockfighting-commentary-guide__sub-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-resources-live-cockfighting-commentary-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__main-title {
    font-size: 32px;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .page-resources-live-cockfighting-commentary-guide__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .page-resources-live-cockfighting-commentary-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-live-cockfighting-commentary-guide__hero-image {
    margin-top: 25px;
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-live-cockfighting-commentary-guide__content-area {
    padding: 40px 15px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__container {
    padding: 0;
  }

  .page-resources-live-cockfighting-commentary-guide__section-title {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-resources-live-cockfighting-commentary-guide__sub-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
  }

  .page-resources-live-cockfighting-commentary-guide p {
    font-size: 16px;
  }

  .page-resources-live-cockfighting-commentary-guide__content-image {
    margin: 25px auto;
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-live-cockfighting-commentary-guide__list {
    margin-left: 20px;
    font-size: 16px;
  }

  .page-resources-live-cockfighting-commentary-guide__btn-primary,
  .page-resources-live-cockfighting-commentary-guide__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
    margin-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-live-cockfighting-commentary-guide__btn-primary + .page-resources-live-cockfighting-commentary-guide__btn-secondary,
  .page-resources-live-cockfighting-commentary-guide__btn-secondary + .page-resources-live-cockfighting-commentary-guide__btn-primary {
    margin-top: 15px;
  }

  .page-resources-live-cockfighting-commentary-guide__faq-question {
    padding: 15px 20px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__faq-question h3 {
    font-size: 16px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__faq-answer {
    padding: 0 20px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__faq-item.active .page-resources-live-cockfighting-commentary-guide__faq-answer {
    padding: 15px 20px !important;
  }
}

/* Ensure all images and their containers are responsive on mobile */
.page-resources-live-cockfighting-commentary-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-resources-live-cockfighting-commentary-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-live-cockfighting-commentary-guide__section,
  .page-resources-live-cockfighting-commentary-guide__card,
  .page-resources-live-cockfighting-commentary-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-live-cockfighting-commentary-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}