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

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

.page-cockfighting-live-stream__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-live-stream__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-cockfighting-live-stream__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  box-sizing: border-box;
}

.page-cockfighting-live-stream__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-cockfighting-live-stream__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-cockfighting-live-stream__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 20px;
}

.page-cockfighting-live-stream__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-cockfighting-live-stream__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

.page-cockfighting-live-stream__btn-primary,
.page-cockfighting-live-stream__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
}

.page-cockfighting-live-stream__btn-primary {
  background-color: #C30808; /* Đăng Ký color */
  color: #FFFF00; /* Đăng Ký font color */
  border: 2px solid #C30808;
}

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

.page-cockfighting-live-stream__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Đăng Nhập font color */
  border: 2px solid #C30808; /* Đăng Nhập color */
}

.page-cockfighting-live-stream__btn-secondary:hover {
  background-color: #C30808;
  color: #FFFFFF;
}

/* Video Section */
.page-cockfighting-live-stream__video-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.page-cockfighting-live-stream__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 30px auto;
  background-color: #000;
}

.page-cockfighting-live-stream__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure video fits within the wrapper without cropping */
  display: block;
  cursor: pointer;
}

.page-cockfighting-live-stream__video-cta {
  margin-top: 30px;
}

/* Advantages Section */
.page-cockfighting-live-stream__advantages-section {
  padding: 80px 0;
}

.page-cockfighting-live-stream__dark-section {
  background-color: #017439;
  color: #ffffff;
}

.page-cockfighting-live-stream__dark-section .page-cockfighting-live-stream__section-title {
  color: #FFFFFF;
}

.page-cockfighting-live-stream__dark-section .page-cockfighting-live-stream__section-description {
  color: #f0f0f0;
}

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

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

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

.page-cockfighting-live-stream__advantage-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__advantage-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Bet Types Section */
.page-cockfighting-live-stream__bet-types-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-cockfighting-live-stream__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting-live-stream__bet-type-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

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

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

.page-cockfighting-live-stream__bet-type-text {
  font-size: 1em;
  color: #555555;
}

/* Tips Section */
.page-cockfighting-live-stream__tips-section {
  padding: 80px 0;
}

.page-cockfighting-live-stream__light-bg {
  background-color: #f5f5f5;
}

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

.page-cockfighting-live-stream__tip-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

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

.page-cockfighting-live-stream__tip-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__tip-text {
  font-size: 1em;
  color: #555555;
}

/* How to Join Section */
.page-cockfighting-live-stream__how-to-join-section {
  padding: 80px 0;
}

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

.page-cockfighting-live-stream__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-cockfighting-live-stream__step-number {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #C30808;
  color: #FFFF00;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #017439;
}

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

.page-cockfighting-live-stream__step-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-cockfighting-live-stream__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

/* Promotions Section */
.page-cockfighting-live-stream__promotions-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.page-cockfighting-live-stream__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-cockfighting-live-stream__promotion-card {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  text-align: center;
}

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

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

.page-cockfighting-live-stream__promotion-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-cockfighting-live-stream__faq-section {
  padding: 80px 0;
}

.page-cockfighting-live-stream__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting-live-stream__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-cockfighting-live-stream__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #f9f9f9;
  border-radius: 8px;
  user-select: none;
}

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

.page-cockfighting-live-stream__faq-question::marker {
  display: none;
}

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

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

.page-cockfighting-live-stream__faq-item[open] .page-cockfighting-live-stream__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Final CTA Section */
.page-cockfighting-live-stream__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-cockfighting-live-stream__cta-final-section .page-cockfighting-live-stream__cta-buttons {
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-cockfighting-live-stream {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-cockfighting-live-stream__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-cockfighting-live-stream__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-live-stream__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-live-stream__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-live-stream__btn-primary,
  .page-cockfighting-live-stream__btn-secondary {
    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-stream__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-stream__section-description {
    font-size: 0.95em;
  }
  .page-cockfighting-live-stream__advantages-grid,
  .page-cockfighting-live-stream__bet-types-grid,
  .page-cockfighting-live-stream__tips-grid,
  .page-cockfighting-live-stream__steps-grid,
  .page-cockfighting-live-stream__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-live-stream img,
  .page-cockfighting-live-stream__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-live-stream__video-wrapper,
  .page-cockfighting-live-stream__advantages-section,
  .page-cockfighting-live-stream__bet-types-section,
  .page-cockfighting-live-stream__tips-section,
  .page-cockfighting-live-stream__how-to-join-section,
  .page-cockfighting-live-stream__promotions-section,
  .page-cockfighting-live-stream__faq-section,
  .page-cockfighting-live-stream__cta-final-section,
  .page-cockfighting-live-stream__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-cockfighting-live-stream__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Video section might be the first content */
  }
  .page-cockfighting-live-stream__faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .page-cockfighting-live-stream__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-stream__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-live-stream__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-live-stream__btn-primary,
  .page-cockfighting-live-stream__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-cockfighting-live-stream__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-live-stream__section-description {
    font-size: 0.9em;
  }
}