/* style/cockfighting-betting-tips.css */
.page-cockfighting-betting-tips {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-cockfighting-betting-tips__dark-bg {
  background-color: #0a0a0a; /* Body background from shared.css */
  color: #ffffff;
}

.page-cockfighting-betting-tips__light-bg {
  background-color: #1a1a1a; /* Slightly lighter background for contrast sections */
  color: #ffffff;
}

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

.page-cockfighting-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

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

.page-cockfighting-betting-tips__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #26A9E0;
  max-width: 100%; /* Ensure H1 doesn't overflow */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-cockfighting-betting-tips__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-cockfighting-betting-tips__btn-primary,
.page-cockfighting-betting-tips__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-betting-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-cockfighting-betting-tips__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-cockfighting-betting-tips__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting-betting-tips__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #26A9E0;
  font-weight: 700;
  line-height: 1.3;
}

.page-cockfighting-betting-tips__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-cockfighting-betting-tips__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-betting-tips__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-cockfighting-betting-tips__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.05em;
  border-left: 4px solid #26A9E0;
}

.page-cockfighting-betting-tips__list-item strong {
  color: #26A9E0;
}

.page-cockfighting-betting-tips__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting-betting-tips__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-cockfighting-betting-tips__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-cockfighting-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

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

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

.page-cockfighting-betting-tips__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-cockfighting-betting-tips__faq-answer p {
  margin: 0;
  text-align: left;
}

.page-cockfighting-betting-tips__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-cockfighting-betting-tips__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting-betting-tips__cta-content {
  max-width: 800px;
}

.page-cockfighting-betting-tips__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
}

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

.page-cockfighting-betting-tips__cta-button {
  background-color: #EA7C07; /* Login color */
  border-color: #EA7C07;
  font-size: 1.1em;
  padding: 15px 35px;
}

.page-cockfighting-betting-tips__cta-button:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

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

@media (max-width: 768px) {
  .page-cockfighting-betting-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting-betting-tips__hero-section,
  .page-cockfighting-betting-tips__section,
  .page-cockfighting-betting-tips__faq-section,
  .page-cockfighting-betting-tips__cta-section {
    padding: 40px 0;
  }
  .page-cockfighting-betting-tips__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting-betting-tips__hero-image,
  .page-cockfighting-betting-tips__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-betting-tips__hero-image-wrapper {
    max-height: 400px;
  }
  .page-cockfighting-betting-tips__main-title {
    font-size: 2.2em;
  }
  .page-cockfighting-betting-tips__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-tips__cta-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary,
  .page-cockfighting-betting-tips__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting-betting-tips__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-cockfighting-betting-tips__faq-answer {
    padding: 10px 20px 15px 20px;
  }
  .page-cockfighting-betting-tips__text-block,
  .page-cockfighting-betting-tips__list-item,
  .page-cockfighting-betting-tips__faq-answer p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-betting-tips__main-title {
    font-size: 1.8em;
  }
  .page-cockfighting-betting-tips__hero-section {
    padding-bottom: 40px;
  }
  .page-cockfighting-betting-tips__hero-image-wrapper {
    max-height: 300px;
  }
}