.page-live {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 600px;
  padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header */
  overflow: hidden;
  color: #FFFFFF; /* Light text for hero section */
  background-color: #000000; /* Fallback background color */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7); /* Darken image for text readability, not changing color */
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.page-live__section-padding {
  padding: 80px 20px;
}

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

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

.page-live__section-title--light {
  color: #FFFFFF;
}

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

.page-live__section-text--light {
  color: #f0f0f0;
}

.page-live__dark-background {
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark section */
  color: #FFFFFF;
}

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

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

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

.page-live__game-title,
.page-live__why-title {
  color: #FFFFFF;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__why-description {
  font-size: 1em;
  color: #555555;
}

.page-live__game-description,
.page-live__why-description {
  color: #CCCCCC;
}

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

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

.page-live__promo-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-live__promo-content {
  flex: 1;
  text-align: left;
}

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

.page-live__register-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
  font-size: 1.1em;
  color: #333333;
}

.page-live__register-steps li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-live__register-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FCBC45;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-live__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  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.4em;
  color: #000000;
  margin-bottom: 10px;
}

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

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

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

  .page-live__promo-layout {
    flex-direction: column;
  }

  .page-live__promo-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on mobile */
    padding-bottom: 40px;
  }

  .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;
  }

  .page-live__section-padding {
    padding: 60px 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live__section-text {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-live__promo-image {
    max-width: 100%;
  }

  .page-live__faq-question {
    font-size: 1.2em;
  }

  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-live__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-live__register-steps li {
    font-size: 1em;
  }
}

/* Ensure content area images are not small */
.page-live__features-grid img, 
.page-live__game-cards-grid img, 
.page-live__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no CSS filter is used to change image colors */
.page-live img {
  filter: none; /* Remove any potential filter affecting color */
}

.page-live__hero-image {
  filter: brightness(0.7); /* Allowed for readability, not color change */
}