.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;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

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

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

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

.page-live__button {
  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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

.page-live__about-section,
.page-live__games-showcase,
.page-live__how-to-play,
.page-live__mobile-gaming,
.page-live__bonuses-promotions,
.page-live__responsible-gaming,
.page-live__why-choose-us,
.page-live__cta-bottom {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f8f8f8;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-5px);
}

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

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

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

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

.page-live__game-card:hover {
  transform: translateY(-5px);
}

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

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

.page-live__game-text {
  color: #666666;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin-top: auto; /* Push to bottom */
  margin-bottom: 20px;
  align-self: center;
}

.page-live__button--play:hover {
  background-color: #e0a33c;
}

.page-live__how-to-play {
  background-color: #f8f8f8;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-live__step-text {
  color: #666666;
}

.page-live__step-text a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__step-text a:hover {
  text-decoration: underline;
}

.page-live__button--cta {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 60px;
}

.page-live__button--cta:hover {
  background-color: #333333;
}

.page-live__mobile-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-live__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__mobile-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-live__mobile-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555555;
}

.page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
}

.page-live__button--download:hover {
  background-color: #e0a33c;
}

.page-live__bonuses-promotions {
  background-color: #000000;
  color: #ffffff;
}

.page-live__bonuses-promotions .page-live__section-title,
.page-live__bonuses-promotions .page-live__section-intro {
  color: #ffffff;
}

.page-live__bonuses-promotions .page-live__section-intro a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__bonuses-promotions .page-live__section-intro a:hover {
  text-decoration: underline;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
}

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin: 20px 15px 10px 15px;
}

.page-live__promo-text {
  color: #e0e0e0;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-live__button--claim,
.page-live__button--view {
  background-color: #FCBC45;
  color: #000000;
  margin-top: auto;
  margin-bottom: 20px;
  align-self: center;
}

.page-live__button--claim:hover,
.page-live__button--view:hover {
  background-color: #e0a33c;
}

.page-live__responsible-gaming {
  background-color: #f0f0f0;
}

.page-live__rg-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
}

.page-live__rg-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555555;
}

.page-live__button--learn {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 40px;
}

.page-live__button--learn:hover {
  background-color: #333333;
}

.page-live__why-choose-us {
  background-color: #ffffff;
}

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

.page-live__advantage-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-live__advantage-text {
  color: #666666;
  flex-grow: 1;
}

.page-live__advantage-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

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

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

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

.page-live__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-live__button--register-large:hover {
  background-color: #e0a33c;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-section {
    padding: 60px 0;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
    padding-top: 30px;
  }
  .page-live__section-intro {
    margin-bottom: 40px;
  }
  .page-live__mobile-container {
    flex-direction: column;
  }
  .page-live__mobile-content, .page-live__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-live__game-image, .page-live__promo-image {
    height: 180px;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__button--register-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-live__advantages-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure all images within .page-live are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  .page-live__game-image, .page-live__promo-image, .page-live__advantage-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Override fixed height to allow auto height */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__step-title, .page-live__promo-title, .page-live__advantage-title {
    font-size: 1.5em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
}