.page-live {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Body background is white */
}

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

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

.page-live__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-live__button--register {
  background-color: #FFFFFF; /* White background for register */
  color: #000000; /* Black text for contrast */
  border: 2px solid #FFFFFF;
}

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

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

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

.page-live__button--play, .page-live__button--claim, .page-live__button--view, .page-live__button--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--play:hover, .page-live__button--claim:hover, .page-live__button--view:hover, .page-live__button--join:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-live__section-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-live__section-paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-live__section-paragraph a:hover {
  text-decoration: underline;
}

.page-live__about-section, .page-live__features-section, .page-live__promotions-section, .page-live__trust-section, .page-live__faq-section {
  padding: 60px 0;
}

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

.page-live__about-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__game-categories-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__game-categories-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__game-categories-section .page-live__section-paragraph {
  color: #F0F0F0;
}

.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: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__game-card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__features-section {
  background-color: #FFFFFF;
}

.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: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

.page-live__promo-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__trust-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__trust-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__trust-section .page-live__section-paragraph {
  color: #F0F0F0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-live__faq-question {
  font-size: 1.4em;
  color: #000000;
  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.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }

  .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%;
    max-width: 280px;
    margin: 0 auto;
  }

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

  .page-live__game-grid, .page-live__features-grid, .page-live__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-live__game-card-image, .page-live__promo-image, .page-live__feature-image, .page-live__about-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure content area images do not cause horizontal scroll */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__content-wrapper {
    padding: 20px 15px;
  }
}

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

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

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

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