.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop and mobile */
  background-color: #FFFFFF; /* Ensure consistency with body background */
}

.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: 30px;
  position: relative;
  padding-bottom: 10px;
  font-weight: bold;
}

.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__section-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-live__btn--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-live__btn--secondary {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-live__btn--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-live__btn--link {
  background-color: transparent;
  color: #FCBC45;
  border: none;
  text-decoration: underline;
  padding: 0;
}

.page-live__btn--link:hover {
  color: #E0A030;
  text-decoration: none;
}

.page-live__btn--play {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

.page-live__btn--play:hover {
  background-color: #222222;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
}

.page-live__hero-content {
  max-width: 900px;
  text-align: center;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #FFFFFF;
}

.page-live__hero-buttons .page-live__btn {
  margin: 0 10px;
}

/* About Section */
.page-live__about-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

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

.page-live__game-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-live__game-card h3 {
  font-size: 1.5em;
  color: #000000;
  padding: 20px 20px 10px;
  text-align: center;
}

.page-live__game-card p {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-live__game-card .page-live__btn--play {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Features Section */
.page-live__features-section {
  padding: 80px 0;
  background-color: #F0F0F0;
}

.page-live__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-live__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live__feature-item:hover {
  transform: translateY(-5px);
}

.page-live__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

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

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

/* 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: #FCBC45;
}

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

.page-live__cta-buttons .page-live__btn {
  margin: 0 10px;
}

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

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

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

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

.page-live__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 60vh;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }

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

  .page-live__hero-buttons .page-live__btn {
    margin: 10px 0;
    width: 100%;
    display: block;
  }

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

  .page-live__section-text {
    font-size: 0.95em;
  }

  .page-live__game-grid,
  .page-live__feature-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__feature-icon {
    width: 150px;
    height: 100px;
  }

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

  /* Ensure content area images maintain minimum size if not directly within hero/feature */
  .page-live__game-card img, .page-live__feature-item img {
    min-width: 200px;
    min- /* Adjusted minimum height for smaller aspect ratios */
    width: 100%; /* Override explicit width for responsiveness */
    height: auto; /* Override explicit height for responsiveness */
  }

  .page-live__cta-buttons .page-live__btn {
    width: 100%;
    margin: 10px 0;
  }
}

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

  .page-live__btn {
    padding: 10px 20px;
  }
}