.page-live {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A2E;
  padding-bottom: 60px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-live__btn {
  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, transform 0.2s ease;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

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

.page-live__btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-live__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-live__about-section,
.page-live__games-section,
.page-live__experience-section,
.page-live__bonuses-section,
.page-live__getting-started-section,
.page-live__safety-section,
.page-live__support-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 60px 0;
}

.page-live__about-section,
.page-live__experience-section,
.page-live__getting-started-section,
.page-live__safety-section,
.page-live__support-section,
.page-live__cta-section {
  background-color: #1A1A2E;
}

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

.page-live__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-live__game-description {
  font-size: 0.95em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-live__btn--small:hover {
  background-color: #e5c100;
}

.page-live__columns {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-live__column-text {
  flex: 1;
}

.page-live__column-image {
  flex: 1;
  text-align: center;
}

.page-live__column-heading {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__column-paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-live__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-live__promo-card,
.page-live__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__promo-card:hover,
.page-live__step-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.page-live__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-live__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-live__faq-answer {
  font-size: 1em;
  color: #cccccc;
  display: none;
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

.page-live__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-live__btn--large:hover {
  background-color: #e5c100;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.5em;
  }
  .page-live__columns {
    flex-direction: column;
  }
  .page-live__column-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .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__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__promo-title,
  .page-live__step-title,
  .page-live__column-heading {
    font-size: 1.5em;
  }
  .page-live__game-image {
    height: 180px;
  }
  /* CRITICAL: Mobile images must be responsive and not cause overflow */
  .page-live__hero-image,
  .page-live__game-image,
  .page-live__responsive-image,
  .page-live__container img { /* Selects all images within content area */
    max-width: 100%;
    height: auto;
  }
  .page-live__container {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__step-card,
  .page-live__faq-item {
    padding: 20px;
  }
  .page-live__btn {
    width: 90%;
  }
  .page-live__game-image {
    height: 150px;
  }
}

/* Ensure all content area images are at least 200px wide for display */
.page-live img:not(.page-live__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for game images to ensure min-width, while still being responsive */
.page-live__game-image {
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
    width: 100%; /* Allows it to scale up to 100% of parent */
    height: auto; /* Maintain aspect ratio */
}

/* Override for images within column text to ensure min-width */
.page-live__column-image img {
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
    width: 100%; /* Allows it to scale up to 100% of parent */
    height: auto; /* Maintain aspect ratio */
}

/* Ensure no filter is used on images */
.page-live img {
  filter: none; /* Explicitly remove any filter */
}

/* Specific filter for hero image for readability, which is allowed as it's not changing the *original* image color but applying a stylistic overlay for text */
.page-live__hero-image {
    filter: brightness(0.6); /* Darken image slightly for text readability */
}