.page-cockfighting-live-stream {
  color: #ffffff; /* Body background is dark (#1a1a1a), so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-cockfighting-live-stream__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  background-color: #1a1a1a; /* Ensure dark background for hero */
}

.page-cockfighting-live-stream__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image container */
  margin-bottom: 30px;
}

.page-cockfighting-live-stream__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-cockfighting-live-stream__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-cockfighting-live-stream__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-cockfighting-live-stream__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-cockfighting-live-stream__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-cockfighting-live-stream__btn-primary,
.page-cockfighting-live-stream__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-live-stream__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-cockfighting-live-stream__btn-primary:hover {
  background-color: #1f8ec0;
  border-color: #1f8ec0;
}

.page-cockfighting-live-stream__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-cockfighting-live-stream__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-cockfighting-live-stream__content-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Default to dark background */
  color: #ffffff; /* Light text for dark background */
}

.page-cockfighting-live-stream__dark-section {
  background-color: #0d0d0d; /* Slightly darker for contrast */
  color: #ffffff;
}

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

.page-cockfighting-live-stream__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting-live-stream__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-cockfighting-live-stream__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-cockfighting-live-stream__text-block a:hover {
  color: #4ac1f7;
}

.page-cockfighting-live-stream__features-grid,
.page-cockfighting-live-stream__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-cockfighting-live-stream__feature-item,
.page-cockfighting-live-stream__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-cockfighting-live-stream__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-cockfighting-live-stream__feature-title,
.page-cockfighting-live-stream__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__feature-description,
.page-cockfighting-live-stream__step-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-cockfighting-live-stream__cta-center {
  text-align: center;
  margin-top: 30px;
}

.page-cockfighting-live-stream__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting-live-stream__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting-live-stream__strategy-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.05em;
  color: #ffffff;
}

.page-cockfighting-live-stream__faq-list {
  margin-top: 40px;
}

.page-cockfighting-live-stream__faq-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-cockfighting-live-stream__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0;
}

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

.page-cockfighting-live-stream__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
}

.page-cockfighting-live-stream__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-cockfighting-live-stream__faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting-live-stream__highlight {
  color: #EA7C07; /* Use 'login' color for highlight */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-live-stream__main-title {
    font-size: 2.5em;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-stream__hero-section {
    padding: 10px 15px 40px;
  }
  .page-cockfighting-live-stream__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting-live-stream__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-cockfighting-live-stream__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-cockfighting-live-stream__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-live-stream__btn-primary,
  .page-cockfighting-live-stream__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting-live-stream__content-section {
    padding: 40px 15px;
  }
  .page-cockfighting-live-stream__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-cockfighting-live-stream__text-block {
    font-size: 0.95em;
  }
  .page-cockfighting-live-stream__features-grid,
  .page-cockfighting-live-stream__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-cockfighting-live-stream__feature-item,
  .page-cockfighting-live-stream__step-item {
    padding: 20px;
  }
  .page-cockfighting-live-stream__feature-title,
  .page-cockfighting-live-stream__step-title {
    font-size: 1.3em;
  }
  .page-cockfighting-live-stream img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-live-stream__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}