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

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-live__hero-content {
  position: relative; /* Ensure content overlays the image if needed, or is clearly separate */
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.page-live__hero-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-live__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-live__about-section,
.page-live__games-section,
.page-live__benefits-section,
.page-live__getting-started-section,
.page-live__cta-section,
.page-live__faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-live__about-section {
  background-color: #ffffff;
}

.page-live__games-section,
.page-live__getting-started-section {
  background-color: #f0f4f7; /* Light blue-grey background */
}

.page-live__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-live__faq-section {
  background-color: #ffffff;
}

.page-live__about-container,
.page-live__games-container,
.page-live__benefits-container,
.page-live__getting-started-container,
.page-live__cta-container,
.page-live__faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #0A2463;
  text-align: center;
  margin-bottom: 25px;
}

.page-live__section-intro {
  font-size: 1.15em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

.page-live__feature-item,
.page-live__game-card,
.page-live__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-live__feature-item:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-live__feature-image,
.page-live__game-image {
  width: 100%; /* Ensure images are responsive within their cards */
  max-width: 400px; /* Max width for feature/game images */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-height: 200px; /* Enforce minimum size */
  min-width: 200px; /* Enforce minimum size */
}

.page-live__feature-title,
.page-live__game-title,
.page-live__step-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__game-button,
.page-live__step-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-live__game-button:hover,
.page-live__step-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-live__benefit-item {
  background-color: #ffffff;
  border-left: 5px solid #0A2463;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-live__benefit-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-live__benefit-heading {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

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

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

.page-live__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-live__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

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

.page-live__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

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

.page-live__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-live__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-live__faq-answer.open {
  max-height: 200px; /* Adjust based on expected content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.4em;
  }
  .page-live__cta-title {
    font-size: 2.6em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__hero-button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }

  .page-live__about-section,
  .page-live__games-section,
  .page-live__benefits-section,
  .page-live__getting-started-section,
  .page-live__cta-section,
  .page-live__faq-section {
    padding: 60px 15px;
  }

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

  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__steps-grid,
  .page-live__benefit-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-live__feature-item,
  .page-live__game-card,
  .page-live__step-card {
    padding: 25px;
  }

  .page-live__feature-image,
  .page-live__game-image {
    max-width: 100%; /* Ensure images are responsive within their cards on mobile */
    height: auto;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title {
    font-size: 1.5em;
  }

  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__cta-description {
    font-size: 1.1em;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }

  .page-live__faq-question {
    font-size: 1.2em;
  }

  /* Ensure all content images in .page-live do not cause horizontal scroll */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@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.9em;
  }
}