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

.page-live h1, .page-live h2, .page-live h3 {
  color: #000000; /* Black for headings */
  margin-bottom: 20px;
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* White text on hero image */
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 8px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.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: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

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

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

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

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

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

.page-live__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-live__introduction-section,
.page-live__why-choose-us,
.page-live__getting-started,
.page-live__bonuses-promotions,
.page-live__faq-section,
.page-live__call-to-action {
  padding: 60px 0;
}

.page-live__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.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 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, min 200px */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-live__game-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 0.95em;
  padding: 0 15px 20px;
  color: #555555;
  text-align: left;
}

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

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

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

.page-live__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

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

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

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

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

.page-live__step-description {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-live__button--tertiary {
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

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

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

.page-live__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

.page-live__promo-image {
  width: 100%;
  height: 200px; /* Min 200px */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-live__promo-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__promo-description {
  font-size: 0.95em;
  padding: 0 15px 20px;
  color: #555555;
  text-align: left;
}

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

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

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

.page-live__call-to-action {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-live__call-to-action .page-live__section-title {
  color: #FCBC45;
}

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

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

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__steps-grid,
  .page-live__promo-cards {
    grid-template-columns: 1fr;
  }

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

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

  .page-live__game-image,
  .page-live__promo-image {
    height: auto; /* Allow height to adjust */
    max-width: 100%;
    min-height: 200px; /* Ensure images are not too small */
  }

  /* Ensure all images within .page-live are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@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__hero-section {
    min-height: 400px;
  }

  .page-live__hero-content {
    padding: 20px;
  }

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