.page-cockfighting {
  font-family: 'Arial', sans-serif;
  background-color: var(--site-bg); /* Inherit from shared.css */
  color: #FFF6D6; /* Text Main */
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting__section-intro,
.page-cockfighting__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Hero Section */
.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, #0A0A0A 100%); /* Background color */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border color */
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #FFD36B; /* Glow color */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__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: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  filter: brightness(1.1);
}

.page-cockfighting__btn-secondary {
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #F2C14E; /* Main color border */
}

.page-cockfighting__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #222222;
  color: #FFF6D6;
  border-color: #FFD36B;
}

/* About Section */
.page-cockfighting__about-section .page-cockfighting__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-cockfighting__about-section p {
  text-align: justify;
  line-height: 1.7;
  font-size: 1em;
  margin-bottom: 0;
}

.page-cockfighting__about-section .page-cockfighting__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

/* Game Types Section */
.page-cockfighting__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__type-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-cockfighting__type-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-cockfighting__type-card .page-cockfighting__card-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow color */
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-cockfighting__type-card .page-cockfighting__card-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  padding: 0 15px 20px;
  line-height: 1.6;
  text-align: justify;
}

/* Guide Section */
.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-cockfighting__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
}

.page-cockfighting__step-item::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #F2C14E; /* Main color */
  color: #111111; /* Dark text for bright background */
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-cockfighting__step-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow color */
  margin-top: 10px;
  margin-bottom: 15px;
}

.page-cockfighting__step-item p {
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 0;
}

/* Tips Section */
.page-cockfighting__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__tip-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__tip-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-cockfighting__tip-title {
  font-size: 1.3em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-cockfighting__tip-item p {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.page-cockfighting__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__promo-card:hover {
  transform: translateY(-5px);
}

.page-cockfighting__promo-card .page-cockfighting__card-image {
  height: 220px; /* Consistent height for promo images */
}

.page-cockfighting__promo-card .page-cockfighting__card-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow color */
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-cockfighting__promo-card .page-cockfighting__card-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px;
  line-height: 1.6;
  flex-grow: 1;
  text-align: justify;
}

.page-cockfighting__btn-small {
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-cockfighting__btn-small:hover {
  filter: brightness(1.1);
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #FFD36B; /* Glow color */
  font-weight: bold;
  font-size: 1.2em;
  list-style: none; /* For details/summary default marker */
}

.page-cockfighting__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-cockfighting__faq-question::marker {
  display: none;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

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

.page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.7;
}

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

/* Conclusion Section */
.page-cockfighting__conclusion-section {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 60px;
}

.page-cockfighting__conclusion-section .page-cockfighting__description {
  margin-bottom: 40px;
}

/* General image and link styles */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}