.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #FFFFFF; /* Default text color for dark sections */
  background-color: #000000; /* Main background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__section {
  padding: 80px 0;
  text-align: center;
}

.page-live__section--dark {
  background-color: #0d0d0d; /* Slightly lighter dark for contrast */
  color: #f0f0f0;
}

.page-live__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Accent color for titles */
  font-weight: bold;
}

.page-live__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0; /* Adjusted for image and content */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #FFFFFF;
  text-align: center;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 25px;
  color: #FCBC45; /* Accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.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.3s ease;
  cursor: pointer;
}

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

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  transform: translateY(-3px);
}

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

.page-live__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-live__button--claim:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-live__button--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

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

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

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* About Section */
.page-live__about-section {
  background-color: #000000;
  color: #f0f0f0;
  text-align: left;
}

.page-live__about-section .page-live__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-live__about-section .page-live__image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
}

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

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

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

.page-live__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-live__feature-description {
  color: #f0f0f0;
  font-size: 0.95em;
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-live__game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-live__game-description {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-live__game-button {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

/* Promotions Section */
.page-live__promo-section .page-live__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}

.page-live__promo-section .page-live__section-title,
.page-live__promo-section .page-live__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.page-live__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  width: 55%;
}

.page-live__promo-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-live__promo-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-live__promo-description {
  color: #f0f0f0;
}

.page-live__promo-section .page-live__button {
  margin-top: 20px;
  width: auto;
}

.page-live__image--right {
  width: 40%;
  height: auto;
  border-radius: 10px;
  margin-left: 5%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-live__steps-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-live__steps-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-live__steps-description {
  color: #f0f0f0;
}

.page-live__getting-started-section .page-live__button {
  margin-top: 40px;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section .page-live__button {
  margin-top: 30px;
}

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

.page-live__testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-live__testimonial-text {
  font-style: italic;
  color: #f0f0f0;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-live__testimonial-author {
  font-weight: bold;
  color: #FCBC45;
}

.page-live__image--center {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Final CTA Section */
.page-live__final-cta-section .page-live__button {
  margin-top: 40px;
}

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

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

  .page-live__promo-list,
  .page-live__image--right {
    width: 100%;
    margin-left: 0;
  }

  .page-live__promo-section .page-live__container {
    flex-direction: column;
  }

  .page-live__image--right {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px);
  }

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

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

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

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

  .page-live__button {
    width: 100%;
    max-width: 300px;
  }

  .page-live__section {
    padding: 60px 0;
  }

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

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-list,
  .page-live__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-live__image,
  .page-live__feature-image,
  .page-live__game-image {
    max-width: 100%;
    height: auto;
  }

  /* IMPORTANT: Ensure all images within .page-live are responsive */
  .page-live img {
    max-width: 100%;
    height: auto; /* Prevent overflow on mobile */
  }
}

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

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

  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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