.page-cockfighting-live-stream {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Hero Section */
.page-cockfighting-live-stream__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  box-sizing: border-box;
}

.page-cockfighting-live-stream__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG as placeholder */
}

.page-cockfighting-live-stream__video-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  display: block;
}

.page-cockfighting-live-stream__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cockfighting-live-stream__hero-content {
  text-align: center;
  padding: 0 20px;
  z-index: 20; /* Ensure content is above video layer */
  max-width: 900px;
}

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

.page-cockfighting-live-stream__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-stream__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-cockfighting-live-stream__btn-primary,
.page-cockfighting-live-stream__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
}

.page-cockfighting-live-stream__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting-live-stream__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-cockfighting-live-stream__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Border */
}

.page-cockfighting-live-stream__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  color: #F2C14E;
}

/* General Sections */
.page-cockfighting-live-stream__section {
  padding: 80px 0;
  box-sizing: border-box;
}

.page-cockfighting-live-stream__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting-live-stream__section-intro {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

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

.page-cockfighting-live-stream__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-stream__card img {
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Why Choose Section */
.page-cockfighting-live-stream__features-grid,
.page-cockfighting-live-stream__steps-grid,
.page-cockfighting-live-stream__types-grid,
.page-cockfighting-live-stream__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting-live-stream__feature-title,
.page-cockfighting-live-stream__step-title,
.page-cockfighting-live-stream__type-title,
.page-cockfighting-live-stream__tip-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__feature-description,
.page-cockfighting-live-stream__step-description,
.page-cockfighting-live-stream__type-description,
.page-cockfighting-live-stream__tip-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-cockfighting-live-stream__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting-live-stream__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting-live-stream__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.15rem;
  list-style: none; /* Remove default marker */
}

.page-cockfighting-live-stream__faq-item summary::-webkit-details-marker,
.page-cockfighting-live-stream__faq-item summary::marker {
  display: none;
}

.page-cockfighting-live-stream__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-cockfighting-live-stream__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Final CTA Section */
.page-cockfighting-live-stream__cta-final {
  padding: 100px 0;
  background: linear-gradient(to right, #08160F, #0A4B2C); /* Deep Green */
  text-align: center;
}

.page-cockfighting-live-stream__cta-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-live-stream__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-cockfighting-live-stream__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-cockfighting-live-stream__features-grid,
  .page-cockfighting-live-stream__steps-grid,
  .page-cockfighting-live-stream__types-grid,
  .page-cockfighting-live-stream__tips-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-stream__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-cockfighting-live-stream__main-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .page-cockfighting-live-stream__description {
    font-size: 1rem;
  }
  .page-cockfighting-live-stream__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-cockfighting-live-stream__btn-primary,
  .page-cockfighting-live-stream__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting-live-stream__section {
    padding: 60px 0;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-cockfighting-live-stream__section-intro {
    margin-bottom: 40px;
  }

  /* Image responsive rules */
  .page-cockfighting-live-stream img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-cockfighting-live-stream__card img {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Video responsive rules */
  .page-cockfighting-live-stream video,
  .page-cockfighting-live-stream__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-live-stream__video-section,
  .page-cockfighting-live-stream__video-container,
  .page-cockfighting-live-stream__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-cockfighting-live-stream__container,
  .page-cockfighting-live-stream__section-intro,
  .page-cockfighting-live-stream__cta-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-live-stream__features-grid,
  .page-cockfighting-live-stream__steps-grid,
  .page-cockfighting-live-stream__types-grid,
  .page-cockfighting-live-stream__tips-list {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-live-stream__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-cockfighting-live-stream__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-stream__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-cockfighting-live-stream__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-cockfighting-live-stream__section {
    padding: 40px 0;
  }
  .page-cockfighting-live-stream__card {
    padding: 20px;
  }
  .page-cockfighting-live-stream__cta-final {
    padding: 60px 0;
  }
}