.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for content area if needed, but body is already white */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
}

.page-live__hero-content {
  position: relative;
  z-index: 3;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-live__hero-buttons {
  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, color 0.3s ease;
  font-size: 1.1em;
}

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

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

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

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

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

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

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

.page-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

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

.page-live__game-card, .page-live__feature-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-live__game-image, .page-live__feature-icon, .page-live__promo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__game-image {
  min-height: 200px; /* Ensure minimum size */
}

.page-live__feature-icon {
  min-height: 200px; /* Ensure minimum size */
}

.page-live__game-card .page-live__game-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 15px 10px;
}

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

.page-live__game-card .page-live__game-description, .page-live__feature-card .page-live__feature-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button--play {
  background-color: #000000; /* Dark button */
  color: #FFFFFF; /* White text */
  border: 2px solid #000000;
  margin: 0 20px 20px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-live__game-card .page-live__button--play:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-live__button--sports, .page-live__button--view-promo, .page-live__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-live__button--sports:hover, .page-live__button--view-promo:hover, .page-live__button--learn-more:hover {
  background-color: #000000;
  border-color: #000000;
  color: #FCBC45;
}

.page-live__promo-image {
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-height: 200px; /* Ensure minimum size */
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-live__steps-list li {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-live__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-live__steps-list p {
  color: #555555;
  margin-bottom: 0;
}

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

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

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

.page-live__button--register-bottom:hover {
  background-color: #000000;
  border-color: #000000;
  color: #FCBC45;
}

.page-live__button--login-bottom {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

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

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

  .page-live__game-grid, .page-live__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-image, .page-live__feature-icon, .page-live__promo-image {
    max-width: 100%;
    height: auto; /* Important for mobile responsiveness */
  }

  .page-live__game-card .page-live__game-description, .page-live__feature-card .page-live__feature-description {
    padding: 0 15px 15px;
  }

  .page-live__game-card .page-live__button--play {
    margin: 0 15px 15px;
  }

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

  .page-live__button--register-bottom, .page-live__button--login-bottom {
    width: 100%;
    max-width: 300px;
  }

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

  .page-live__content-area {
    padding: 40px 15px;
  }
}