.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Desktop width */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 20px;
  padding: 0 15px;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-cockfighting__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-cockfighting__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  min-width: 150px;
}

.page-cockfighting__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-cockfighting__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn--secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-cockfighting__btn--secondary:hover {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section {
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-cockfighting__dark-section {
  background-color: #11271B; /* Card BG */
}

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

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

.page-cockfighting__section-title--light {
  color: #F2FFF6;
}

.page-cockfighting__intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: -30px auto 50px auto;
}

.page-cockfighting__intro-text--light {
  color: #A7D9B8;
}

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

.page-cockfighting__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-cockfighting__feature-icon,
.page-cockfighting__betting-img,
.page-cockfighting__promo-img,
.page-cockfighting__security-icon {
  width: 100%; /* Ensure images take full width of card */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__feature-title,
.page-cockfighting__step-title,
.page-cockfighting__betting-title,
.page-cockfighting__promo-title,
.page-cockfighting__security-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-cockfighting__feature-text,
.page-cockfighting__step-text,
.page-cockfighting__betting-description,
.page-cockfighting__promo-description,
.page-cockfighting__security-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__step-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #57E38D 0%, #13994A 100%); /* Glow / Deep Green */
  color: #08160F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.6);
}

.page-cockfighting__btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: auto; /* Push button to bottom */
}

.page-cockfighting__tips-section {
  background-color: #0A4B2C;
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  text-align: center;
}

.page-cockfighting__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-cockfighting__tips-list li {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.page-cockfighting__list-icon {
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.page-cockfighting__card--promo {
  background: linear-gradient(145deg, #0A4B2C 0%, #11271B 100%);
  border-color: #1E3A2A; /* Divider */
}

.page-cockfighting__promo-img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A;
}

.page-cockfighting__btn--promo {
  background: linear-gradient(180deg, #F2C14E 0%, #E0A800 100%); /* Gold-like gradient */
  color: #08160F;
  border: none;
  font-weight: 700;
}

.page-cockfighting__btn--promo:hover {
  background: linear-gradient(180deg, #E0A800 0%, #F2C14E 100%);
}

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

.page-cockfighting__faq-item {
  background-color: #0A4B2C;
  border: 1px solid #1E3A2A;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-cockfighting__faq-item[open] {
  background-color: #11271B;
  border-color: #2E7A4E;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__cta-final {
  text-align: center;
  padding-bottom: 80px;
}

.page-cockfighting__btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 40px;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__betting-options-grid,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-cockfighting__description {
    font-size: 1rem;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-cockfighting__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-cockfighting__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-cockfighting__intro-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__betting-options-grid,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-cockfighting__feature-title,
  .page-cockfighting__step-title,
  .page-cockfighting__betting-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__security-title {
    font-size: 1.2rem;
  }

  .page-cockfighting__feature-text,
  .page-cockfighting__step-text,
  .page-cockfighting__betting-description,
  .page-cockfighting__promo-description,
  .page-cockfighting__security-text {
    font-size: 0.9rem;
  }

  .page-cockfighting__tips-section {
    padding: 30px;
  }

  .page-cockfighting__sub-title {
    font-size: 1.4rem;
  }

  .page-cockfighting__tips-list li {
    font-size: 0.9rem;
  }

  .page-cockfighting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.85rem;
  }

  /* Mobile image, video, and container responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper,
  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-cockfighting__cta-buttons a {
    flex-grow: 1;
  }
}