.page-live {
  color: #FFFFFF; /* Default text color for dark scheme */
  background-color: #000000; /* Main background color */
  padding-top: var(--header-offset, 120px);
}

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-live__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
}

.page-live__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

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

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

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

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

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

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

.page-live__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #FFFFFF;
}

.page-live__games-section,
.page-live__why-choose-us,
.page-live__promotions-section,
.page-live__guide-section,
.page-live__testimonials-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #000000;
}

.page-live__game-grid,
.page-live__features-grid,
.page-live__promo-grid,
.page-live__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__game-card,
.page-live__feature-item,
.page-live__promo-card,
.page-live__step-item {
  background-color: #1a1a1a; /* Darker background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
}

.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-live__game-title,
.page-live__feature-title,
.page-live__promo-title,
.page-live__step-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-live__game-text,
.page-live__feature-text,
.page-live__promo-text,
.page-live__step-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

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

.page-live__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-live__more-games,
.page-live__more-promos {
  text-align: center;
  margin-top: 60px;
}

.page-live__testimonials-section {
  background-color: #111111;
  padding: 80px 20px;
}

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

.page-live__testimonial-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  text-align: center;
}

.page-live__testimonial-text {
  font-size: 1.1em;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.page-live__faq-accordion {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px 30px;
  color: #FFFFFF;
}

.page-live__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  color: #FCBC45;
  cursor: pointer;
  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 {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 15px;
  display: none;
  color: #FFFFFF;
}

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

.page-live__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

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

.page-live__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #000000;
  color: #666666;
  font-size: 0.9em;
  border-top: 1px solid #1a1a1a;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    flex-direction: column;
    padding: 60px 15px 30px;
  }

  .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 {
    width: 100%;
    padding: 12px 20px;
  }

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

  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-live__games-section,
  .page-live__why-choose-us,
  .page-live__promotions-section,
  .page-live__guide-section,
  .page-live__testimonials-section,
  .page-live__faq-section,
  .page-live__cta-section {
    padding: 60px 15px;
  }

  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__promo-grid,
  .page-live__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-live__game-title,
  .page-live__feature-title,
  .page-live__promo-title,
  .page-live__step-title {
    font-size: 1.5em;
  }

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

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

  /* Enforce image responsiveness and minimum size */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-
  }
  .page-live__feature-icon, .page-live__step-icon {
    min-width: 200px;
    min-height: 150px;
  }
}

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

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