.page-live {
  color: #333333; /* Default dark text for light body background */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 80px;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: none; /* Ensure no image filter is applied */
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

.page-live__hero-button--primary {
  background-color: #FFD700;
  color: #003366;
}

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

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

.page-live__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 60px;
  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: #FFD700;
  border-radius: 2px;
}

.page-live__features-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 51, 102, 0.15);
}

.page-live__feature-icon {
  width: 100%; /* Ensure images take full card width */
  height: auto;
  max-width: 400px; /* Constrain max width to actual display size */
  margin: 0 auto 25px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Enforce min height for content images */
  min-width: 200px; /* Enforce min width for content images */
  filter: none; /* Ensure no image filter is applied */
}

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

.page-live__feature-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
}

.page-live__games-showcase {
  padding: 80px 0;
}

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

.page-live__game-card {
  background-color: #003366;
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  min-height: 200px; /* Enforce min height for content images */
  min-width: 200px; /* Enforce min width for content images */
  filter: none; /* Ensure no image filter is applied */
}

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

.page-live__game-description {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
  color: #cccccc;
}

.page-live__game-button {
  display: block;
  background-color: #FFD700;
  color: #003366;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

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

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

.page-live__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #003366;
}

.page-live__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-live__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 220px;
  text-align: center;
}

.page-live__cta-button--primary {
  background-color: #003366;
  color: #FFD700;
}

.page-live__cta-button--primary:hover {
  background-color: #002244;
  transform: translateY(-3px);
}

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

.page-live__cta-button--secondary:hover {
  background-color: rgba(0, 51, 102, 0.1);
  transform: translateY(-3px);
}

.page-live__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.05);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
  cursor: pointer; /* For potential JS accordion */
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live__faq-question--active::after {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555555;
  display: none; /* Hidden by default for JS accordion */
}

.page-live__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-live__faq-answer a:hover {
  color: #FFD700;
}

.page-live__about-bingo-plus {
  padding: 80px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-live__about-text {
  font-size: 1.15em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-live__about-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-live__about-text a:hover {
  color: #e6c200;
}

/* Responsive adjustments */
@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: 2.5em;
  }

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
  }

  .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: 100%;
    max-width: 300px; /* Constrain buttons on small screens */
  }

  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .page-live__features-section,
  .page-live__games-showcase,
  .page-live__cta-section,
  .page-live__faq-section,
  .page-live__about-bingo-plus {
    padding: 60px 0;
  }

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

  .page-live__feature-card,
  .page-live__game-card,
  .page-live__faq-item {
    padding: 20px;
  }

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

  .page-live__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-live__cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  /* CRITICAL: Prevent horizontal scrolling on mobile */
  .page-live {
    overflow-x: hidden;
  }

  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min width for content images */
    min-height: 200px; /* Enforce min height for content images */
    object-fit: cover;
    filter: none; /* Ensure no image filter is applied */
  }
}

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

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

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

  .page-live__hero-button,
  .page-live__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}