.page-live {
  /* Default padding-top for fixed header offset on desktop */
  padding-top: var(--header-offset, 120px);
  background-color: #f5f5f5; /* Light background for content area */
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #4A148C, #6A1B9A);
  color: #ffffff;
  gap: 30px;
}

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

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

.page-live__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__hero-image {
  max-width: 100%;
  margin-top: 40px;
}

.page-live__hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #4A148C;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__games-section,
.page-live__features-section,
.page-live__promotions-section,
.page-live__getting-started-section,
.page-live__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.page-live__game-card,
.page-live__feature-item,
.page-live__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover,
.page-live__feature-item:hover,
.page-live__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__game-card img,
.page-live__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__card-title,
.page-live__feature-title {
  font-size: 1.6em;
  color: #4A148C;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FFD700;
  color: #4A148C;
  border: 2px solid #FFD700;
}

.page-live__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #4A148C;
  transform: translateY(-3px);
}

.page-live__btn--small {
  padding: 8px 20px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #4A148C;
  color: #FFD700;
  border: 1px solid #4A148C;
}

.page-live__btn--small:hover {
  background-color: #6A1B9A;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-live__all-games-action {
  text-align: center;
  margin-top: 50px;
}

.page-live__promotions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-live__promo-content {
  max-width: 800px;
}

.page-live__promo-description {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 30px;
}

.page-live__promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__step-card {
  background-color: #eff3f7;
  border: 1px solid #e0e0e0;
}

.page-live__step-number {
  font-size: 2em;
  color: #FFD700;
  background-color: #4A148C;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

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

.page-live__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #4A148C;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-live__faq-answer a {
  color: #4A148C;
  text-decoration: none;
  font-weight: bold;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-live__promotions-section {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .page-live__promo-content {
    flex: 1;
    padding-right: 40px;
  }
  .page-live__promo-image {
    flex: 0 0 40%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-subtitle {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 100%;
  }
  .page-live__games-section,
  .page-live__features-section,
  .page-live__promotions-section,
  .page-live__getting-started-section,
  .page-live__faq-section {
    margin: 40px auto;
    padding: 20px 15px;
  }
  .page-live__games-grid,
  .page-live__features-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* CRITICAL: Ensure all images within .page-live are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  /* Specific rule to ensure content images are not shrunk below 200px by accident */
  .page-live__game-card img, 
  .page-live__feature-item img, 
  .page-live__promo-image img, 
  .page-live__hero-image img {
    min-width: 200px !important; /* Ensure min-width for mobile */
    min-height: 200px !important; /* Ensure min-height for mobile */
    width: 100% !important; /* Override any fixed width to be responsive */
    height: auto !important; /* Maintain aspect ratio */
  }
}