.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Specific top padding */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using brand colors for hero background */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-cockfighting__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  color: #f0f8ff;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* General Section Styling */
.page-cockfighting__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
}

.page-cockfighting__dark-bg .page-cockfighting__section-title,
.page-cockfighting__dark-bg .page-cockfighting__card-title,
.page-cockfighting__dark-bg .page-cockfighting__item-title {
  color: #ffffff;
}

.page-cockfighting__dark-bg .page-cockfighting__text-block,
.page-cockfighting__dark-bg .page-cockfighting__card-text,
.page-cockfighting__dark-bg .page-cockfighting__item-description {
  color: #f0f8ff;
}

.page-cockfighting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.page-cockfighting__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #1F2D3D; /* Text Main */
  border: 1px solid #D6E2FF; /* Border */
}

.page-cockfighting__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-cockfighting__card-text {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

.page-cockfighting__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__card-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__btn-secondary:hover {
  background-color: #F4F7FB;
  color: #2F6BFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Intro Section */
.page-cockfighting__intro-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
}

.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Bet Types Section */
.page-cockfighting__bet-types-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-cockfighting__bet-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-cockfighting__bet-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF; /* Border */
}

.page-cockfighting__bet-item .page-cockfighting__item-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-cockfighting__bet-item .page-cockfighting__item-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-cockfighting__guide-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF; /* Border */
}

.page-cockfighting__guide-item .page-cockfighting__item-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-cockfighting__guide-item .page-cockfighting__item-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-cockfighting__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Safety Section */
.page-cockfighting__safety-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
}

.page-cockfighting__safety-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-cockfighting__safety-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF; /* Border */
}

.page-cockfighting__safety-item .page-cockfighting__item-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-cockfighting__safety-item .page-cockfighting__item-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-cockfighting__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #ffffff;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  background-color: #f0f5ff;
  color: #2F6BFF;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(180deg);
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #2F6BFF;
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-cockfighting__faq-answer p {
  margin-bottom: 15px;
}

.page-cockfighting__faq-answer .page-cockfighting__btn-primary {
  margin-top: 10px;
}

/* CTA Section */
.page-cockfighting__cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  text-align: center;
  color: #ffffff;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Highlight text */
.page-cockfighting .highlight {
  color: #000000; /* Custom Color_1776249996415 */
  font-weight: 600;
}

.page-cockfighting__dark-bg .highlight {
  color: #A5C4FF; /* Glow */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-section {
    padding-bottom: 30px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-cockfighting__hero-description {
    font-size: clamp(1em, 2.2vw, 1.1em);
  }

  .page-cockfighting__hero-image {
    width: 90%;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.6em, 3vw, 2.2em);
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__bet-list,
  .page-cockfighting__promotion-grid,
  .page-cockfighting__safety-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .page-cockfighting__card,
  .page-cockfighting__bet-item,
  .page-cockfighting__guide-item,
  .page-cockfighting__safety-item,
  .page-cockfighting__faq-item {
    padding: 20px;
  }

  .page-cockfighting__card-title,
  .page-cockfighting__item-title {
    font-size: 1.3em;
  }

  .page-cockfighting__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 18px;
  }
}

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

  /* HERO 主图区域 */
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-cockfighting__hero-content {
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-cockfighting__hero-description {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

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

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

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

  .page-cockfighting__container,
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 25px;
  }

  .page-cockfighting__text-block {
    font-size: 1em;
  }

  /* 产品展示图区域 (features-grid, bet-list, promotion-grid, safety-list) */
  .page-cockfighting__features-grid,
  .page-cockfighting__bet-list,
  .page-cockfighting__promotion-grid,
  .page-cockfighting__safety-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-cockfighting__card,
  .page-cockfighting__bet-item,
  .page-cockfighting__guide-item,
  .page-cockfighting__safety-item,
  .page-cockfighting__faq-item {
    padding: 18px;
  }

  .page-cockfighting__card-title,
  .page-cockfighting__item-title {
    font-size: 1.2em;
  }

  /* 按钮与按钮容器 */
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting a[class*="button"],
  .page-cockfighting 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-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 15px;
    flex-direction: column;
  }

  .page-cockfighting__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
  }

  /* FAQ */
  .page-cockfighting__faq-question {
    font-size: 1em;
    padding: 15px 18px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 18px 15px;
  }
}