:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --btn-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B; /* Body background color from shared.css */
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark body background */
  background-color: var(--deep-navy);
}

.page-cockfighting__section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-cockfighting__section-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(79, 168, 255, 0.5);
  line-height: 1.2;
}

.page-cockfighting__subsection-title {
  font-size: 2em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--gold-color);
  line-height: 1.3;
}

.page-cockfighting__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

.page-cockfighting__description-center {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
  text-align: center;
}

.page-cockfighting__text-center {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 20px auto;
  color: var(--text-secondary);
}

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

.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, body handles header offset */
  background: var(--deep-navy);
  color: var(--text-main);
  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;
  position: relative;
  z-index: 1;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-cockfighting__main-title {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 15px rgba(79, 168, 255, 0.7);
  line-height: 1.1;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--btn-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-cockfighting__introduction-section {
  background-color: var(--deep-navy);
  color: var(--text-secondary);
}

.page-cockfighting__introduction-section p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-cockfighting__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__image-wrapper--center {
  display: flex;
  justify-content: center;
}

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

.page-cockfighting__types-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-cockfighting__card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary);
}

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

.page-cockfighting__card-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-cockfighting__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 5px;
  margin-top: 15px;
  max-width: 100%;
  display: block;
}

.page-cockfighting__cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-cockfighting__benefits-section {
  background-color: var(--deep-navy);
  color: var(--text-secondary);
}

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

.page-cockfighting__benefit-item {
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
}

.page-cockfighting__benefit-item .page-cockfighting__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-cockfighting__benefit-item p {
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-cockfighting__guide-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-cockfighting__step-item {
  position: relative;
  padding-top: 60px;
  text-align: left;
}

.page-cockfighting__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gold-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
  border: 2px solid var(--glow-color);
}

.page-cockfighting__step-item .page-cockfighting__card-title {
  text-align: center;
  margin-top: 20px;
  font-size: 1.4em;
}

.page-cockfighting__step-item p {
  font-size: 1.05em;
  color: var(--text-secondary);
  text-align: center;
}

.page-cockfighting__strategy-section {
  background-color: var(--deep-navy);
  color: var(--text-secondary);
}

.page-cockfighting__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-cockfighting__strategy-list li {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
}

.page-cockfighting__list-heading {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting__promotions-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-cockfighting__promo-card {
  text-align: center;
}

.page-cockfighting__promo-card .page-cockcounting__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
}

.page-cockfighting__security-support-section {
  background-color: var(--deep-navy);
  color: var(--text-secondary);
}

.page-cockfighting__grid-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.page-cockfighting__content-block {
  text-align: left;
}

.page-cockfighting__content-block p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-cockfighting__faq-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-cockfighting__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--primary-color), 0.1);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 1.05em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 2.5em;
  }

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

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

  .page-cockfighting__cta-button {
    font-size: 1.1em;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting__section {
    padding: 40px 15px;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-cockfighting__subsection-title {
    font-size: 1.5em;
  }
  .page-cockfighting__description,
  .page-cockfighting__description-center {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-cockfighting__main-title {
    font-size: 2.2em;
    line-height: 1.2;
  }
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-cockfighting__grid,
  .page-cockfighting__benefits-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__promotions-grid,
  .page-cockfighting__grid-two-col {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-cockfighting__card,
  .page-cockfighting__benefit-item,
  .page-cockfighting__step-item,
  .page-cockfighting__promo-card {
    padding: 20px;
  }
  .page-cockfighting__card-title {
    font-size: 1.3em;
  }
  .page-cockfighting__card img {
    
  }
  .page-cockfighting__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
  }
  .page-cockfighting__image-wrapper,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-qtext {
    font-size: 1.1em;
  }
  .page-cockfighting__faq-toggle {
    font-size: 1.8em;
    width: 25px;
  }
  .page-cockfighting__faq-answer {
    padding: 0 20px 15px;
  }
  .page-cockfighting__strategy-list li {
    padding: 20px;
  }
  .page-cockfighting__list-heading {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 1.8em;
  }
  .page-cockfighting__section-title {
    font-size: 1.7em;
  }
  .page-cockfighting__cta-button {
    font-size: 0.95em;
    padding: 10px 25px;
  }
  .page-cockfighting__hero-content p {
    font-size: 0.9em;
  }
}