.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  background-color: #000000;
  padding-top: var(--header-offset, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

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

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.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, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

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

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

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-live__features-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

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

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

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

.page-live__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

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

.page-live__games-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-live__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__game-card {
  background-color: #000000;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

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

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 25px;
}

.page-live__game-title {
  font-size: 1.7em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__game-title a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FFFFFF;
}

.page-live__game-description {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--play:hover {
  background-color: #e0a53a;
}

.page-live__promotions-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-live__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__promo-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 25px;
}

.page-live__promo-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__promo-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__promo-title a:hover {
  color: #FCBC45;
}

.page-live__promo-description {
  color: #666666;
  font-size: 0.95em;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-live__button--view-promo {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--view-promo:hover {
  background-color: #e0a53a;
}

.page-live__faq-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

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

.page-live__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-live__faq-item:hover {
  background-color: #e0e0e0;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  font-weight: bold;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

.page-live__cta-section {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

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

.page-live__cta-section .page-live__section-intro {
  color: #f0f0f0;
}

.page-live__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

.page-live__button--download:hover {
  background-color: #e0a53a;
}

.page-live__more-info-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
}

.page-live__content-text {
  font-size: 1em;
  color: #444444;
  line-height: 1.8;
  text-align: justify;
}

.page-live__content-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__content-text a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px);
    height: auto; /* Allow height to adjust for content */
  }

  .page-live__hero-content {
    padding: 30px 15px;
  }

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

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

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

  .page-live__button {
    width: 100%;
    max-width: 300px;
  }

  .page-live__hero-image-container {
    position: relative;
    height: 300px; /* Fixed height for image on mobile */
    filter: brightness(0.6); /* Less dark on mobile to show more detail */
  }

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

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promotions-grid {
    grid-template-columns: 1fr;
  }

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

  .page-live__feature-image,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto;
  }

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

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

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

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

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

  .page-live__game-title {
    font-size: 1.4em;
  }

  .page-live__promo-title {
    font-size: 1.3em;
  }

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