.page-live {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-live__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px 40px; /* Adjust top padding if header offset is handled by main */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-live__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
  white-space: nowrap;
}

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

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

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

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

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

.page-live__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

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

.page-live__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

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

/* Introduction Section */
.page-live__introduction-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

/* Features Section */
.page-live__features-section {
  padding: 60px 0;
}

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

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

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

.page-live__feature-image {
  width: 100%;
  height: 200px; /* Enforce minimum height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__card-description {
  font-size: 1em;
  color: #555555;
}

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

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

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

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

.page-live__game-image {
  width: 100%;
  height: 180px; /* Enforce minimum height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Download Guide Section */
.page-live__download-guide-section {
  padding: 60px 0;
}

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

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

.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-live__process-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__section-title,
.page-live__promotions-section .page-live__text-content {
  color: #FFFFFF;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 60px 0;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

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

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

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

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

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

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

.page-live__button--download-large,
.page-live__button--register-large {
  padding: 18px 35px;
  font-size: 1.25em;
  border-radius: 10px;
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .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;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-live__text-content {
    font-size: 1em;
  }
  .page-live__feature-image, .page-live__game-image {
    height: 180px; /* Ensure images are not too small but responsive */
    max-width: 100%;
    height: auto;
  }
  .page-live__process-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-grid, .page-live__steps-grid, .page-live__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--download-large, .page-live__button--register-large {
    width: 100%;
    max-width: 320px;
  }
  /* Ensure all images within .page-live are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}