.page-live {
  color: #333333; /* Dark text for light body background */
}

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #FFFFFF;
}

.page-live__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-live__hero-title {
  font-size: 3.5rem;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-live__hero-description {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for the button */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__hero-button:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-live__hero-image {
  width: 100%;
  max-width: 1600px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-live__section-padding {
  padding: 80px 20px;
}

.page-live__section-title {
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.page-live__section-description {
  font-size: 1.1rem;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-live__section-description--light {
  color: #f0f0f0;
}

.page-live__content-grid,
.page-live__game-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__content-card,
.page-live__game-card,
.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__content-card:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-live__card-image,
.page-live__game-image,
.page-live__step-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-live__card-title,
.page-live__game-title,
.page-live__step-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__card-text,
.page-live__game-text,
.page-live__step-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-live__game-button,
.page-live__step-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__game-button:hover,
.page-live__step-button:hover {
  background-color: #e6a73c;
}

.page-live__step-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__step-button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

.page-live__bg-dark {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__provider-list,
.page-live__bonus-list,
.page-live__security-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-live__provider-item,
.page-live__bonus-item,
.page-live__security-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.5;
  text-align: left;
}

.page-live__bonuses-button,
.page-live__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__bonuses-button:hover,
.page-live__cta-button:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-live__security-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
}

.page-live__security-link:hover {
  color: #e6a73c;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 50px auto 0 auto;
}

.page-live__mobile-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.page-live__mobile-subtitle {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-live__mobile-paragraph {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-live__mobile-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__mobile-button:hover {
  background-color: #e6a73c;
  transform: translateY(-3px);
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 50px auto;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__faq-question {
  font-size: 1.3rem;
  color: #FFFFFF;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  text-align: left;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  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: 1rem;
  color: #f0f0f0;
  padding: 0 25px 20px 25px;
  line-height: 1.6;
  display: none; /* Hidden by default */
  text-align: left;
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3rem;
  }
  .page-live__section-title {
    font-size: 2.5rem;
  }
  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-image,
  .page-live__mobile-text {
    max-width: 100%;
  }
  .page-live__mobile-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-bottom: 30px;
  }
  .page-live__hero-title {
    font-size: 2.2rem;
  }
  .page-live__hero-description {
    font-size: 1rem;
  }
  .page-live__hero-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  .page-live__section-padding {
    padding: 60px 15px;
  }
  .page-live__section-title {
    font-size: 2rem;
  }
  .page-live__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .page-live__content-grid,
  .page-live__game-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__card-image,
  .page-live__game-image,
  .page-live__step-image {
    height: 200px;
  }
  .page-live__card-title,
  .page-live__game-title,
  .page-live__step-title {
    font-size: 1.5rem;
  }
  .page-live__card-text,
  .page-live__game-text,
  .page-live__step-text {
    font-size: 0.9rem;
  }
  .page-live__game-button,
  .page-live__step-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .page-live__provider-list,
  .page-live__bonus-list,
  .page-live__security-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .page-live__provider-item,
  .page-live__bonus-item,
  .page-live__security-item {
    font-size: 1rem;
    padding: 15px;
  }
  .page-live__bonuses-button,
  .page-live__cta-button {
    padding: 15px 35px;
    font-size: 1.2rem;
    margin-top: 40px;
  }
  .page-live__mobile-subtitle {
    font-size: 1.8rem;
  }
  .page-live__mobile-paragraph {
    font-size: 1rem;
  }
  .page-live__mobile-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  .page-live__faq-question {
    font-size: 1.1rem;
  }
  .page-live__faq-answer {
    font-size: 0.9rem;
  }
  .page-live__hero-image,
  .page-live__card-image,
  .page-live__game-image,
  .page-live__step-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto;
    max-height: none; /* Ensure no fixed height prevents scaling */
  }
  .page-live__mobile-content img,
  .page-live__content-grid img,
  .page-live__game-grid img,
  .page-live__steps-grid img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area images are not smaller than 200px where applicable */
  .page-live img {
    min-width: 200px;
    min-height: 200px;
  }
}