/* style/cockfighting-betting-tips.css */
.page-cockfighting-betting-tips {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Explicitly set for content area if needed */
}

/* Hero Section */
.page-cockfighting-betting-tips__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on shared for header offset */
  padding-bottom: 40px;
  background-color: #f0f8ff; /* Light background for the section */
  overflow: hidden;
}

.page-cockfighting-betting-tips__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

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

.page-cockfighting-betting-tips__hero-content {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.page-cockfighting-betting-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0; /* Brand color for title */
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  /* No fixed font-size, relying on browser defaults and responsiveness */
}

.page-cockfighting-betting-tips__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting-betting-tips__btn-primary,
.page-cockfighting-betting-tips__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

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

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

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

.page-cockfighting-betting-tips__btn-secondary:hover {
  background-color: #e0f2f7;
}

/* General Content Sections */
.page-cockfighting-betting-tips__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-cockfighting-betting-tips__section:nth-of-type(even) {
  background-color: #f9f9f9; /* Alternate background for readability */
}

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

.page-cockfighting-betting-tips__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting-betting-tips__subsection-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-betting-tips p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
}

.page-cockfighting-betting-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-cockfighting-betting-tips__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-cockfighting-betting-tips__content-image-wrapper {
  margin: 30px 0;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-cockfighting-betting-tips .keyword {
  color: #26A9E0; /* Highlight keywords */
  font-weight: bold;
}

/* Responsive design for tablets and mobiles */
@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__subsection-title {
    font-size: 1.4em;
  }

  .page-cockfighting-betting-tips__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-cockfighting-betting-tips__hero-section {
    padding-top: 10px !important; /* Enforce small top padding */
    padding-bottom: 30px;
  }

  .page-cockfighting-betting-tips__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-betting-tips__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting-betting-tips__main-title {
    font-size: 2.2em;
    margin-top: 15px;
    padding: 0 10px;
  }

  .page-cockfighting-betting-tips__description {
    font-size: 1em;
    padding: 0 10px;
  }

  /* 通用图片与容器 */
  .page-cockfighting-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-betting-tips__section,
  .page-cockfighting-betting-tips__card,
  .page-cockfighting-betting-tips__container,
  .page-cockfighting-betting-tips__content-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-cockfighting-betting-tips__section {
    padding: 40px 0;
  }

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

  .page-cockfighting-betting-tips__subsection-title {
    font-size: 1.2em;
    margin-top: 30px;
  }

  /* 按钮与按钮容器 */
  .page-cockfighting-betting-tips__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting-betting-tips__btn-primary,
  .page-cockfighting-betting-tips__btn-secondary {
    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;
    font-size: 0.95em !important;
  }
  
  /* 其他内容模块 */
  .page-cockfighting-betting-tips p,
  .page-cockfighting-betting-tips__list li {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-betting-tips__list {
    margin-left: 20px;
  }
}