.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-cockfighting__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-cockfighting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-cockfighting__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__hero-button:hover {
  background-color: #f0c200;
  color: #6a0000;
  transform: translateY(-3px);
}

.page-cockfighting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cockfighting__intro-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__tips-section,
.page-cockfighting__why-choose-nohu67-section,
.page-cockfighting__cta-section,
.page-cockfighting__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__intro-section {
  background-color: #ffffff;
}

.page-cockfighting__intro-title,
.page-cockfighting__how-to-play-title,
.page-cockfighting__tips-title,
.page-cockfighting__why-choose-nohu67-title,
.page-cockfighting__cta-title,
.page-cockfighting__faq-title {
  font-size: 2.5em;
  color: #8B0000;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-cockfighting__intro-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-cockfighting__intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__intro-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-cockfighting__intro-item-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-cockfighting__intro-item-description {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting__how-to-play-section {
  background-color: #f8f8f8;
}

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

.page-cockfighting__step-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-cockfighting__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #8B0000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #8B0000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-cockfighting__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-cockfighting__step-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting__step-button:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-cockfighting__tips-section {
  background-color: #ffffff;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-cockfighting__tips-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-cockfighting__tips-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-cockfighting__tips-text {
  font-size: 1em;
  color: #444444;
}

.page-cockfighting__tips-text strong {
  color: #8B0000;
}

.page-cockfighting__why-choose-nohu67-section {
  background-color: #f8f8f8;
}

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

.page-cockfighting__advantage-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-cockfighting__advantage-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-cockfighting__advantage-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-cockfighting__advantage-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-cockfighting__download-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-cockfighting__download-button:hover {
  background-color: #f0c200;
  color: #6a0000;
}

.page-cockfighting__cta-section {
  background: linear-gradient(90deg, #8B0000, #a00000);
  color: #ffffff;
  padding: 70px 0;
}

.page-cockfighting__cta-content {
  max-width: 900px;
}

.page-cockfighting__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-button:hover {
  background-color: #f0c200;
  color: #6a0000;
  transform: translateY(-5px);
}

.page-cockfighting__faq-section {
  background-color: #ffffff;
}

.page-cockfighting__faq-accordion {
  margin-top: 40px;
  text-align: left;
}

.page-cockfighting__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  font-size: 1.4em;
  color: #8B0000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #FFD700;
  color: #8B0000;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: #f0c200;
}

.page-cockfighting__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-cockfighting__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #ffffff;
  color: #555555;
}

.page-cockfighting__faq-answer p {
  padding: 15px 0;
  margin: 0;
  border-top: 1px solid #eee;
}

@media (max-width: 992px) {
  .page-cockfighting__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting__intro-title,
  .page-cockfighting__how-to-play-title,
  .page-cockfighting__tips-title,
  .page-cockfighting__why-choose-nohu67-title,
  .page-cockfighting__cta-title,
  .page-cockfighting__faq-title {
    font-size: 2em;
  }
  .page-cockfighting__intro-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__tips-list,
  .page-cockfighting__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__tips-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 60px 0;
  }
  .page-cockfighting__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
  }
  .page-cockfighting__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting__intro-title,
  .page-cockfighting__how-to-play-title,
  .page-cockfighting__tips-title,
  .page-cockfighting__why-choose-nohu67-title,
  .page-cockfighting__cta-title,
  .page-cockfighting__faq-title {
    font-size: 1.8em;
  }
  .page-cockfighting__cta-title {
    font-size: 2em;
  }
  .page-cockfighting__cta-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-cockfighting__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting__intro-item-title,
  .page-cockfighting__step-title,
  .page-cockfighting__advantage-title {
    font-size: 1.4em;
  }
  .page-cockfighting__cta-title {
    font-size: 1.6em;
  }
  .page-cockfighting__cta-description {
    font-size: 1em;
  }
}