.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); /* Ensure content is not hidden by fixed header */
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 0; /* Adjusted padding to prevent double offset with main padding-top */
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient background for text contrast */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

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

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

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

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

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

.page-live__button--play:hover, .page-live__button--download:hover, .page-live__button--secondary:hover {
  background-color: #E6A83C;
  transform: translateY(-2px);
}

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

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

.page-live__games-showcase {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-live__game-cards {
  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 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-live__card-text {
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__features-section {
  padding: 80px 0;
}

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

.page-live__feature-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-live__feature-text {
  color: #666666;
  font-size: 0.95em;
}

.page-live__feature-text a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-live__cta-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-live__cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-live__cta-text-wrapper {
  flex: 1;
  text-align: left;
}

.page-live__cta-text-wrapper .page-live__section-title {
  color: #FFFFFF;
  text-align: left;
}

.page-live__cta-text-wrapper .page-live__section-description {
  color: #F0F0F0;
  text-align: left;
  margin-bottom: 40px;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
}

.page-live__cta-image {
  flex-shrink: 0;
  width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__testimonials-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-live__testimonial-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-live__testimonial-text {
  font-style: italic;
  color: #555555;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-live__testimonial-author {
  font-weight: bold;
  color: #000000;
}

.page-live__faq-section {
  padding: 80px 0;
}

.page-live__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-live__faq-answer {
  padding: 0 20px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

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

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-live__more-info-section {
  padding: 80px 0;
  background-color: #F0F0F0;
}

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

.page-live__info-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-live__info-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-live__info-text {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__cta-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__cta-text-wrapper {
    text-align: center;
  }
  .page-live__cta-text-wrapper .page-live__section-title,
  .page-live__cta-text-wrapper .page-live__section-description {
    text-align: center;
  }
  .page-live__cta-buttons {
    justify-content: center;
  }
  .page-live__cta-image {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px);
  }
  .page-live__hero-section {
    padding: 60px 0;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 2em;
    padding-top: 30px;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-live__game-image, .page-live__cta-image, .page-live__testimonial-card img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
  .page-live__game-card, .page-live__feature-item, .page-live__testimonial-card, .page-live__info-card {
    margin-left: 10px;
    margin-right: 10px;
  }
  /* Ensure all images within .page-live do not overflow */
  .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;
  }
}