.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); /* Fixed header offset for desktop */
}

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

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

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the background image for text readability */
  z-index: 1;
}

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

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

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

.page-live__hero-actions {
  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--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

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

.page-live__button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

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

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-live__introduction-section,
.page-live__why-choose-section,
.page-live__popular-games-section,
.page-live__promotions-section,
.page-live__get-started-section,
.page-live__mobile-experience-section,
.page-live__security-section,
.page-live__faq-section,
.page-live__conclusion-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background for content sections */
}

.page-live__text-content {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

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

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

.page-live__feature-card:hover,
.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live__feature-icon,
.page-live__game-image,
.page-live__mobile-image {
  width: 100%; /* Ensure images take full width of card */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__promo-title,
.page-live__step-title,
.page-live__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__promo-description,
.page-live__step-description,
.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
}

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

.page-live__promo-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__step-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__mobile-experience-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__mobile-experience-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__mobile-experience-section .page-live__text-content {
  color: #e0e0e0;
}

.page-live__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__mobile-image {
  flex: 1 1 400px; /* Adjust base width for flexibility */
  max-width: 50%;
  height: auto;
  min-height: 250px; /* Ensure minimum size */
  object-fit: contain; /* Use contain for app screenshots */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-live__mobile-text {
  flex: 1 1 400px; /* Adjust base width for flexibility */
  max-width: 50%;
}

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

.page-live__mobile-text .page-live__button--primary:hover {
  background-color: #e0a53b;
  color: #000000;
}

.page-live__mobile-text .page-live__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__mobile-text .page-live__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}


.page-live__security-section {
  background-color: #f0f0f0;
}

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

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

  .page-live__hero-section {
    padding: 60px 0;
  }

  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live__text-content {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promo-list,
  .page-live__steps-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum size for mobile */
  }

  .page-live__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-live__mobile-image,
  .page-live__mobile-text {
    max-width: 100%;
    flex: none;
  }
  
  /* Ensure all images within .page-live are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even if max-width is 100% */
    min-height: 200px;
  }

  .page-live__security-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__security-actions .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Specific image width/height for display area, matching HTML attributes */
.page-live__hero-image {
  width: 1200px; /* Display width */
  height: 675px; /* Display height */
  max-width: 100%; /* Responsive override */
}

.page-live__feature-icon,
.page-live__game-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  max-width: 100%; /* Responsive override */
}

.page-live__mobile-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  max-width: 100%; /* Responsive override */
}