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

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

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(10, 36, 106, 0.7); /* Dark blue overlay for text */
  border-radius: 10px;
  margin: 20px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F3C500;
  line-height: 1.2;
}

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

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

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

.page-live__button--primary {
  background-color: #F3C500;
  color: #0A246A;
  border: 2px solid #F3C500;
}

.page-live__button--primary:hover {
  background-color: #e0b400;
  color: #0A246A;
}

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

.page-live__button--secondary:hover {
  background-color: #F3C500;
  color: #0A246A;
}

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-live__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

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

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

.page-live__about-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.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: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

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

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

.page-live__games-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.page-live__game-cards-grid {
  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.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-bottom: 10px;
  padding: 0 20px;
}

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

.page-live__game-card .page-live__button {
  margin-bottom: 20px;
}

.page-live__how-to-play-section {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.page-live__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-live__step-title {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-live__step-text {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 25px;
}

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

.page-live__cta-content {
  max-width: 900px;
}

.page-live__cta-title {
  font-size: 2.8em;
  color: #F3C500;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-live__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #0A246A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #F3C500;
}

.page-live__faq-question.active::after {
  content: '-';
}

.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

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

.page-live__faq-section .page-live__button {
  margin-top: 30px;
}

.page-live__testimonials-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

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

.page-live__testimonial-author {
  font-weight: bold;
  color: #0A246A;
  font-size: 1em;
}

/* Responsive Design */
@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: 2.2em;
  }
  .page-live__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__game-cards-grid, .page-live__steps-grid, .page-live__testimonials-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon, .page-live__game-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    width: 90%;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
}