.page-cockfighting-live {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E; /* Primary dark background */
  line-height: 1.6;
}

.page-cockfighting-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-live__section {
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting-live__section:nth-child(even) {
  background-color: #2A2A4A; /* Slightly lighter dark background for contrast */
}

.page-cockfighting-live__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent color */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-cockfighting-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-live__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3A3A5A 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-cockfighting-live__hero-content {
  max-width: 600px;
  margin-right: 40px;
}

.page-cockfighting-live__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting-live__hero-description {
  font-size: 1.3em;
  color: #E5E5D1;
  margin-bottom: 40px;
}

.page-cockfighting-live__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-cockfighting-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-cockfighting-live__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
  border: 2px solid #FFD700;
}

.page-cockfighting-live__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-cockfighting-live__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-cockfighting-live__hero-image-wrapper {
  flex-shrink: 0;
}

.page-cockfighting-live__hero-image {
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__introduction p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 15px auto;
  color: #CCC;
}

.page-cockfighting-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live__feature-item {
  background-color: #2A2A4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-cockfighting-live__feature-item:hover {
  transform: translateY(-10px);
}

.page-cockfighting-live__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-cockfighting-live__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-live__feature-item p {
  color: #E5E5D1;
  font-size: 1em;
}

.page-cockfighting-live__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-cockfighting-live__list li {
  background-color: #2A2A4A;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #E5E5D1;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-cockfighting-live__list--check li {
  padding-left: 40px;
  position: relative;
}

.page-cockfighting-live__list--check li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting-live__center-button {
  margin-top: 40px;
}

.page-cockfighting-live__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-live__step-item {
  background-color: #2A2A4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting-live__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-live__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting-live__step-item p {
  color: #E5E5D1;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-cockfighting-live__download-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: left;
}

.page-cockfighting-live__download-content {
  flex: 1;
}

.page-cockfighting-live__download-content .page-cockfighting-live__section-title {
  text-align: left;
  margin-left: 0;
}

.page-cockfighting-live__download-content .page-cockfighting-live__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-cockfighting-live__download-content p {
  font-size: 1.1em;
  color: #CCC;
  margin-bottom: 20px;
}

.page-cockfighting-live__download-image-wrapper {
  flex-shrink: 0;
}

.page-cockfighting-live__download-image {
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-live__related-pages {
  background-color: #1A1A2E;
}

.page-cockfighting-live__related-pages p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 15px auto 40px;
  color: #CCC;
}

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

.page-cockfighting-live__detail-item {
  background-color: #2A2A4A;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting-live__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-cockfighting-live__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-cockfighting-live__detail-title a:hover {
  text-decoration: underline;
}

.page-cockfighting-live__detail-description {
  color: #E5E5D1;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting-live__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: auto; /* Push button to bottom */
}

.page-cockfighting-live__btn--link:hover {
  text-decoration: underline;
}

.page-cockfighting-live__cta {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 80px 0;
}

.page-cockfighting-live__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-cockfighting-live__cta-title {
  font-size: 3em;
  color: #1A1A2E;
  margin-bottom: 20px;
}

.page-cockfighting-live__cta-description {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 40px;
}

.page-cockfighting-live__cta .page-cockfighting-live__btn--primary {
  background-color: #1A1A2E;
  color: #FFD700;
  border-color: #1A1A2E;
}

.page-cockfighting-live__cta .page-cockfighting-live__btn--primary:hover {
  background-color: #3A3A5A;
  border-color: #3A3A5A;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-cockfighting-live__hero-section .page-cockfighting-live__container {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting-live__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .page-cockfighting-live__hero-title {
    font-size: 3em;
  }
  .page-cockfighting-live__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting-live__hero-buttons {
    justify-content: center;
  }
  .page-cockfighting-live__download-flex {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .page-cockfighting-live__download-content .page-cockfighting-live__section-title {
    text-align: center;
  }
  .page-cockfighting-live__download-content .page-cockfighting-live__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-cockfighting-live__section {
    padding: 40px 0;
  }
  .page-cockfighting-live__section-title {
    font-size: 2.2em;
  }
  .page-cockfighting-live__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting-live__hero-image {
    max-width: 100%;
  }
  .page-cockfighting-live__features-grid, .page-cockfighting-live__guide-steps, .page-cockfighting-live__detail-list {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-live__cta-title {
    font-size: 2.5em;
  }
  .page-cockfighting-live__cta-description {
    font-size: 1.1em;
  }
}