.page-live {
  color: #333333; /* Dark text for light body background */
}

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

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Limit container width */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

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

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

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  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;
  line-height: 1.6;
  color: #FFFFFF;
}

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

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

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

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

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

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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-live__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-live__feature-icon,
.page-live__game-image {
  width: 100%; /* Ensure images fill their container */
  height: auto;
  min-height: 200px; /* Minimum size for content images */
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__feature-text,
.page-live__game-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-live__game-card .page-live__button--play {
  margin-top: 20px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-live__game-card .page-live__button--play:hover {
  background-color: #e0a53b;
}

.page-live__promotions-cta {
  background-color: #000000;
  padding: 80px 0;
  color: #FFFFFF;
}

.page-live__promo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  padding: 30px;
}

.page-live__promo-image {
  width: 50%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.page-live__promo-content {
  width: 50%;
  padding: 20px;
}

.page-live__promo-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__promo-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live__button--claim:hover {
  background-color: #e0a53b;
}

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

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

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

.page-live__step-item:hover {
  transform: translateY(-5px);
}

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

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

.page-live__button--register-small,
.page-live__button--deposit-small,
.page-live__button--browse-small,
.page-live__button--play-small {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.95em;
  border: none;
}

.page-live__button--register-small:hover,
.page-live__button--deposit-small:hover,
.page-live__button--browse-small:hover,
.page-live__button--play-small:hover {
  background-color: #333333;
}

.page-live__responsible-gaming {
  padding: 60px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.page-live__responsible-gaming .page-live__section-description a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__responsible-gaming .page-live__section-description a:hover {
  text-decoration: underline;
}

.page-live__faq-section {
  padding: 60px 20px;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

.page-live__button--view-all-faq {
  display: block;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  max-width: 250px;
  text-align: center;
}

.page-live__button--view-all-faq:hover {
  background-color: #333333;
}

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

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

.page-live__contact-cta .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__contact-cta .page-live__section-description {
  color: #e0e0e0;
}

.page-live__button--contact-support {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
  border: none;
  margin-top: 30px;
}

.page-live__button--contact-support:hover {
  background-color: #e0a53b;
}

.page-live__related-links {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-live__links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-live__link-item a {
  color: #000000;
  text-decoration: none;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__link-item a:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__promo-card {
    flex-direction: column;
    text-align: center;
  }
  .page-live__promo-image,
  .page-live__promo-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__content-area {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__promo-title {
    font-size: 2.2em;
  }
  .page-live__promo-description {
    font-size: 1em;
  }
  .page-live__button--claim {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow */
  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto; /* Ensures images scale responsively */
  }
  /* Content area must not cause horizontal scroll */
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-title,
  .page-live__game-title {
    font-size: 1.4em;
  }
  .page-live__promo-title {
    font-size: 1.8em;
  }
  .page-live__step-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__links-list {
    flex-direction: column;
  }
  .page-live__link-item a {
    width: 100%;
    box-sizing: border-box;
  }
}