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

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Fallback for hero section background */
  padding: 0; /* Hero section padding controlled by content and image */
}

.page-live__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  opacity: 0.6; /* Overlay for text readability */
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

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

.page-live__hero-button--register:hover {
  background-color: #f0f0f0;
}

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

.page-live__hero-button--login:hover {
  background-color: #e0a53b;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  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__introduction-section,
.page-live__technology-section,
.page-live__bonuses-section,
.page-live__get-started-section,
.page-live__responsible-gaming-section,
.page-live__why-choose-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 60px 0;
}

.page-live__introduction-section .page-live__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

.page-live__games-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  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;
  display: block;
}

.page-live__game-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-live__game-title a {
  color: #000000;
  text-decoration: none;
}

.page-live__game-title a:hover {
  color: #FCBC45;
}

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

.page-live__game-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-live__game-button:hover {
  background-color: #e0a53b;
}

.page-live__technology-section {
  background-color: #FFFFFF;
}

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

.page-live__tech-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__tech-content {
  flex: 1;
  max-width: 50%;
}

.page-live__tech-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-live__bonuses-section {
  background-color: #f8f8f8;
}

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

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

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

.page-live__promo-description {
  font-size: 1em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-live__promo-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__promo-button:hover {
  background-color: #e0a53b;
}

.page-live__text-content--small {
  font-size: 0.9em;
  text-align: center;
  margin-top: 30px;
  color: #777777;
}

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

.page-live__step-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-live__step-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__step-button:hover {
  background-color: #333333;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
}

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

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

.page-live__why-choose-section {
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-live__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__faq-list {
  margin-top: 40px;
}

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

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

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

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

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

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

.page-live__cta-section .page-live__text-content {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-live__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.page-live__cta-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

@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;
  }
  .page-live__content-wrapper {
    flex-direction: column;
  }
  .page-live__tech-image,
  .page-live__tech-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__game-grid,
  .page-live__promo-grid,
  .page-live__steps-grid,
  .page-live__features-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__tech-image, .page-live__feature-image {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and do not overflow */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__hero-container {
    min-height: 400px;
  }
  .page-live__text-content, .page-live__game-description, .page-live__promo-description, .page-live__step-description, .page-live__feature-description, .page-live__faq-answer {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__tech-subtitle, .page-live__game-title, .page-live__promo-title, .page-live__step-title, .page-live__feature-title, .page-live__faq-question {
    font-size: 1.3em;
  }
}