:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg: #2A1212;
  --page-bg: #140C0C;
  --text-main: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red: #7E0D0D;

  --light-bg-text: #333333;
  --dark-bg-text: #FFF1E8;
}

.page-cockfighting {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--page-bg);
  color: var(--dark-bg-text);
}

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

/* --- 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, header offset handled by shared.css body padding */
  background-color: var(--page-bg);
  color: var(--dark-bg-text);
}

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

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

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

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

.page-cockfighting__hero-content h1 {
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-content p {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* --- General Section Styles --- */
.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__download-guide-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-cockfighting__introduction-section,
.page-cockfighting__download-guide-section,
.page-cockfighting__faq-section {
  background-color: #1a1a1a;
  color: var(--dark-bg-text);
}

.page-cockfighting__features-section,
.page-cockfighting__promotions-section,
.page-cockfighting__cta-section {
  background-color: var(--card-bg);
  color: var(--dark-bg-text);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-main);
  text-align: justify;
}

.page-cockfighting ul,
.page-cockfighting ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--text-main);
}

.page-cockfighting ul li,
.page-cockfighting ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-cockfighting ul li strong,
.page-cockfighting ol li strong {
  color: var(--gold-color);
}

.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* --- FAQ Section Specifics --- */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  color: var(--dark-bg-text);
  box-shadow: 0 5px 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;
  background-color: var(--deep-red);
  color: var(--text-main);
}

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-color: var(--primary-color);
}

.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color);
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  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: var(--card-bg);
  border-radius: 0 0 10px 10px;
}

.page-cockfighting__faq-answer p {
  color: var(--text-main);
  text-align: justify;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-cockfighting__container {
    padding: 20px 30px;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting p,
  .page-cockfighting ul li,
  .page-cockfighting ol li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__hero-image img {
    border-radius: 4px;
  }
  .page-cockfighting__hero-content h1 {
    font-size: 1.8em;
  }
  .page-cockfighting__hero-content p {
    font-size: 1em;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__features-section,
  .page-cockfighting__download-guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-section {
    padding: 40px 0;
  }

  .page-cockfighting__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting h3 {
    font-size: 1.5em;
  }
  .page-cockfighting p {
    font-size: 0.95em;
  }
  .page-cockfighting ul li,
  .page-cockfighting ol li {
    font-size: 0.95em;
  }

  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
  }

  details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 1em;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting__cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}