/* style/live-events.css */
.page-live-events {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for general readability */
  background-color: #0a0a0a; /* Very dark background */
  line-height: 1.6;
}

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

.page-live-events__hero-section {
  background: linear-gradient(135deg, #B80000 0%, #3a0000 100%); /* Darker red gradient for hero */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-live-events__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-live-events__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

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

.page-live-events__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #B80000; /* Deep red text */
}

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

.page-live-events__btn--secondary {
  background-color: #B80000; /* Deep red background */
  color: #FFFFFF; /* White text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-live-events__btn--secondary:hover {
  background-color: #a00000;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-live-events__hero-image-wrapper {
  position: relative;
  margin-top: 30px;
}

.page-live-events__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-live-events__section--alt-background {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

.page-live-events__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-live-events__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
  color: #e0e0e0;
}

.page-live-events__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-live-events__image {
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
}

.page-live-events__image--large {
  max-width: 800px;
}

.page-live-events__image--medium {
  max-width: 600px;
}

.page-live-events__image--small {
  max-width: 400px;
}

.page-live-events__features-list, .page-live-events__promo-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
}

.page-live-events__features-list li, .page-live-events__promo-list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-live-events__features-list li strong, .page-live-events__promo-list li strong {
  color: #FFD700;
}

.page-live-events__section--faq {
  padding-bottom: 80px;
}

.page-live-events__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-live-events__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-live-events__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live-events__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-live-events__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live-events__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-live-events__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.page-live-events__cta-footer {
  background-color: #B80000; /* Deep red for CTA footer */
  padding: 60px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-live-events__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live-events__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-live-events__hero-title {
    font-size: 2.8em;
  }
  .page-live-events__section-title {
    font-size: 2em;
  }
  .page-live-events__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-events__hero-title {
    font-size: 2.2em;
  }
  .page-live-events__hero-description {
    font-size: 1em;
  }
  .page-live-events__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-events__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-live-events__section-title {
    font-size: 1.8em;
  }
  .page-live-events__section-description {
    font-size: 0.95em;
  }
  .page-live-events__cta-title {
    font-size: 1.8em;
  }
  .page-live-events__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-live-events__hero-title {
    font-size: 1.8em;
  }
  .page-live-events__section-title {
    font-size: 1.5em;
  }
  .page-live-events__faq-question {
    font-size: 1.1em;
  }
  .page-live-events__cta-title {
    font-size: 1.6em;
  }
}