.page-live {
  color: #333333; /* Dark text for light 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__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-live__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-live__hero-content {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight with login button color */
}

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

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

.page-live__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, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

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

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

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

.page-live__button--login:hover {
  background-color: #e0a030;
}

.page-live__hero-image {
  width: 100%;
  max-width: 1200px;
}

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

.page-live__why-choose-section {
  background-color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-live__why-choose-title,
.page-live__popular-games-title,
.page-live__how-to-start-title,
.page-live__detail-pages-title,
.page-live__faq-title,
.page-live__final-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.page-live__why-choose-intro,
.page-live__popular-games-intro,
.page-live__how-to-start-intro,
.page-live__final-cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card,
.page-live__detail-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-live__feature-card img,
.page-live__game-card img,
.page-live__detail-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live__feature-heading,
.page-live__game-heading,
.page-live__step-heading,
.page-live__detail-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__game-heading a,
.page-live__detail-heading a {
  color: #000000;
  text-decoration: none;
}

.page-live__game-heading a:hover,
.page-live__detail-heading a:hover {
  color: #FCBC45;
}

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

.page-live__popular-games-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.page-live__button--play,
.page-live__button--action,
.page-live__button--details,
.page-live__button--final-action {
  background-color: #000000; /* Default button color */
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: auto; /* Push button to bottom of card */
}

.page-live__button--play:hover,
.page-live__button--action:hover,
.page-live__button--details:hover,
.page-live__button--final-action:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-live__how-to-start-section {
  background-color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-live__call-to-action-text {
  font-size: 1.5em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--large:hover {
  background-color: #e0a030;
  border-color: #e0a030;
}

.page-live__detail-pages-section {
  background-color: #000000; /* Dark background for detail section */
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-live__detail-pages-title {
  color: #FCBC45; /* Highlight title */
}

.page-live__detail-card {
  background-color: #1a1a1a; /* Darker card background */
  color: #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__detail-heading a {
  color: #FCBC45;
}

.page-live__detail-heading a:hover {
  color: #FFFFFF;
}

.page-live__button--details {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-live__button--details:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}

.page-live__faq-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #666666;
  display: none; /* Hidden by default */
}

.page-live__faq-answer p {
  margin: 0;
}

.page-live__final-cta-section {
  background-color: #000000; /* Dark background for final CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-live__final-cta-title {
  color: #FCBC45;
  font-size: 3em;
  margin-bottom: 25px;
}

@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__why-choose-title,
  .page-live__popular-games-title,
  .page-live__how-to-start-title,
  .page-live__detail-pages-title,
  .page-live__faq-title,
  .page-live__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__button {
    min-width: unset;
    width: 100%;
  }
  .page-live__hero-buttons {
    flex-direction: column;
  }
  .page-live__why-choose-title,
  .page-live__popular-games-title,
  .page-live__how-to-start-title,
  .page-live__detail-pages-title,
  .page-live__faq-title,
  .page-live__final-cta-title {
    font-size: 1.8em;
  }
  .page-live__content-wrapper {
    padding: 30px 15px;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-grid,
  .page-live__detail-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-heading,
  .page-live__game-heading,
  .page-live__step-heading,
  .page-live__detail-heading {
    font-size: 1.5em;
  }
  .page-live__call-to-action-text {
    font-size: 1.2em;
  }
  .page-live__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-live__final-cta-title {
    font-size: 2.2em;
  }
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__faq-answer {
    font-size: 0.95em;
  }
}