/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so text should be light */
  background-color: transparent; /* Inherit from body */
}

.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 */
  min-height: 500px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-cockfighting__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-cockfighting__btn-primary:hover {
  background-color: #d16d06;
  transform: translateY(-2px);
}

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

.page-cockfighting__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-cockfighting__section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.page-cockfighting__section-description {
  font-size: 1rem;
  color: #f0f0f0;
}

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

.page-cockfighting__dark-bg {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
}

.page-cockfighting__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 60px 0;
}

.page-cockfighting__video-section {
  padding: 60px 0;
  padding-top: 10px; /* Small top padding for video section */
  text-align: center;
}

.page-cockfighting__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for the video player */
  margin: 0 auto;
  box-sizing: border-box;
}

.page-cockfighting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Desktop width: 100% */
  max-width: 100%;
  background-color: #000;
  border-radius: 10px;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  display: block;
}

.page-cockfighting__video-caption {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
}

.page-cockfighting__info-section .page-cockfighting__section-title,
.page-cockfighting__info-section .page-cockfighting__section-description {
  color: #333333;
}

.page-cockfighting__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-cockfighting__text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

.page-cockfighting__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-cockfighting__why-choose-us .page-cockfighting__section-title,
.page-cockfighting__why-choose-us .page-cockfighting__section-description {
  color: #ffffff;
}

.page-cockfighting__feature-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.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

.page-cockfighting__feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting__feature-card .page-cockfighting__card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-cockfighting__feature-card .page-cockfighting__card-description {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.page-cockfighting__types-section .page-cockfighting__section-title,
.page-cockfighting__types-section .page-cockfighting__section-description {
  color: #333333;
}

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

.page-cockfighting__type-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-cockfighting__type-card .page-cockfighting__card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-cockfighting__type-card .page-cockfighting__card-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-cockfighting__guide-section .page-cockfighting__section-title,
.page-cockfighting__guide-section .page-cockfighting__section-description {
  color: #ffffff;
}

.page-cockfighting__step-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.15);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-card .page-cockfighting__card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-cockfighting__step-card .page-cockfighting__card-description {
  font-size: 0.9rem;
  color: #f0f0f0;
}

.page-cockfighting__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-cockfighting__text-link:hover {
  color: #EA7C07;
}

.page-cockfighting__tips-section .page-cockfighting__section-title,
.page-cockfighting__tips-section .page-cockfighting__section-description {
  color: #333333;
}

.page-cockfighting__tip-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.page-cockfighting__tip-item {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  padding: 20px;
  color: #333333;
}

.page-cockfighting__tip-item .page-cockfighting__card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-cockfighting__tip-item .page-cockfighting__card-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-cockfighting__faq-section .page-cockfighting__section-title,
.page-cockfighting__faq-section .page-cockfighting__section-description {
  color: #ffffff;
}

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

.page-cockfighting__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

.page-cockfighting__faq-answer {
  padding: 15px 25px;
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-cockfighting__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #26A9E0; /* Use brand color for CTA background */
  color: #ffffff;
}

.page-cockfighting__cta-section .page-cockfighting__section-title {
  color: #ffffff;
}

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

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-cockfighting__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-cockfighting__content-grid .page-cockfighting__image-block {
    order: 2; /* Image on right for desktop */
  }
  .page-cockfighting__content-grid .page-cockfighting__text-block {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting__hero-content {
    padding: 15px;
  }
  .page-cockfighting__main-title {
    font-size: 2rem;
  }
  .page-cockfighting__description {
    font-size: 1rem;
  }
  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__cta-button {
    width: 100% !important;
    padding: 12px 20px;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
  }
  .page-cockfighting__section-description {
    font-size: 0.9rem;
  }
  .page-cockfighting__dark-bg, .page-cockfighting__light-bg {
    padding: 40px 0;
  }
  .page-cockfighting__video-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-cockfighting__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__content-grid,
  .page-cockfighting__feature-grid,
  .page-cockfighting__type-grid,
  .page-cockfighting__step-grid,
  .page-cockfighting__tip-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card,
  .page-cockfighting__tip-item,
  .page-cockfighting__faq-item {
    padding: 20px;
  }
  .page-cockfighting__feature-card img {
    
  }
  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting__faq-answer {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}