/* style/cockfighting-live-event-schedule.css */
.page-cockfighting-live-event-schedule {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A2E; /* Primary dark background */
  line-height: 1.6;
}

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

.page-cockfighting-live-event-schedule__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-live-event-schedule__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-cockfighting-live-event-schedule__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-cockfighting-live-event-schedule__hero-description {
  font-size: 1.3em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-cockfighting-live-event-schedule__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting-live-event-schedule__hero-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-cockfighting-live-event-schedule__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none; /* Make image unclickable */
}

.page-cockfighting-live-event-schedule__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-cockfighting-live-event-schedule__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-cockfighting-live-event-schedule__introduction,
.page-cockfighting-live-event-schedule__why-choose,
.page-cockfighting-live-event-schedule__schedule,
.page-cockfighting-live-event-schedule__betting-guide,
.page-cockfighting-live-event-schedule__promotions,
.page-cockfighting-live-event-schedule__faq,
.page-cockfighting-live-event-schedule__cta {
  padding: 80px 0;
}

.page-cockfighting-live-event-schedule__introduction {
  background-color: #262640; /* Slightly lighter dark */
}

.page-cockfighting-live-event-schedule__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-cockfighting-live-event-schedule__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-cockfighting-live-event-schedule__btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-cockfighting-live-event-schedule__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting-live-event-schedule__text-link:hover {
  text-decoration: underline;
}

.page-cockfighting-live-event-schedule__why-choose {
  background-color: #1A1A2E;
}

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

.page-cockfighting-live-event-schedule__feature-item {
  background-color: #262640;
  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-event-schedule__feature-item:hover {
  transform: translateY(-5px);
}

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

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

.page-cockfighting-live-event-schedule__schedule {
  background-color: #262640;
}

.page-cockfighting-live-event-schedule__schedule-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting-live-event-schedule__event-item {
  background-color: #1A1A2E;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting-live-event-schedule__event-details {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 5px;
}

.page-cockfighting-live-event-schedule__event-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-top: 15px;
}

.page-cockfighting-live-event-schedule__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-cockfighting-live-event-schedule__betting-guide {
  background-color: #1A1A2E;
}

.page-cockfighting-live-event-schedule__betting-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-event-schedule__guide-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting-live-event-schedule__guide-list li {
  background-color: #262640;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  counter-increment: guide-counter;
  position: relative;
  padding-left: 60px; /* Space for custom counter */
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-cockfighting-live-event-schedule__guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A1A2E;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-cockfighting-live-event-schedule__guide-list li strong {
  color: #FFD700;
}

.page-cockfighting-live-event-schedule__promotions {
  background-color: #262640;
}

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

.page-cockfighting-live-event-schedule__promo-item {
  background-color: #1A1A2E;
  padding: 25px;
  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-event-schedule__promo-item:hover {
  transform: translateY(-5px);
}

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

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

.page-cockfighting-live-event-schedule__faq {
  background-color: #1A1A2E;
}

.page-cockfighting-live-event-schedule__faq-item {
  background-color: #262640;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-event-schedule__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-cockfighting-live-event-schedule__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-cockfighting-live-event-schedule__faq-question.active::after {
  content: '-';
}

.page-cockfighting-live-event-schedule__faq-item .page-cockfighting-live-event-schedule__paragraph {
  display: none;
  margin-top: 15px;
  padding-left: 10px;
  border-left: 3px solid #FFD700;
}

.page-cockfighting-live-event-schedule__faq-item .page-cockfighting-live-event-schedule__paragraph.active {
  display: block;
}

.page-cockfighting-live-event-schedule__cta {
  background-color: #262640;
  text-align: center;
}

.page-cockfighting-live-event-schedule__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting-live-event-schedule__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-cockfighting-live-event-schedule__btn--primary:hover {
  background-color: #e6c200;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cockfighting-live-event-schedule__hero {
    padding: 80px 0 40px;
  }

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

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

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

  .page-cockfighting-live-event-schedule__features-grid,
  .page-cockfighting-live-event-schedule__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting-live-event-schedule__guide-list li {
    padding-left: 50px;
  }

  .page-cockfighting-live-event-schedule__guide-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

  .page-cockfighting-live-event-schedule__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting-live-event-schedule__hero-btn,
  .page-cockfighting-live-event-schedule__btn,
  .page-cockfighting-live-event-schedule__btn--primary,
  .page-cockfighting-live-event-schedule__btn--secondary {
    width: 80%;
    max-width: 300px;
  }
}

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

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

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

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

  .page-cockfighting-live-event-schedule__feature-title,
  .page-cockfighting-live-event-schedule__promo-title {
    font-size: 1.3em;
  }
}