.page-live {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-live__hero-section {
  background-color: #8B0000; /* Auxiliary color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #8B0000; /* Red for text */
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary button text */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #8B0000;
  border: none;
}

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

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Red for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__getting-started-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
}

.page-live__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

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

.page-live__games-section {
  background-color: #f0f0f0;
}

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

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

.page-live__game-card:hover {
  transform: translateY(-10px);
}

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

.page-live__game-title {
  font-size: 1.8em;
  color: #8B0000; /* Red for game titles */
  padding: 20px 20px 10px 20px;
}

.page-live__game-description {
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button--small {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-live__promotions-section {
  background-color: #f8f8f8;
}

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

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

.page-live__promo-card:hover {
  transform: translateY(-10px);
}

.page-live__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for promo titles */
  padding: 20px 20px 10px 20px;
}

.page-live__promo-description {
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-live__promo-card .page-live__button--small {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-live__getting-started-section {
  background-color: #f0f0f0;
}

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

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-live__step-title {
  font-size: 1.6em;
  color: #8B0000; /* Red for step titles */
  margin-bottom: 15px;
}

.page-live__step-description {
  color: #666666;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__faq-section {
  background-color: #ffffff;
}

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

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

.page-live__accordion-title {
  background-color: #FFD700; /* Gold for accordion title background */
  color: #8B0000; /* Red for accordion title text */
  padding: 18px 25px;
  font-size: 1.2em;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-live__accordion-title:hover {
  background-color: #e6c200;
}

.page-live__accordion-content {
  padding: 20px 25px;
  background-color: #f9f9f9;
  color: #555555;
  font-size: 0.95em;
  border-top: 1px solid #eee;
  display: none; /* Hidden by default */
}

.page-live__accordion-content p {
  margin-bottom: 15px;
}

.page-live__accordion-content .page-live__button--small {
  margin-top: 10px;
}

.page-live__cta-section {
  background-color: #8B0000; /* Auxiliary color for CTA background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-live__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 20px;
  }

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

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

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

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

  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

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

  .page-live__features-grid, .page-live__games-grid, .page-live__promo-grid, .page-live__steps-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-live__feature-icon, .page-live__game-image, .page-live__promo-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

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

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

  .page-live__accordion-title {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-live__accordion-content {
    padding: 15px 20px;
  }
}

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

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

  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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