.page-live {
  color: #1A202C; /* Dark text for light body background */
  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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  background-color: #1A202C; /* Fallback background, image will be layered */
}

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

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

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #333333;
}

.page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__access-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f0f0f0;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-5px);
}

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

.page-live__feature-description {
  color: #555555;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #1A202C;
  margin: 20px 0 10px;
}

.page-live__game-description {
  padding: 0 20px 20px;
  color: #555555;
}

.page-live__game-card .page-live__button {
  margin-bottom: 20px;
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-live__game-card .page-live__button:hover {
  background-color: #333c4d;
  color: #FFD700;
}

.page-live__promotions-section {
  background-color: #1A202C;
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__section-title {
  color: #FFD700;
}

.page-live__promotions-section .page-live__section-intro {
  color: #e0e0e0;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
}

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-live__promo-description {
  padding: 0 20px 20px;
  color: #cccccc;
}

.page-live__promo-card .page-live__button {
  margin-bottom: 20px;
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-live__promo-card .page-live__button:hover {
  background-color: #e6c200;
  color: #1A202C;
}

.page-live__action-center {
  text-align: center;
  margin-top: 50px;
}

.page-live__action-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-live__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__step-card:hover {
  transform: translateY(-5px);
}

.page-live__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-live__step-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-live__faq-section {
  background-color: #f0f0f0;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

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

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

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

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

.page-live__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 0 20px 20px;
}

.page-live__cta-section {
  background-color: #1A202C;
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700;
}

.page-live__cta-section .page-live__section-intro {
  color: #e0e0e0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-live__button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

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

  .page-live__section-intro {
    font-size: 0.95em;
  }

  .page-live__features-grid, .page-live__game-cards-grid, .page-live__promo-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-image, .page-live__promo-image {
    max-width: 100%;
    height: auto;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Ensure all content area images are responsive and don't cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-live__button--large {
    font-size: 1em;
    padding: 15px 25px;
  }
}