.page-live {
  color: #333333; /* Deep gray for readability on 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;
}

.page-live__hero-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-live__button--register {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
}

.page-live__button--register:hover {
  background-color: #e0a53b;
}

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

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

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__cta-section, .page-live__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__features-grid, .page-live__games-grid, .page-live__promo-cards {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-live__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-live__feature-card, .page-live__game-card, .page-live__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__feature-image, .page-live__game-image, .page-live__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__feature-text, .page-live__game-text, .page-live__promo-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__games-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-live__button--play, .page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-live__button--play:hover, .page-live__button--claim:hover {
  background-color: #e0a53b;
}

.page-live__promo-cards {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-live__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 40px;
  border: 2px solid #000000;
  min-width: 220px;
}

.page-live__button--view-all:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-live__cta-section {
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-section .page-live__section-title {
  color: #000000;
  font-size: 3em;
}

.page-live__cta-section .page-live__section-description {
  color: #333333;
  margin-bottom: 40px;
}

.page-live__button--join-now {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 8px;
  min-width: 250px;
}

.page-live__button--join-now:hover {
  background-color: #333333;
}

.page-live__faq-section {
  background-color: #f0f0f0;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  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;
  cursor: pointer;
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__cta-section .page-live__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-section {
    padding: 60px 20px;
  }
  .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: 100%;
    padding: 12px 25px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__promo-image {
    height: auto; /* Allow image to scale proportionally */
    max-width: 100%; /* Prevent image overflow */
  }
  .page-live__cta-section .page-live__section-title {
    font-size: 2em;
  }
  .page-live__button--join-now {
    width: 100%;
    padding: 15px 30px;
  }
  /* Mobile content area images must not cause overflow */
  .page-live__container img, .page-live__features-grid img, .page-live__games-grid img, .page-live__promo-cards img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer {
    font-size: 0.9em;
  }
}

@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.6em;
  }
  .page-live__cta-section .page-live__section-title {
    font-size: 1.8em;
  }
}