.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: var(--Text-Main);
  background-color: var(--Deep-Navy);
}

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

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: var(--Gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--Text-Secondary);
}

.page-cockfighting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 10px; /* Small padding, body handles --header-offset */
  background: var(--Deep-Navy);
  min-height: 70vh;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px; /* Limit height for hero image */
}

.page-cockfighting__hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  background: linear-gradient(180deg, rgba(8, 22, 43, 0.9) 0%, rgba(17, 59, 122, 0.9) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--Border-Color);
}

.page-cockfighting__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--Gold);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-cockfighting__lead-text {
  font-size: 1.2em;
  color: var(--Text-Secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

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

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: var(--Text-Main);
  border: 2px solid #2B73F6;
  box-shadow: 0 0 15px rgba(43, 115, 246, 0.6);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(43, 115, 246, 0.8);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--Gold);
  border: 2px solid var(--Gold);
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-cockfighting__btn-secondary:hover {
  background: var(--Gold);
  color: var(--Deep-Navy);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-cockfighting__introduction-section,
.page-cockfighting__betting-types-section,
.page-cockfighting__guide-section,
.page-cockfighting__tips-section,
.page-cockfighting__promotions-section,
.page-cockfighting__safety-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-cockfighting__dark-section {
  background-color: var(--Card-B-G);
}

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

.page-cockfighting__feature-item {
  background-color: var(--Deep-Navy);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-cockfighting__feature-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-cockfighting__feature-title {
  font-size: 1.5em;
  color: var(--Gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__feature-description {
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.6;
}

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

.page-cockfighting__column-item {
  background-color: var(--Card-B-G);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__column-title {
  font-size: 1.8em;
  color: var(--Gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-cockfighting__list-item {
  font-size: 1.1em;
  color: var(--Text-Main);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-cockfighting__list-item::before {
  content: '▶';
  color: var(--Glow);
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 5px;
}

.page-cockfighting__column-description {
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.6;
}

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

.page-cockfighting__step-item {
  background-color: var(--Deep-Navy);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-cockfighting__step-item:hover {
  transform: translateY(-5px);
}

.page-cockfighting__step-number {
  font-size: 3em;
  color: var(--Glow);
  font-weight: bold;
  margin-bottom: 15px;
}

.page-cockfighting__step-title {
  font-size: 1.6em;
  color: var(--Gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__step-description {
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-cockfighting__btn-text {
  color: var(--Glow);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting__btn-text:hover {
  color: var(--Gold);
}

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

.page-cockfighting__card {
  background-color: var(--Card-B-G);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-cockfighting__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-cockfighting__card-title {
  font-size: 1.4em;
  color: var(--Gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__card-description {
  font-size: 0.95em;
  color: var(--Text-Secondary);
  line-height: 1.6;
}

.page-cockfighting__view-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-cockfighting__promo-card {
  background-color: var(--Deep-Navy);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-cockfighting__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 1.5em;
  color: var(--Gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__promo-description {
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.6;
}

.page-cockfighting__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-cockfighting__safety-item {
  background-color: var(--Card-B-G);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--Border-Color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__safety-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-cockfighting__safety-title {
  font-size: 1.5em;
  color: var(--Gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__safety-description {
  font-size: 1em;
  color: var(--Text-Secondary);
  line-height: 1.6;
}

.page-cockfighting__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--Text-Main);
  cursor: pointer;
  background-color: var(--Card-B-G);
  border-bottom: 1px solid var(--Divider);
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  background-color: var(--Primary-Color);
  color: var(--Text-Main);
}

.page-cockfighting__faq-question:hover {
  background-color: rgba(29, 95, 209, 0.2);
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--Glow);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  content: '−';
  color: var(--Gold);
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--Text-Secondary);
  line-height: 1.7;
  background-color: var(--Deep-Navy);
}

.page-cockfighting__cta-final {
  text-align: center;
  margin-top: 40px;
}

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

.page-cockfighting__section,
.page-cockfighting__card,
.page-cockfighting__container,
.page-cockfighting__hero-section,
.page-cockfighting__introduction-section,
.page-cockfighting__betting-types-section,
.page-cockfighting__guide-section,
.page-cockfighting__tips-section,
.page-cockfighting__promotions-section,
.page-cockfighting__safety-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__container {
    padding: 20px 30px;
  }

  .page-cockfighting__section-title {
    font-size: 2.2em;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-cockfighting__hero-content-wrapper {
    margin-top: -80px;
    padding: 30px;
  }

  .page-cockfighting__feature-grid,
  .page-cockfighting__grid-columns,
  .page-cockfighting__step-grid,
  .page-cockfighting__tip-cards,
  .page-cockfighting__promo-grid,
  .page-cockfighting__safety-features {
    gap: 25px;
  }

  .page-cockfighting__card-image,
  .page-cockfighting__promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    font-size: 15px;
  }

  .page-cockfighting__container {
    padding: 15px;
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-cockfighting__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* Hero Section */
  .page-cockfighting__hero-section {
    padding-top: 10px !important;
  }

  .page-cockfighting__hero-image-wrapper {
    max-height: 300px;
  }

  .page-cockfighting__hero-image {
    object-fit: contain !important; /* Mobile hero image must contain, not cover */
    max-height: none !important;
    aspect-ratio: unset !important;
  }

  .page-cockfighting__hero-content-wrapper {
    margin-top: -50px; /* Adjust overlap for mobile */
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-cockfighting__lead-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .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;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Image and Container */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__introduction-section,
  .page-cockfighting__betting-types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__tips-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__safety-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Feature Grid (Introduction Section) */
  .page-cockfighting__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__feature-item {
    padding: 25px;
  }

  .page-cockfighting__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-cockfighting__feature-title {
    font-size: 1.3em;
  }

  /* Betting Types Section */
  .page-cockfighting__grid-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-cockfighting__column-item {
    padding: 25px;
  }

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

  .page-cockfighting__list-item {
    font-size: 0.95em;
  }

  /* Guide Section */
  .page-cockfighting__step-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-cockfighting__step-item {
    padding: 25px;
  }

  .page-cockfighting__step-number {
    font-size: 2.5em;
  }

  .page-cockfighting__step-title {
    font-size: 1.4em;
  }

  /* Tips Section (Cards) */
  .page-cockfighting__tip-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__card {
    padding: 20px;
  }

  .page-cockfighting__card-image {
    height: 150px;
  }

  .page-cockfighting__card-title {
    font-size: 1.3em;
  }

  /* Promotions Section */
  .page-cockfighting__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__promo-card {
    padding: 20px;
  }

  .page-cockfighting__promo-image {
    height: 180px;
  }

  .page-cockfighting__promo-title {
    font-size: 1.4em;
  }

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

  /* Safety Section */
  .page-cockfighting__safety-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__safety-item {
    padding: 25px;
  }

  .page-cockfighting__safety-icon {
    width: 60px;
    height: 60px;
  }

  .page-cockfighting__safety-title {
    font-size: 1.3em;
  }

  /* FAQ Section */
  .page-cockfighting__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-toggle {
    font-size: 1.2em;
  }

  .page-cockfighting__faq-answer {
    font-size: 0.95em;
    padding: 15px 20px;
  }
}