.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 content is not hidden by fixed header */
}

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding-bottom: 50px; /* Adjust as needed */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.8); /* Allow brightness for background effect, but not color change */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  width: 90%;
  z-index: 10;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for highlight */
}

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

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

.page-live__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.page-live__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

/* General Section Styling */
.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

/* Features Section */
.page-live__features-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

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

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

.page-live__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__feature-text {
  font-size: 1em;
  color: #666666;
}

/* Games Section */
.page-live__games-section {
  padding: 60px 0;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 0 10px 20px;
}

.page-live__game-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px 20px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live__button--play:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* How to Play Section */
.page-live__how-to-play-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.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;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-live__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FCBC45;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__step-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__button--register-small, .page-live__button--learn-more, .page-live__button--play-now {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live__button--register-small:hover, .page-live__button--learn-more:hover, .page-live__button--play-now:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 60px 0;
}

.page-live__promotion-card {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 40px;
}

.page-live__promotion-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-live__promotion-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-live__promotion-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-live__promotion-text {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 30px;
}

.page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
  align-self: flex-start;
}

.page-live__button--claim:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-live__more-promos {
  text-align: center;
  margin-top: 30px;
  font-size: 1em;
  color: #666666;
}

.page-live__more-promos a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__more-promos a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-live__faq-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

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

.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-live__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

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

.page-live__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__promotion-card {
    flex-direction: column;
  }
  .page-live__promotion-image, .page-live__promotion-content {
    width: 100%;
  }
  .page-live__promotion-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__promotion-title {
    font-size: 1.6em;
  }
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__button--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px; /* Enforce minimum size even on mobile */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__step-card {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__step-title {
    font-size: 1.3em;
  }
  .page-live__promotion-title {
    font-size: 1.4em;
  }
  .page-live__promotion-content {
    padding: 20px;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__button--cta {
    padding: 12px 25px;
    font-size: 1em;
  }
}