.page-live {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Explicitly set for content area */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

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

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 600px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

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

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

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

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

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-live__button--inline {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-live__button--inline:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.page-live__link {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.page-live__link:hover {
  color: #FCBC45;
}

.page-live__why-choose-section,
.page-live__featured-games-section,
.page-live__getting-started-section,
.page-live__technology-section,
.page-live__promotions-vip-section,
.page-live__faq-section,
.page-live__call-to-action-section {
  padding: 80px 0;
}

.page-live__why-choose-section {
  background-color: #F8F8F8;
}

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

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

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

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

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 0 10px 0;
  padding: 0 20px;
  font-weight: 700;
}

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button {
  margin: 0 20px 20px 20px;
}

.page-live__getting-started-section {
  background-color: #F8F8F8;
}

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

.page-live__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__step-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #FCBC45;
  margin-bottom: 15px;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

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

.page-live__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-live__tech-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.page-live__promotions-vip-section {
  background-color: #F8F8F8;
}

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

.page-live__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Enforce min-height */
}

.page-live__promo-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 0 10px 0;
  padding: 0 20px;
  font-weight: 700;
}

.page-live__promo-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-live__promo-card .page-live__button {
  margin: 0 20px 20px 20px;
}

.page-live__cta-promo {
  text-align: center;
}

.page-live__cta-text {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.page-live__faq-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__faq-question {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.page-live__call-to-action-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__call-to-action-section .page-live__section-title,
.page-live__call-to-action-section .page-live__section-intro {
  color: #FFFFFF;
}

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

  .page-live__hero-description {
    font-size: 1.1em;
  }

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

  .page-live__section-intro {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding: 20px;
  }

  .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: 1.8em;
  }

  .page-live__section-intro {
    font-size: 0.95em;
  }

  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__steps-grid,
  .page-live__tech-grid,
  .page-live__promo-grid,
  .page-live__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-image,
  .page-live__promo-image {
    height: 200px; /* Adjust height for smaller screens */
    min-height: 200px;
  }

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

  .page-live__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-live__content-wrapper {
    overflow-x: hidden;
  }

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

  .page-live__button--small {
    font-size: 0.9em;
    padding: 8px 15px;
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-live__content-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
  }
}

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

  .page-live__hero-description {
    font-size: 0.9em;
  }

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

  .page-live__section-intro {
    font-size: 0.85em;
  }

  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}