.page-cockfighting-live-entry {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-cockfighting-live-entry__section {
  padding: 60px 0;
}

.page-cockfighting-live-entry__dark-bg {
  background-color: #003366;
  color: #ffffff;
}

.page-cockfighting-live-entry__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting-live-entry__heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
  font-weight: bold;
}

.page-cockfighting-live-entry__dark-bg .page-cockfighting-live-entry__heading {
  color: #FFCC00;
}

.page-cockfighting-live-entry__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting-live-entry__btn-primary,
.page-cockfighting-live-entry__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-cockfighting-live-entry__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-cockfighting-live-entry__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-cockfighting-live-entry__btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-cockfighting-live-entry__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

/* Hero Section */
.page-cockfighting-live-entry__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px; /* Adjusted for better visual */
  text-align: center;
  overflow: hidden;
}

.page-cockfighting-live-entry__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-cockfighting-live-entry__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
  line-height: 1.2;
}

.page-cockfighting-live-entry__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.5;
}

.page-cockfighting-live-entry__hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

/* Introduction Section */
.page-cockfighting-live-entry__introduction .page-cockfighting-live-entry__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-entry__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Features Section */
.page-cockfighting-live-entry__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-entry__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-cockfighting-live-entry__card:hover {
  transform: translateY(-5px);
}

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

.page-cockfighting-live-entry__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #003366;
  font-weight: bold;
}

.page-cockfighting-live-entry__card-text {
  font-size: 1em;
  text-align: justify;
}

/* Guide Section */
.page-cockfighting-live-entry__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-entry__step-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-left: 5px solid #003366;
}

.page-cockfighting-live-entry__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-cockfighting-live-entry__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-cockfighting-live-entry__step-description {
  font-size: 1em;
}

.page-cockfighting-live-entry__cta-buttons--centered {
  text-align: center;
  margin-top: 40px;
}

/* Strategies Section */
.page-cockfighting-live-entry__strategy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-entry__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-cockfighting-live-entry__strategy-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFCC00;
  font-weight: bold;
}

.page-cockfighting-live-entry__strategy-description {
  font-size: 1em;
  text-align: justify;
}

/* Promotions Section */
.page-cockfighting-live-entry__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live-entry__card--promotion {
  padding: 25px;
}

.page-cockfighting-live-entry__card--promotion .page-cockfighting-live-entry__btn-primary {
  margin-top: 20px;
  width: calc(100% - 4px); /* Account for border */
}

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

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

.page-cockfighting-live-entry__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-live-entry__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-cockfighting-live-entry__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-cockfighting-live-entry__faq-item.active .page-cockfighting-live-entry__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting-live-entry__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-cockfighting-live-entry__faq-item.active .page-cockfighting-live-entry__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
  padding-top: 0;
}

.page-cockfighting-live-entry__faq-answer p {
  color: #f0f0f0;
  font-size: 1em;
  margin-bottom: 0;
}

/* Final CTA Section */
.page-cockfighting-live-entry__cta-content {
  text-align: center;
  max-width: 800px;
}

.page-cockfighting-live-entry__cta-final .page-cockfighting-live-entry__text-block {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting-live-entry__hero-title {
    font-size: 3em;
  }
  .page-cockfighting-live-entry__hero-description {
    font-size: 1.2em;
  }
  .page-cockfighting-live-entry__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live-entry {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-live-entry__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-cockfighting-live-entry__hero-title {
    font-size: 2.5em;
  }

  .page-cockfighting-live-entry__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-live-entry__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-live-entry__btn-primary,
  .page-cockfighting-live-entry__btn-secondary,
  .page-cockfighting-live-entry a[class*="button"],
  .page-cockfighting-live-entry a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting-live-entry__hero-cta-buttons,
  .page-cockfighting-live-entry__cta-buttons--centered {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-cockfighting-live-entry__video-wrapper {
    padding-bottom: 75%; /* More suitable for mobile vertical orientation (4:3) or keep 16:9 for consistency */
  }

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

  .page-cockfighting-live-entry__hero-video-wrapper,
  .page-cockfighting-live-entry__video-section,
  .page-cockfighting-live-entry__video-container,
  .page-cockfighting-live-entry__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-entry__section {
    padding: 40px 0;
  }

  .page-cockfighting-live-entry__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting-live-entry__card,
  .page-cockfighting-live-entry__step-item,
  .page-cockfighting-live-entry__strategy-item,
  .page-cockfighting-live-entry__card--promotion,
  .page-cockfighting-live-entry__container {
    padding: 20px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-cockfighting-live-entry img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting-live-entry__faq-question h3 {
    font-size: 1em;
  }

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

  .page-cockfighting-live-entry__faq-answer {
    padding: 0 15px;
  }

  .page-cockfighting-live-entry__faq-item.active .page-cockfighting-live-entry__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-entry__hero-title {
    font-size: 2em;
  }
  .page-cockfighting-live-entry__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-live-entry__heading {
    font-size: 1.5em;
  }
  .page-cockfighting-live-entry__hero-video-wrapper {
    padding-bottom: 65%;
  }
}