.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #ffffff; /* Light text for dark body background */
  background-color: var(--primary-color); /* Inherits from shared.css, which is #000000 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

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

.page-live__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-live__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

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

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

.page-live__why-choose-section,
.page-live__games-section,
.page-live__bonuses-section,
.page-live__get-started-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__why-choose-grid,
.page-live__game-cards-grid,
.page-live__bonus-cards-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__bonus-card,
.page-live__step-card {
  background-color: #1a1a1a; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-image,
.page-live__game-image,
.page-live__bonus-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Ensure images are not too small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__bonus-title,
.page-live__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-live__feature-text,
.page-live__game-text,
.page-live__bonus-text,
.page-live__step-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__button--play,
.page-live__button--claim,
.page-live__button--join {
  background-color: #FCBC45;
  color: #000000;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-live__button--play:hover,
.page-live__button--claim:hover,
.page-live__button--join:hover {
  background-color: #e0a53b;
}

.page-live__bonuses-cta {
  text-align: center;
  margin-top: 40px;
}

.page-live__button--view-all {
  background-color: #333333;
  color: #ffffff;
}

.page-live__button--view-all:hover {
  background-color: #555555;
}

.page-live__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-live__step-number {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live__get-started-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live__faq-accordion {
  margin-top: 40px;
}

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

.page-live__faq-question {
  font-size: 1.3em;
  padding: 20px;
  cursor: pointer;
  color: #FCBC45;
  position: relative;
  margin: 0;
}

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

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

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

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

.page-live__cta-section {
  text-align: center;
  background-color: #1a1a1a;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.page-live__cta-section .page-live__section-title {
  margin-bottom: 20px;
}

.page-live__cta-section .page-live__section-description {
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
  }

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

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

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

  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 250px;
  }

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

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

  .page-live__why-choose-section,
  .page-live__games-section,
  .page-live__bonuses-section,
  .page-live__get-started-section,
  .page-live__faq-section,
  .page-live__cta-section {
    padding: 50px 15px;
  }

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

  .page-live__feature-image,
  .page-live__game-image,
  .page-live__bonus-image {
    max-width: 100%;
    height: auto;
  }

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

  /* Mobile content image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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