.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 space for fixed header */
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color for titles */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Login button color as accent */
  border-radius: 2px;
}

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

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  text-align: center;
}

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

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

.page-live__button--login,
.page-live__button--play,
.page-live__button--claim,
.page-live__button--download,
.page-live__button--step,
.page-live__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover,
.page-live__button--play:hover,
.page-live__button--claim:hover,
.page-live__button--download:hover,
.page-live__button--step:hover,
.page-live__button--join-now:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

.page-live__button--explore,
.page-live__button--view,
.page-live__button--learn-more,
.page-live__button--all-promos,
.page-live__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-live__button--explore:hover,
.page-live__button--view:hover,
.page-live__button--learn-more:hover,
.page-live__button--all-promos:hover,
.page-live__button--view-all:hover {
  background-color: #333333;
  color: #FFFFFF;
}

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 80px 20px;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__hero-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 1;
}

.page-live__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

/* Why Choose Section */
.page-live__why-choose-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__feature-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-live__feature-description {
  color: #666666;
}

/* Popular Games Section */
.page-live__popular-games-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-live__game-category {
  margin-bottom: 60px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-live__game-category:last-of-type {
  margin-bottom: 0;
}

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

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

.page-live__game-category--reverse .page-live__game-content {
  flex-direction: row-reverse;
}

.page-live__game-content img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live__game-description-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-live__game-description {
  color: #555555;
  line-height: 1.8;
}

.page-live__game-category--other {
  text-align: center;
}

.page-live__game-category--other .page-live__game-description {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__promo-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-live__promo-description {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-live__all-promos-cta {
  text-align: center;
  margin-top: 50px;
}

/* Mobile App Section */
.page-live__mobile-app-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-live__app-content img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live__app-description-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-live__app-description {
  color: #555555;
  line-height: 1.8;
}

/* Security Section */
.page-live__security-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__security-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-live__security-description {
  color: #666666;
}

.page-live__security-cta {
  text-align: center;
  margin-top: 50px;
}

/* Getting Started Section */
.page-live__getting-started-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-live__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-live__step-description {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-live__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__faq-answer {
  color: #555555;
  line-height: 1.7;
}

.page-live__faq-cta {
  text-align: center;
  margin-top: 50px;
}

/* Call to Action Bottom Section */
.page-live__cta-bottom-section {
  padding: 80px 20px;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
}

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

.page-live__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__game-content,
  .page-live__game-category--reverse .page-live__game-content,
  .page-live__app-content {
    flex-direction: column;
  }
  .page-live__game-content img,
  .page-live__app-content img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
    margin-top: 30px;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-live__features-grid,
  .page-live__promo-grid,
  .page-live__security-points,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-category,
  .page-live__promo-card,
  .page-live__security-item,
  .page-live__step-item,
  .page-live__faq-item {
    padding: 25px;
  }
  .page-live__game-content img, 
  .page-live__app-content img, 
  .page-live__features-grid img, 
  .page-live__promo-card img, 
  .page-live__security-item img {
    max-width: 100%; 
    height: auto; 
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  /* Critical: prevent content overflow on mobile */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-live {
    overflow-x: hidden;
  }
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
}

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