.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
  padding: 80px 20px;
}

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

.page-live__hero-container {
  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: 40px;
  color: #f0f0f0;
}

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

.page-live__hero-button {
  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, transform 0.2s ease;
}

.page-live__hero-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__hero-button--register:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-live__hero-button--login:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-live__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

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

.page-live__why-choose-section,
.page-live__games-section,
.page-live__bonuses-section,
.page-live__seamless-experience-section,
.page-live__security-section,
.page-live__get-started-section,
.page-live__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__bonus-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-icon,
.page-live__game-image,
.page-live__bonus-image,
.page-live__experience-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__bonus-title,
.page-live__experience-title,
.page-live__security-title,
.page-live__step-title,
.page-live__faq-question {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__bonus-description,
.page-live__experience-description,
.page-live__security-description,
.page-live__step-description,
.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__game-button,
.page-live__bonus-button,
.page-live__action-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__game-button:hover,
.page-live__bonus-button:hover,
.page-live__action-button:hover {
  background-color: #e0a53b;
}

.page-live__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #000000;
  font-weight: bold;
}

.page-live__action-button--download {
  margin-top: 20px;
}

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

.page-live__experience-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-live__security-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-live__learn-more-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-live__learn-more-link:hover {
  color: #e0a53b;
}

.page-live__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__step-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  text-align: center;
}

.page-live__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__action-button--register-bottom {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

.page-live__faq-item {
  background-color: #f9f9f9;
  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.2em;
  color: #000000;
  padding: 20px 30px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ededed;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

/* Mobile responsiveness */
@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;
  }

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

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__bonus-cards,
  .page-live__experience-details,
  .page-live__security-details,
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__bonus-image,
  .page-live__experience-image {
    height: 200px; /* Ensure images are not too small */
    max-width: 100%;
  }

  /* Ensure all images within .page-live are responsive and do not cause overflow */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  .page-live__hero-section {
    min-height: 450px;
    padding: 60px 15px;
  }

  .page-live__content-area {
    padding: 30px 15px;
  }

  .page-live__feature-title,
  .page-live__game-title,
  .page-live__bonus-title,
  .page-live__experience-title,
  .page-live__security-title,
  .page-live__step-title,
  .page-live__faq-question {
    font-size: 1.5em;
  }

  .page-live__hero-button,
  .page-live__game-button,
  .page-live__bonus-button,
  .page-live__action-button {
    width: 100%;
  }

  .page-live__action-button--register-bottom {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}