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

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

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

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero text contrast */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Ensure hero section has a minimum height */
  justify-content: center;
}

.page-live__hero-image-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;\  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

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

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
  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;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

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

.page-live__button--secondary:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-live__why-choose-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

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

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

.page-live__feature-icon {
  width: 100%; /* Ensure image fills card area */
  max-width: 400px; /* Max width for consistency */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__game-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 20px 10px;
}

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

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

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

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

.page-live__promo-image {
  width: 100%;
  max-width: 400px; /* Max width for consistency */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-live__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

/* Access & Security Section */
.page-live__access-security-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-live__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__text-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
  color: #444444;
}

/* Get Started Section */
.page-live__get-started-section {
  padding: 80px 0;
  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 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-live__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

/* Support Section */
.page-live__support-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__support-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__support-section .page-live__content-wrapper {
  flex-direction: row; /* Default for desktop */
  text-align: left;
}

.page-live__support-section .page-live__text-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-live__support-section .page-live__text-content .page-live__button {
  align-self: flex-start;
}

.page-live__support-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

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

.page-live__cta-section .page-live__section-description {
  color: #F0F0F0;
}

.page-live__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-live__cta-actions .page-live__button--register:hover {
  background-color: #F0F0F0;
}

.page-live__cta-actions .page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__cta-actions .page-live__button--login:hover {
  background-color: #E0A83A;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 60px 0;
  background-color: #F0F0F0;
  text-align: center;
}

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

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

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

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

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

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

  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
    max-width: 300px; /* Ensure buttons don't stretch too wide */
  }

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

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

  .page-live__why-choose-section,
  .page-live__games-section,
  .page-live__promotions-section,
  .page-live__access-security-section,
  .page-live__get-started-section,
  .page-live__support-section,
  .page-live__cta-section,
  .page-live__responsible-gaming-section {
    padding: 60px 0;
  }

  .page-live__content-wrapper {
    flex-direction: column;
  }

  .page-live__support-section .page-live__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-live__support-section .page-live__text-content .page-live__button {
    align-self: center;
  }
  .page-live__support-actions {
    justify-content: center;
  }

  /* Critical: prevent horizontal overflow for images in content area */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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