.page-live {
  color: #333333; /* Assuming a light body background from shared.css */
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  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: #FCBC45;
  border-radius: 2px;
}

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-live__button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
  margin-left: 15px;
}

.page-live__button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-live__button--play, .page-live__button--action, .page-live__button--join-now, .page-live__button--support {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-live__button--play:hover, .page-live__button--action:hover, .page-live__button--join-now:hover, .page-live__button--support:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

/* Hero Section */
.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* Text on hero image */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
}

.page-live__hero-content {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

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

/* Intro Section */
.page-live__intro-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

/* Games Showcase */
.page-live__games-showcase {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 15px;
}

/* Why Choose Us */
.page-live__why-choose-us {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__why-choose-us .page-live__section-title {
  color: #FFFFFF;
}

.page-live__why-choose-us .page-live__section-title::after {
  background-color: #FCBC45;
}

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

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

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

.page-live__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

/* How to Play */
.page-live__how-to-play {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__step-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-live__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* CTA Section */
.page-live__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__cta-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__cta-section .page-live__text-content {
  color: #e0e0e0;
}

.page-live__button--join-now {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-live__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

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

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

.page-live__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #555555;
}

.page-live__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  line-height: 1.7;
}

/* Support Section */
.page-live__support-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__support-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__support-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__support-section .page-live__text-content {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px);
  }

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

  .page-live__hero-description {
    font-size: 1em;
  }

  .page-live__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-live__button--login {
    margin-left: 0;
  }

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

  .page-live__text-content {
    font-size: 0.95em;
  }

  .page-live__game-grid, .page-live__features-grid, .page-live__steps-list {
    grid-template-columns: 1fr;
  }

  /* Ensure content area images are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__game-image {
    height: 200px;
  }

  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

/* Ensure no content area images are smaller than 200px */
.page-live img:not(.shared-logo-img):not(.shared-icon-img) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for hero image to allow full width on small screens without breaking min-width for other images */
.page-live__hero-image {
  min-width: unset;
  min-height: unset;
}