.page-live {
  color: #333333; /* Dark text for default white body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-live__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-live__hero-container {
  position: relative;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0; /* Slightly off-white for body text */
}

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

.page-live__button {
  display: inline-block;
  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;
  cursor: pointer;
  text-align: center;
  min-width: 200px; /* Ensure buttons are not too small */
}

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

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

.page-live__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  border: 2px solid #FCBC45;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Accent color */
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-live__info-section, .page-live__games-section, .page-live__features-section, .page-live__cta-section, .page-live__guide-section, .page-live__faq-section, .page-live__final-cta {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content sections */
}

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

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

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

.page-live__feature-icon {
  width: 200px; /* Min size for content images */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

.page-live__guide-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-live__guide-step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__guide-step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__button--inline {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
  min-width: unset;
}

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

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

.page-live__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  margin: 0;
  border-bottom: 1px solid #EEEEEE;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

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

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

.page-live__final-cta {
  padding: 80px 20px;
  text-align: center;
  background-color: #F8F8F8;
}

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

@media (max-width: 768px) {
  .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%;
    min-width: unset;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__game-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-live__faq-question::after {
    right: 15px;
  }
  /* Ensure content images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    filter: brightness(0.5); /* Darken more for mobile readability */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__hero-content {
    padding: 15px;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__game-title {
    font-size: 1.5em;
  }
  .page-live__feature-title {
    font-size: 1.3em;
  }
}