.page-live {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero content area */
  color: #FFFFFF;
}

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability, not changing color */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

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

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

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

.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.2s ease;
  font-size: 1.1em;
}

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

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

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

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

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

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

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

.page-live__features-grid,
.page-live__games-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__step-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-live__feature-title,
.page-live__game-title,
.page-live__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-live__game-title a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FFFFFF;
}

.page-live__feature-text,
.page-live__game-description,
.page-live__step-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

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

.page-live__promo-section,
.page-live__responsible-gaming-section,
.page-live__cta-section {
  background-color: #F8F8F8;
  text-align: center;
  padding: 60px 20px;
}

.page-live__promo-description,
.page-live__responsible-gaming-text,
.page-live__cta-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

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

.page-live__button--view-promo:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-live__button--claim-bonus,
.page-live__button--register-account,
.page-live__button--deposit,
.page-live__button--explore-games,
.page-live__button--start-playing,
.page-live__button--download-app,
.page-live__button--register-cta,
.page-live__button--explore-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--claim-bonus:hover,
.page-live__button--register-account:hover,
.page-live__button--deposit:hover,
.page-live__button--explore-games:hover,
.page-live__button--start-playing:hover,
.page-live__button--download-app:hover,
.page-live__button--register-cta:hover,
.page-live__button--explore-cta:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-live__step-number {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__mobile-section {
  padding: 60px 20px;
}

.page-live__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live__mobile-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text-content {
  width: 50%;
}

.page-live__mobile-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-live__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-live__faq-section {
  padding: 60px 20px;
  background-color: #F0F0F0;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }

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

  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  .page-live__mobile-image,
  .page-live__mobile-text-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px);
  }

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

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

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

  .page-live__button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

  .page-live__game-image {
    height: 200px;
  }

  .page-live__promo-actions,
  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__mobile-image {
    width: 100%;
    max-width: 100%; /* Ensures image does not overflow */
    height: auto; /* Maintains aspect ratio */
  }

  /* Enforce max-width for all images within .page-live to prevent overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title {
    font-size: 1.4em;
  }

  .page-live__feature-text,
  .page-live__game-description,
  .page-live__step-text,
  .page-live__promo-description,
  .page-live__responsible-gaming-text,
  .page-live__cta-description,
  .page-live__mobile-description,
  .page-live__faq-question,
  .page-live__faq-answer {
    font-size: 0.95em;
  }
}