.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark background #1a1a1a, so text is light */
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-cockfighting__section-intro {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* Hero Section */
.page-cockfighting__hero-section {
  padding-top: 0; /* Assumes shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.page-cockfighting__hero-section .page-cockfighting__container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-cockfighting__hero-content {
  flex: 1;
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-cockfighting__hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-cockfighting__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-cockfighting__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-cockfighting__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-cockfighting__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text for contrast */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-cockfighting__btn-small {
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  border: 1px solid #8B0000;
}

.page-cockfighting__btn-small:hover {
  background-color: #6a0000;
  border-color: #6a0000;
  transform: translateY(-1px);
}

/* Feature Cards */
.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: rgba(255, 255, 255, 0.08); /* Light bg on dark body */
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 15px;
}

.page-cockfighting__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.page-cockfighting__type-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

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

.page-cockfighting__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__type-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 10px;
}

.page-cockfighting__type-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

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

.page-cockfighting__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-cockfighting__step-card:hover {
  background-color: rgba(139, 0, 0, 0.2);
}

.page-cockfighting__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: rgba(139, 0, 0, 0.1);
  padding: 10px;
}

.page-cockfighting__step-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting__step-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

.page-cockfighting__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

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

.page-cockfighting__tip-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__tip-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 10px;
}

.page-cockfighting__tip-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

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

.page-cockfighting__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

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

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

.page-cockfighting__promotion-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
}

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

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for contrast */
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-question {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
  color: #8B0000;
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important; /* Ensure content fits */
  padding: 20px !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: none;
}

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

.page-cockfighting__news-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

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

.page-cockfighting__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__news-content {
  padding: 20px;
}

.page-cockfighting__news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-cockfighting__news-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__news-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-cockfighting__news-description {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-cockfighting__news-date {
  font-size: 13px;
  color: #999999;
  display: block;
}

/* General Image Styling for content area */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Ensure content area images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* default to cover, can be overridden */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-section .page-cockfighting__container {
    flex-direction: column;
    text-align: center;
  }

  .page-cockfighting__hero-image-wrapper {
    margin-top: 40px;
  }

  .page-cockfighting__hero-buttons {
    justify-content: center;
  }

  .page-cockfighting__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 0 15px !important;
  }

  .page-cockfighting__section {
    padding: 40px 0 !important;
  }

  .page-cockfighting__section-title {
    font-size: 28px !important;
  }

  .page-cockfighting__section-intro {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }

  /* Hero Section Mobile */
  .page-cockfighting__hero-section {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }

  .page-cockfighting__hero-title {
    font-size: 36px !important;
  }

  .page-cockfighting__hero-description {
    font-size: 16px !important;
  }

  .page-cockfighting__hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting__btn-small {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Feature Cards Mobile */
  .page-cockfighting__features-grid,
  .page-cockfighting__types-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__tips-grid,
  .page-cockfighting__promotions-grid,
  .page-cockfighting__news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card,
  .page-cockfighting__tip-item,
  .page-cockfighting__promotion-card,
  .page-cockfighting__news-card {
    padding: 20px !important;
  }

  .page-cockfighting__feature-icon {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    margin-bottom: 15px !important;
    padding: 10px !important;
  }

  .page-cockfighting__feature-title {
    font-size: 20px !important;
  }

  .page-cockfighting__type-image,
  .page-cockfighting__tip-image,
  .page-cockfighting__news-image {
    height: 180px !important;
  }

  .page-cockfighting__type-title,
  .page-cockfighting__tip-title,
  .page-cockfighting__promotion-title,
  .page-cockfighting__news-title {
    font-size: 18px !important;
    padding: 15px 0 10px !important;
  }

  .page-cockfighting__type-description,
  .page-cockfighting__step-description,
  .page-cockfighting__tip-description,
  .page-cockfighting__promotion-description,
  .page-cockfighting__news-description {
    font-size: 14px !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
  }

  .page-cockfighting__faq-question {
    padding: 15px !important;
  }

  .page-cockfighting__faq-question h3 {
    font-size: 16px !important;
  }

  .page-cockfighting__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    height: 24px !important;
  }

  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px !important;
  }

  .page-cockfighting__news-content {
    padding: 15px !important;
  }

  .page-cockfighting__news-date {
    font-size: 12px !important;
  }

  /* General Image Styling for content area */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Ensure image containers do not cause overflow */
  .page-cockfighting__hero-image-wrapper,
  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card,
  .page-cockfighting__tip-item,
  .page-cockfighting__promotion-card,
  .page-cockfighting__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  /* Exclude logo-item from general image rules if it were here, but it's not on this page */
}