.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

/* Header offset for fixed header */
.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the background image for text readability */
  z-index: 0;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

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

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

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

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

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

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

.page-live__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-live__introduction-section,
.page-live__why-choose-section,
.page-live__games-section,
.page-live__promotions-section,
.page-live__seamless-experience-section,
.page-live__responsible-gaming-section,
.page-live__support-section,
.page-live__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-live__feature-grid, .page-live__game-grid, .page-live__promo-grid, .page-live__support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__support-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__promo-card:hover, .page-live__support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-live__card-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1; /* Allows description to take available space */
  margin-bottom: 20px;
}

.page-live__button--play, .page-live__button--view-promo, .page-live__button--learn-more, .page-live__button--contact-support, .page-live__button--join-now, .page-live__button--download-app {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: auto; /* Push button to bottom of card */
}

.page-live__button--play:hover, .page-live__button--view-promo:hover, .page-live__button--learn-more:hover, .page-live__button--contact-support:hover, .page-live__button--join-now:hover, .page-live__button--download-app:hover {
  background-color: #000000;
  color: #FCBC45;
}

.page-live__payment-list, .page-live__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-live__payment-item, .page-live__responsible-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-live__payment-item strong, .page-live__responsible-item strong {
  color: #000000;
}

.page-live__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__cta-section .page-live__text-block {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__cta-section .page-live__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__cta-section .page-live__button--join-now:hover {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__cta-section .page-live__button--download-app {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__cta-section .page-live__button--download-app:hover {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

/* Responsive adjustments */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__text-block {
    font-size: 0.95em;
  }
  .page-live__feature-grid, .page-live__game-grid, .page-live__promo-grid, .page-live__support-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__card-image {
    height: 200px;
  }
  .page-live__button--play, .page-live__button--view-promo, .page-live__button--learn-more, .page-live__button--contact-support, .page-live__button--join-now, .page-live__button--download-app {
    width: auto; /* Adjust for grid items */
  }
  /* Mobile content image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.6em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__support-card {
    padding: 20px;
  }
  .page-live__card-title {
    font-size: 1.4em;
  }
  .page-live__card-description {
    font-size: 0.9em;
  }
}

/* Ensure content area images are at least 200px where applicable */
.page-live__feature-card .page-live__card-image,
.page-live__game-card .page-live__game-image,
.page-live__promo-card .page-live__card-image,
.page-live__support-card .page-live__card-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter is used on images */
.page-live img {
  filter: none; /* Explicitly disable any potential filter */
}