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

.page-cockfighting-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting-live__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-cockfighting-live__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-cockfighting-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(17, 49, 30, 0.7); /* Deep Green with opacity */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-live__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-cockfighting-live__btn-primary,
.page-cockfighting-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-cockfighting-live__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-cockfighting-live__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-cockfighting-live__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #ffffff;
  transform: translateY(-2px);
}

.page-cockfighting-live__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-cockfighting-live__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-cockfighting-live__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting-live__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2AD16F; /* A lighter shade of primary for subheadings */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-live__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-cockfighting-live__feature-list,
.page-cockfighting-live__tournament-list,
.page-cockfighting-live__step-list,
.page-cockfighting-live__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting-live__feature-item,
.page-cockfighting-live__tournament-item,
.page-cockfighting-live__promo-item {
  background: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
}

.page-cockfighting-live__tournament-name,
.page-cockfighting-live__promo-name {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-cockfighting-live__step-list {
  counter-reset: step-counter;
}

.page-cockfighting-live__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live__step-number {
  counter-increment: step-counter;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2AD16F; /* Primary color */
  margin-right: 15px;
  flex-shrink: 0;
}

.page-cockfighting-live__step-title {
  font-size: 1.2rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 5px;
}

.page-cockfighting-live__step-item p {
  margin: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting-live__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting-live__dark-section .page-cockfighting-live__section-title {
  color: #F2C14E; /* Gold */
}

.page-cockfighting-live__dark-section .page-cockfighting-live__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting-live__image-card {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live__image {
  width: 100%;
  height: auto;
  display: block;
}

.page-cockfighting-live__image-caption {
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
  padding: 15px;
  font-size: 0.95rem;
}

.page-cockfighting-live__promo-card {
  display: flex;
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.page-cockfighting-live__promo-card .page-cockfighting-live__image {
  flex: 1;
  min-width: 300px;
  object-fit: cover;
}

.page-cockfighting-live__promo-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-cockfighting-live__promo-content .page-cockfighting-live__subsection-title {
  color: #F2C14E; /* Gold */
  margin-top: 0;
}

.page-cockfighting-live__faq-section {
  background-color: #08160F; /* Background */
}

.page-cockfighting-live__faq-list {
  margin-top: 30px;
}

.page-cockfighting-live__faq-item {
  background: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live__faq-item details {
  width: 100%;
}

.page-cockfighting-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-cockfighting-live__faq-item details[open] > .page-cockfighting-live__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting-live__faq-question::-webkit-details-marker,
.page-cockfighting-live__faq-question::marker {
  display: none;
}

.page-cockfighting-live__faq-toggle {
  font-size: 1.5rem;
  color: #2AD16F;
  margin-left: 15px;
}

.page-cockfighting-live__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-cockfighting-live__conclusion-section {
  text-align: center;
}

.page-cockfighting-live__cta-wrapper {
  margin-top: 30px;
  text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-cockfighting-live__hero-content {
    padding: 30px 15px;
  }

  .page-cockfighting-live__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-cockfighting-live__hero-description {
    font-size: 1.1rem;
  }

  .page-cockfighting-live__section {
    padding: 50px 15px;
  }

  .page-cockfighting-live__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-cockfighting-live__promo-card {
    flex-direction: column;
  }

  .page-cockfighting-live__promo-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-cockfighting-live__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-cockfighting-live__hero-description {
    font-size: 1rem;
  }

  .page-cockfighting-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-live__btn-primary,
  .page-cockfighting-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-cockfighting-live__section,
  .page-cockfighting-live__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-cockfighting-live__subsection-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-cockfighting-live__text-block,
  .page-cockfighting-live__feature-item,
  .page-cockfighting-live__tournament-item,
  .page-cockfighting-live__promo-item,
  .page-cockfighting-live__step-item p,
  .page-cockfighting-live__image-caption,
  .page-cockfighting-live__faq-question,
  .page-cockfighting-live__faq-answer {
    font-size: 0.95rem !important;
  }

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

  .page-cockfighting-live__video-wrapper,
  .page-cockfighting-live__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-cockfighting-live__promo-card {
    flex-direction: column;
  }

  .page-cockfighting-live__promo-content {
    padding: 15px;
  }

  .page-cockfighting-live__faq-question {
    padding: 15px;
  }

  .page-cockfighting-live__faq-answer {
    padding: 15px;
  }
}

/* General responsive styles for images and buttons to prevent overflow */
.page-cockfighting-live img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-cockfighting-live__image-card,
.page-cockfighting-live__promo-card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Ensure all buttons and their containers are responsive */
.page-cockfighting-live__cta-buttons,
.page-cockfighting-live__cta-wrapper {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting-live a[class*="btn"],
.page-cockfighting-live a[class*="button"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}