.page-cockfighting-live-platform {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark backgrounds */
  line-height: 1.6;
  background-color: #0A2342; /* Main background color */
}

.page-cockfighting-live-platform .highlight {
  color: #FFD700; /* Gold for highlighting keywords */
}

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

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

.page-cockfighting-live-platform__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-live-platform__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-platform__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Hero Section */
.page-cockfighting-live-platform__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Gradient with main color */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-live-platform__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-cockfighting-live-platform__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting-live-platform__hero-description {
  font-size: 1.4em;
  color: #FFFFFF; /* White for hero description */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-live-platform__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-cockfighting-live-platform__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-cockfighting-live-platform__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-cockfighting-live-platform__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-cockfighting-live-platform__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-cockfighting-live-platform__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-cockfighting-live-platform__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-cockfighting-live-platform__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%);
}

/* About Section */
.page-cockfighting-live-platform__about {
  background-color: #0A2342;
  color: #e0e0e0;
}

/* Features Section */
.page-cockfighting-live-platform__features {
  background-color: #1a3a60;
  padding: 80px 0;
}

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

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

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

.page-cockfighting-live-platform__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-cockfighting-live-platform__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

/* Why Choose Section */
.page-cockfighting-live-platform__why-choose {
  background-color: #0A2342;
  padding: 80px 0;
}

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

.page-cockfighting-live-platform__why-choose-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-platform__why-choose-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
  border-radius: 10px 10px 0 0;
}

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

.page-cockfighting-live-platform__why-choose-image {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 5px;
  opacity: 0.8;
}

/* Guide Section */
.page-cockfighting-live-platform__guide {
  background-color: #1a3a60;
  padding: 80px 0;
}

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

.page-cockfighting-live-platform__guide-step-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures button is at bottom */
  align-items: center;
}

.page-cockfighting-live-platform__step-number {
  background-color: #FFD700;
  color: #0A2342;
  font-size: 2em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px auto; /* Pulls number up */
  border: 4px solid #0A2342;
  box-shadow: 0 0 0 5px #1a3a60;
}

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

/* Strategy Section */
.page-cockfighting-live-platform__strategy {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-cockfighting-live-platform__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-cockfighting-live-platform__strategy-list li {
  background-color: #1a3a60;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-cockfighting-live-platform__strategy-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-cockfighting-live-platform__strategy-list .page-cockfighting-live-platform__text {
  color: #c0c0c0;
  font-size: 1em;
}

.page-cockfighting-live-platform__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-cockfighting-live-platform__link:hover {
  color: #e6c200;
}

/* Commitment Section */
.page-cockfighting-live-platform__commitment {
  background-color: #1a3a60;
  padding: 80px 0;
}

/* CTA Section */
.page-cockfighting-live-platform__cta {
  background: linear-gradient(90deg, #0A2342, #1a3a60);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-cockfighting-live-platform__cta-content {
  text-align: center;
}

.page-cockfighting-live-platform__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-cockfighting-live-platform__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-live-platform__hero-title {
    font-size: 3em;
  }

  .page-cockfighting-live-platform__hero-description {
    font-size: 1.2em;
  }

  .page-cockfighting-live-platform__section-title {
    font-size: 2.2em;
  }

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

@media (max-width: 768px) {
  .page-cockfighting-live-platform__hero {
    padding: 80px 0;
  }

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

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

  .page-cockfighting-live-platform__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-live-platform__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-cockfighting-live-platform__section {
    padding: 50px 0;
  }

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

  .page-cockfighting-live-platform__feature-grid, 
  .page-cockfighting-live-platform__why-choose-grid, 
  .page-cockfighting-live-platform__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-live-platform__cta-title {
    font-size: 2em;
  }

  .page-cockfighting-live-platform__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-live-platform__hero-title {
    font-size: 2em;
  }

  .page-cockfighting-live-platform__hero-description {
    font-size: 0.9em;
  }

  .page-cockfighting-live-platform__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-cockfighting-live-platform__section-title {
    font-size: 1.5em;
  }

  .page-cockfighting-live-platform__cta-title {
    font-size: 1.8em;
  }
}