.page-live {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px);
}

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

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  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;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

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

.page-live__btn {
  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, color 0.3s ease;
  min-width: 150px; /* Ensure button minimum width */
  text-align: center;
}

.page-live__btn--register, .page-live__btn--register-small, .page-live__btn--register-large {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__btn--register:hover, .page-live__btn--register-small:hover, .page-live__btn--register-large:hover {
  background-color: #222222;
}

.page-live__btn--login, .page-live__btn--login-small, .page-live__btn--login-large {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__btn--login:hover, .page-live__btn--login-small:hover, .page-live__btn--login-large:hover {
  background-color: #E2A73C;
}

.page-live__btn--play, .page-live__btn--explore-small {
  background-color: #000000;
  color: #FCBC45;
}

.page-live__btn--play:hover, .page-live__btn--explore-small:hover {
  background-color: #222222;
}

.page-live__btn--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__btn--download:hover {
  background-color: #E2A73C;
}

.page-live__btn--promo, .page-live__btn--vip, .page-live__btn--deposit-small, .page-live__btn--responsible-small, .page-live__btn--learn-more, .page-live__btn--view-details {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__btn--promo:hover, .page-live__btn--vip:hover, .page-live__btn--deposit-small:hover, .page-live__btn--responsible-small:hover, .page-live__btn--learn-more:hover, .page-live__btn--view-details:hover {
  background-color: #222222;
}

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

.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.2em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.page-live__section-description--light {
  color: #CCCCCC;
}

.page-live__introduction-section, .page-live__bonuses-section, .page-live__strategy-section {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__introduction-section .page-live__container, .page-live__bonuses-section .page-live__container, .page-live__strategy-section .page-live__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.page-live__introduction-section .page-live__section-title, .page-live__bonuses-section .page-live__section-title, .page-live__strategy-section .page-live__section-title {
  flex-basis: 100%;
}

.page-live__introduction-section .page-live__section-description, .page-live__bonuses-section .page-live__section-description, .page-live__strategy-section .page-live__section-description {
  flex-basis: 100%;
}

.page-live__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 40px;
}

.page-live__image--left {
  margin-right: 60px;
}

.page-live__image--right {
  margin-left: 60px;
}

.page-live__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.page-live__introduction-section .page-live__paragraph, .page-live__bonuses-section .page-live__paragraph, .page-live__strategy-section .page-live__paragraph {
  flex: 1;
  min-width: 300px;
}

.page-live__introduction-section .page-live__image--left + .page-live__paragraph {
  margin-left: 40px;
}

.page-live__bonuses-section .page-live__image--right + .page-live__paragraph {
  margin-right: 40px;
}

.page-live__games-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

.page-live__card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-live__features-section {
  padding: 80px 0;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-icon {
  width: 200px; /* Min size for content images */
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
}

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

.page-live__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-live__getting-started-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.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;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-live__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-live__details-list-section {
  padding: 80px 0;
}

.page-live__details-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-live__details-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__details-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__details-title a {
  color: #000000;
  text-decoration: none;
}

.page-live__details-title a:hover {
  color: #FCBC45;
}

.page-live__details-description {
  font-size: 1.1em;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

@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__image--left, .page-live__image--right {
    margin: 40px 0;
  }

  .page-live__introduction-section .page-live__container, .page-live__bonuses-section .page-live__container, .page-live__strategy-section .page-live__container {
    flex-direction: column;
  }

  .page-live__introduction-section .page-live__image--left + .page-live__paragraph {
    margin-left: 0;
  }

  .page-live__bonuses-section .page-live__image--right + .page-live__paragraph {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 20px 30px;
  }

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

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

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-live__introduction-section, .page-live__bonuses-section, .page-live__strategy-section, .page-live__features-section, .page-live__games-section, .page-live__getting-started-section, .page-live__details-list-section {
    padding: 40px 0;
  }

  .page-live__image {
    margin: 30px 0;
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  .page-live__game-cards, .page-live__feature-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__card-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto;
  }

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