/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Nền */
  color: #F2FFF6; /* Text Main */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Body đã có padding-top từ shared.css, chỉ cần một khoảng đệm nhỏ */
  min-height: 500px;
  box-sizing: border-box;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G với độ trong suốt */
  border-radius: 10px;
}

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

.page-cockfighting__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-cockfighting__btn-primary:hover {
  box-shadow: 0 0 15px #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
  transform: translateY(-2px);
}

.page-cockfighting__section {
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__dark-section {
  background-color: #11271B; /* Card B G */
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: 700;
}

.page-cockfighting__subsection-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-cockfighting p {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: left;
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__list,
.page-cockfighting__numbered-list {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 25px;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__list li,
.page-cockfighting__numbered-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-cockfighting__list li strong,
.page-cockfighting__numbered-list li strong {
  color: #22C768; /* Auxiliary */
}

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

.page-cockfighting__card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-icon,
.page-cockfighting__tournament-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__feature-title,
.page-cockfighting__card-title {
  font-size: 1.4em;
  color: #2AD16F; /* Button color, a bright green */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__btn-link {
  display: inline-block;
  margin-top: 15px;
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #F2C14E;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-cockfighting__btn-link:hover {
  color: #57E38D; /* Glow */
  border-color: #57E38D;
}

.page-cockfighting__full-width-btn {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
  display: block;
}

.page-cockfighting__faq-section {
  background-color: #08160F; /* Nền */
}

.page-cockfighting__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-cockfighting__faq-item {
  border-bottom: 1px solid #1E3A2A; /* Divider */
  padding: 20px 0;
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  padding-right: 10px;
}

.page-cockfighting__faq-item summary {
  list-style: none;
  cursor: pointer;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
  color: #22C768; /* Auxiliary */
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 10px;
}

.page-cockfighting__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 40px 15px;
  }

  .page-cockfighting__hero-content {
    padding: 15px;
  }

  .page-cockfighting__main-title {
    font-size: 2em;
  }

  .page-cockfighting__description {
    font-size: 1em;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

  .page-cockfighting__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-cockfighting__subsection-title {
    font-size: 1.5em;
  }

  .page-cockfighting p,
  .page-cockfighting li {
    font-size: 0.95em;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__tournament-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__card {
    padding: 20px;
  }

  .page-cockfighting__full-width-btn {
    max-width: 100%;
    margin: 30px auto 0 auto;
  }

  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-cockfighting__faq-question {
    font-size: 1.1em;
  }

  .page-cockfighting__faq-answer {
    font-size: 0.95em;
  }
}