.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  overflow: hidden;
  color: #FFFFFF;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-live__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
  border-color: #FCBC45;
}

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
  border-color: #FFFFFF;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-live__features-section,
.page-live__games-showcase,
.page-live__how-to-play-section,
.page-live__promotions-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__features-section {
  background-color: #f5f5f5;
}

.page-live__features-grid,
.page-live__games-grid,
.page-live__promotions-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__promo-card,
.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__promo-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-live__feature-image,
.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__promo-title,
.page-live__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-live__feature-text,
.page-live__game-description,
.page-live__promo-text,
.page-live__step-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button,
.page-live__step-card .page-live__button,
.page-live__promo-card .page-live__button {
  margin-top: 20px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: center;
}

.page-live__game-card .page-live__button:hover,
.page-live__step-card .page-live__button:hover,
.page-live__promo-card .page-live__button:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-live__how-to-play-section {
  background-color: #FFFFFF;
}

.page-live__promotions-section {
  background-color: #f5f5f5;
}

.page-live__faq-accordion {
  margin-top: 30px;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-live__faq-item.active .page-live__faq-question::after {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  padding: 0 20px 20px;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-live__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-live__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }

  .page-live__hero-description {
    font-size: 1em;
  }

  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__section-title {
    font-size: 2em;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promotions-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-live__hero-section,
  .page-live__features-section,
  .page-live__games-showcase,
  .page-live__how-to-play-section,
  .page-live__promotions-section,
  .page-live__faq-section,
  .page-live__cta-section {
    padding: 40px 15px;
  }

  .page-live__cta-buttons {
    flex-direction: column;
  }

  /* Mobile responsiveness for images */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}