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

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* White text on dark/rich hero background */
  padding: 0;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 400px; /* Minimum height for hero image */
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure content has enough space */
}

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

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

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

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

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

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

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

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

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

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

.page-live__about-section, .page-live__games-section, .page-live__mobile-section, .page-live__promotion-section, .page-live__start-section, .page-live__faq-section, .page-live__cta-section {
  padding: 40px 0;
}

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

.page-live__feature-card, .page-live__promo-card, .page-live__step-card, .page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover, .page-live__promo-card:hover, .page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live__feature-image, .page-live__game-image, .page-live__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-live__feature-title, .page-live__promo-title, .page-live__step-title, .page-live__faq-question {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__feature-text, .page-live__promo-text, .page-live__step-text, .page-live__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-live__game-category {
  margin-bottom: 80px;
  padding-top: 40px;
}

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

.page-live__game-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-live__game-content--column {
  flex-direction: column;
}

.page-live__game-image--left {
  order: 1;
}

.page-live__game-image--right {
  order: 2;
}

.page-live__game-details {
  flex: 1;
  text-align: left;
}

.page-live__game-details p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-live__game-details ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-live__game-details li {
  margin-bottom: 10px;
  color: #555555;
}

.page-live__button--play-now, .page-live__button--explore-all, .page-live__button--download-app, .page-live__button--view-promo, .page-live__button--all-promos, .page-live__button--step, .page-live__button--main-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-live__button--play-now:hover, .page-live__button--explore-all:hover, .page-live__button--download-app:hover, .page-live__button--view-promo:hover, .page-live__button--all-promos:hover, .page-live__button--step:hover, .page-live__button--main-cta:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #000000;
  transform: translateY(-2px);
}

.page-live__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__mobile-image {
  flex: 1;
  max-width: 50%;
}

.page-live__mobile-features {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-live__mobile-features li {
  background-color: #F8F8F8;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__mobile-cta {
  text-align: center;
  margin-top: 60px;
}

.page-live__mobile-cta p {
  font-size: 1.3em;
  color: #444444;
  margin-bottom: 30px;
}

.page-live__promo-cta {
  text-align: center;
  margin-top: 60px;
}

.page-live__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__faq-question {
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
}

.page-live__faq-item.active .page-live__faq-question::after {
  content: '-';
}

.page-live__faq-answer {
  text-align: left;
  margin-top: 15px;
  display: none;
  color: #666666;
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

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

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

.page-live__cta-description {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-content {
    padding: 80px 15px;
    min-height: 450px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-live__section-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .page-live__features-grid, .page-live__promo-grid, .page-live__steps-grid, .page-live__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__game-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__game-image--left, .page-live__game-image--right {
    order: unset;
  }
  .page-live__game-details {
    text-align: center;
  }
  .page-live__game-details ul {
    padding-left: 0;
    list-style-position: inside;
  }
  .page-live__mobile-content {
    flex-direction: column;
  }
  .page-live__mobile-image {
    max-width: 100%;
  }
  .page-live__cta-title {
    font-size: 2.5em;
  }
  .page-live__cta-description {
    font-size: 1.2em;
  }
  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-content {
    padding: 60px 10px;
    min-height: 350px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-live__button {
    width: 100%;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__game-title {
    font-size: 1.8em;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1.1em;
  }
}