.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* For desktop header offset */
}

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

.page-live__hero-section {
  background-color: #000000; /* Dark background for hero section */
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 1920px; /* Match hero image width */
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.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;
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

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

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

.page-live__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
}

.page-live__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #555555;
}

.page-live__why-choose-us,
.page-live__popular-games,
.page-live__exclusive-bonuses,
.page-live__how-to-start,
.page-live__testimonials,
.page-live__faq,
.page-live__cta-bottom {
  padding: 80px 0;
}

.page-live__why-choose-us {
  background-color: #f8f8f8;
}

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

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

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

.page-live__feature-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__feature-description {
  font-size: 1em;
  color: #666666;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-live__game-title {
  font-size: 2em;
  margin: 20px 0 10px;
  color: #000000;
}

.page-live__game-description {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #666666;
}

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

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

.page-live__exclusive-bonuses {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__exclusive-bonuses .page-live__section-title,
.page-live__exclusive-bonuses .page-live__section-subtitle {
  color: #FFFFFF;
}

.page-live__bonuses-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-live__bonus-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 400px; /* Ensure minimum size */
}

.page-live__bonus-details {
  flex: 1;
}

.page-live__bonus-title {
  font-size: 2.2em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-live__bonus-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

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

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

.page-live__how-to-start {
  background-color: #f8f8f8;
}

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

.page-live__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-live__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

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

.page-live__button--register-small,
.page-live__button--deposit,
.page-live__button--play-small {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--register-small:hover,
.page-live__button--deposit:hover,
.page-live__button--play-small:hover {
  background-color: transparent;
  color: #000000;
}

.page-live__testimonials {
  background-color: #FFFFFF;
}

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

.page-live__testimonial-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  font-style: italic;
  color: #555555;
}

.page-live__testimonial-quote {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-live__testimonial-author {
  font-weight: bold;
  text-align: right;
  color: #000000;
}

.page-live__faq {
  background-color: #f0f0f0;
}

.page-live__faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.page-live__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-live__faq-answer p {
  margin-top: 0;
  color: #666666;
}

.page-live__cta-bottom {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-bottom .page-live__section-title,
.page-live__cta-bottom .page-live__section-subtitle {
  color: #FFFFFF;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__bonuses-content {
    flex-direction: column;
  }
  .page-live__bonus-image {
    max-width: 80%;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 0;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-subtitle {
    font-size: 1em;
  }
  .page-live__why-choose-us,
  .page-live__popular-games,
  .page-live__exclusive-bonuses,
  .page-live__how-to-start,
  .page-live__testimonials,
  .page-live__faq,
  .page-live__cta-bottom {
    padding: 50px 0;
  }
  .page-live__feature-icon {
    width: 200px;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__bonus-image {
    max-width: 95%;
  }
  .page-live__bonus-title {
    font-size: 1.8em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-live__faq-question::after {
    right: 20px;
  }
  .page-live__faq-answer {
    padding: 0 20px;
  }

  /* Critical: Ensure content images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    max-width: 100%; /* Ensure hero image is responsive */
    height: auto;
  }
  .page-live__hero-content {
    padding: 10px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__bonus-image {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.85em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-subtitle {
    font-size: 0.9em;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title {
    font-size: 1.5em;
  }
  .page-live__bonus-title {
    font-size: 1.5em;
  }
}