.page-live {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensures consistency, though body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0; /* Adjust padding, hero content handles internal spacing */
}

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

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for text */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  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-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

.page-live__hero-button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

.page-live__introduction-section,
.page-live__games-showcase-section,
.page-live__features-section,
.page-live__getting-started-section,
.page-live__promotions-section,
.page-live__faq-section,
.page-live__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__introduction-title,
.page-live__games-showcase-title,
.page-live__features-title,
.page-live__getting-started-title,
.page-live__promotions-title,
.page-live__faq-title,
.page-live__cta-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-live__introduction-text,
.page-live__games-showcase-description,
.page-live__features-description,
.page-live__getting-started-description,
.page-live__promotions-description,
.page-live__faq-description,
.page-live__cta-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-live__game-card,
.page-live__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover,
.page-live__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-live__game-card-image,
.page-live__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live__game-card-content {
  padding: 25px;
  text-align: center;
}

.page-live__game-card-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-live__game-card-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-live__game-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__game-card-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__game-card-button:hover {
  background-color: #333333;
}

.page-live__feature-heading {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
  padding: 0 20px;
  text-align: center;
}

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

.page-live__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

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

.page-live__step-button:hover {
  background-color: #e0a53a;
}

.page-live__promotions-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px 20px;
  transition: background-color 0.3s ease;
}

.page-live__promotions-button:hover {
  background-color: #333333;
}

.page-live__promotions-button--claim {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__promotions-button--claim:hover {
  background-color: #e0a53a;
}

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

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

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

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

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

.page-live__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__cta-button:hover {
  background-color: #e0a53a;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__introduction-title,
  .page-live__games-showcase-title,
  .page-live__features-title,
  .page-live__getting-started-title,
  .page-live__promotions-title,
  .page-live__faq-title,
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__game-card-image,
  .page-live__feature-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-content {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 15px;
    margin-top: -5px; /* Pull up to overlap image slightly */
  }
  .page-live__hero-image {
    filter: brightness(0.6);
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-live__introduction-section,
  .page-live__games-showcase-section,
  .page-live__features-section,
  .page-live__getting-started-section,
  .page-live__promotions-section,
  .page-live__faq-section,
  .page-live__cta-section {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-live__introduction-title,
  .page-live__games-showcase-title,
  .page-live__features-title,
  .page-live__getting-started-title,
  .page-live__promotions-title,
  .page-live__faq-title,
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__games-grid,
  .page-live__features-grid,
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image,
  .page-live__feature-image {
    max-width: 100%;
    height: auto; /* Allow height to adjust */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-live__feature-image, .page-live__game-card-image, .page-live__hero-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-live do not cause horizontal scroll */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__promotions-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 5px;
  }
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__hero-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-live__introduction-title,
  .page-live__games-showcase-title,
  .page-live__features-title,
  .page-live__getting-started-title,
  .page-live__promotions-title,
  .page-live__faq-title,
  .page-live__cta-title {
    font-size: 1.5em;
  }
  .page-live__game-card-title,
  .page-live__feature-heading,
  .page-live__step-heading {
    font-size: 1.4em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}