.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

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

.page-cockfighting__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-cockfighting__section:last-of-type {
  border-bottom: none;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

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

.page-cockfighting__text-block a {
  color: #FFD36B;
  text-decoration: underline;
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__hero-title {
  font-weight: bold;
  color: #FFD36B; /* Glow */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
  margin-bottom: 20px;
  /* Use clamp for responsive font size without fixed large value */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A; /* Ensure dark text on bright button */
  border: none;
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

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

.page-cockfighting__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: #FFD36B;
  color: #0A0A0A;
}

.page-cockfighting__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-small:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-cockfighting__btn-text {
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting__btn-text:hover {
  color: #FFD86A;
  text-decoration: underline;
}

/* Game Features Section */
.page-cockfighting__game-features .page-cockfighting__section-title {
  color: #FFD36B;
}

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

.page-cockfighting__feature-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  border: 1px solid #3A2A12;
}

.page-cockfighting__feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 1px solid #3A2A12;
}

.page-cockfighting__feature-card .page-cockfighting__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B;
  padding: 0 20px;
}

.page-cockfighting__feature-card .page-cockfighting__card-description {
  font-size: 15px;
  color: #FFF6D6;
  padding: 0 20px;
}

/* How to Play Section */
.page-cockfighting__how-to-play .page-cockfighting__section-title {
  color: #FFD36B;
}

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

.page-cockfighting__step-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-cockfighting__step-description {
  font-size: 15px;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
  padding: 80px 0;
}

.page-cockfighting__why-choose-us .page-cockfighting__section-title {
  color: #FFD36B;
}

.page-cockfighting__advantages-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-cockfighting__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #FFF6D6;
}

.page-cockfighting__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD36B;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-cockfighting__cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__cta-wrapper img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

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

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B; /* Glow */
  font-weight: bold;
  font-size: 18px;
}

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

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: #222222;
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B;
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 12px 12px;
  color: #FFF6D6;
}

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

.page-cockfighting__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}

/* Blog Promo Section */
.page-cockfighting__blog-promo {
  background-color: #0A0A0A;
}

.page-cockfighting__blog-promo .page-cockfighting__section-title {
  color: #FFD36B;
}

.page-cockfighting__blog-promo .page-cockfighting__text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-cockfighting__blog-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-cockfighting__blog-card .page-cockfighting__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__blog-card .page-cockfighting__card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD36B;
  line-height: 1.3;
}

.page-cockfighting__blog-card .page-cockfighting__card-title a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__blog-card .page-cockfighting__card-title a:hover {
  color: #FFD86A;
  text-decoration: underline;
}

.page-cockfighting__blog-card .page-cockfighting__card-meta {
  font-size: 13px;
  color: #F2C14E; /* Primary color for meta */
  margin-bottom: 10px;
}

.page-cockfighting__blog-card .page-cockfighting__card-description {
  font-size: 15px;
  color: #FFF6D6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-cockfighting__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 30px;
  }
  .page-cockfighting__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 15px;
  }
  .page-cockfighting__section {
    padding: 40px 0;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting__hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-cockfighting__hero-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-cockfighting__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__cta-button,
  .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__hero-cta-group .page-cockfighting__cta-button {
    width: auto; /* Allow buttons to size to content */
    align-self: stretch; /* Make them fill available width if in flex column */
  }
  .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: 10px;
  }
  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__feature-card img,
  .page-cockfighting__blog-card img {
    
  }
  .page-cockfighting__feature-card .page-cockfighting__card-title,
  .page-cockfighting__step-title,
  .page-cockfighting__blog-card .page-cockfighting__card-title {
    font-size: 19px;
  }
  .page-cockfighting__feature-card .page-cockfighting__card-description,
  .page-cockfighting__step-description,
  .page-cockfighting__blog-card .page-cockfighting__card-description {
    font-size: 14px;
  }
  .page-cockfighting__advantages-list {
    margin: 20px auto;
  }
  .page-cockfighting__list-item {
    font-size: 15px;
    padding-left: 25px;
  }
  .page-cockfighting__list-item::before {
    font-size: 18px;
  }
  .page-cockfighting__cta-wrapper img {
    max-width: 100%;
    border-radius: 8px;
  }
  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 15px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 20px 20px;
  }
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }
  .page-cockfighting__blog-card .page-cockfighting__card-content {
    padding: 15px;
  }
}