.page-cockfighting {
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Space for fixed header */
}

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

.page-cockfighting__link:hover {
  color: #fff;
}

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

.page-cockfighting__section-title {
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-cockfighting__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.page-cockfighting__btn--primary {
  background-color: #FFD700;
  color: #0a0a0a;
  border: 2px solid #FFD700;
}

.page-cockfighting__btn--primary:hover {
  background-color: #e6c200;
  color: #000;
  border-color: #e6c200;
}

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

.page-cockfighting__btn--secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a;
}

.page-cockfighting__btn--small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-cockfighting__btn--large {
  padding: 20px 40px;
  font-size: 20px;
}

/* Hero Banner */
.page-cockfighting__hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000080, #0a0a0a);
  gap: 40px;
  padding-top: calc(80px + 120px);
}

.page-cockfighting__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-cockfighting__hero-title {
  font-size: 52px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

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

.page-cockfighting__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* About Cockfighting Section */
.page-cockfighting__about-cockfighting {
  background-color: #0a0a0a;
}

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

.page-cockfighting__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.1);
}

.page-cockfighting__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-cockfighting__feature-text {
  font-size: 16px;
  color: #cccccc;
}

/* Game Types Section */
.page-cockfighting__game-types {
  background-color: #0a0a0a;
}

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

.page-cockfighting__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 128, 0.3);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-cockfighting__game-title {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
  font-weight: 600;
}

.page-cockfighting__game-text {
  font-size: 16px;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-cockfighting__game-card .page-cockfighting__btn {
  margin-top: auto;
  margin-bottom: 20px;
  align-self: center;
}

/* How To Play Section */
.page-cockfighting__how-to-play {
  background-color: #0a0a0a;
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-cockfighting__step-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  gap: 25px;
}

.page-cockfighting__step-number {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
  flex-shrink: 0;
}

.page-cockfighting__step-content {
  flex-grow: 1;
}

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

.page-cockfighting__step-text {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Tips Section */
.page-cockfighting__tips {
  background-color: #0a0a0a;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__tip-item {
  background-color: rgba(0, 0, 128, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-cockfighting__tip-item:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 0, 128, 0.2);
}

.page-cockfighting__tip-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-cockfighting__tip-text {
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-cockfighting__faq {
  background-color: #0a0a0a;
}

.page-cockfighting__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

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

.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: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

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

.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.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: rgba(0, 0, 128, 0.1);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__faq-answer p {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

/* Call to Action Section */
.page-cockfighting__cta {
  background: linear-gradient(135deg, #000080, #0a0a0a);
  text-align: center;
  padding: 80px 20px;
}

.page-cockfighting__cta .page-cockfighting__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-cockfighting__cta .page-cockfighting__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-banner {
    flex-direction: column;
    text-align: center;
    padding-top: calc(60px + 100px);
  }

  .page-cockfighting__hero-content {
    max-width: 100%;
    text-align: center;
  }

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

  .page-cockfighting__hero-image-wrapper {
    max-width: 80%;
  }

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

  .page-cockfighting__section-description {
    font-size: 16px;
  }

  .page-cockfighting__step-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    padding-top: 100px; /* Mobile space for fixed header */
  }

  .page-cockfighting__hero-banner {
    padding: 40px 15px;
    padding-top: calc(40px + 100px);
  }

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

  .page-cockfighting__hero-description {
    font-size: 18px;
  }

  .page-cockfighting__hero-image-wrapper {
    max-width: 100%;
  }

  .page-cockfighting__section {
    padding: 40px 15px;
  }

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

  .page-cockfighting__section-description {
    font-size: 15px;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__game-card,
  .page-cockfighting__tip-item {
    padding: 25px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__tip-title {
    font-size: 20px;
  }

  .page-cockfighting__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    gap: 15px;
  }

  .page-cockfighting__step-number {
    font-size: 40px;
  }

  .page-cockfighting__step-title {
    font-size: 22px;
  }

  .page-cockfighting__step-text {
    font-size: 16px;
  }

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

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

  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  .page-cockfighting__faq-answer p {
    font-size: 15px;
  }

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

  .page-cockfighting__cta .page-cockfighting__section-description {
    font-size: 16px;
  }

  .page-cockfighting__btn--large {
    padding: 15px 30px;
    font-size: 18px;
  }

  /* Mobile image responsive forced styles */
  .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-image-wrapper,
  .page-cockfighting__feature-icon,
  .page-cockfighting__game-image,
  .page-cockfighting__tip-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}