.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); /* Ensure content is not hidden by fixed header */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
}

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

.page-live__hero-container {
  position: relative;
  max-width: 1200px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  border-radius: 8px;
}

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

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.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,
.page-live__button--play-now,
.page-live__button--join-now,
.page-live__button--download-app,
.page-live__button--register-final {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover,
.page-live__button--play-now:hover,
.page-live__button--join-now:hover,
.page-live__button--download-app:hover,
.page-live__button--register-final:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-live__button--view-details,
.page-live__button--learn-more,
.page-live__button--read-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-live__button--view-details:hover,
.page-live__button--learn-more:hover,
.page-live__button--read-more:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-live__features-section,
.page-live__games-section,
.page-live__promotions-section,
.page-live__mobile-section,
.page-live__security-section,
.page-live__cta-final-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.page-live__features-title,
.page-live__games-title,
.page-live__promotions-title,
.page-live__mobile-title,
.page-live__security-title,
.page-live__cta-final-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
}

.page-live__games-description,
.page-live__promotions-description,
.page-live__mobile-description,
.page-live__security-description,
.page-live__cta-final-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__feature-item,
.page-live__game-card,
.page-live__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-item:hover,
.page-live__game-card:hover,
.page-live__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-live__feature-icon,
.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide */
  max-height: 300px; /* Set max-height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__game-link {
  text-decoration: none;
  color: #000000;
}

.page-live__game-link:hover {
  text-decoration: underline;
}

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

.page-live__cta-bottom {
  margin-top: 50px;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.page-live__cta-text {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #000000;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.page-live__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.page-live__mobile-text-content {
  max-width: 600px;
}

.page-live__security-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-live__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1.1em;
  color: #555555;
}

.page-live__security-list-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-live__security-list-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

  .page-live__features-title,
  .page-live__games-title,
  .page-live__promotions-title,
  .page-live__mobile-title,
  .page-live__security-title,
  .page-live__cta-final-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .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%;
    margin: 0 auto;
  }

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

  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  /* Ensure all content area images are responsive and do not cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Use contain to ensure the whole image is visible */
  }
  .page-live {
    overflow-x: hidden;
  }
}

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

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

  .page-live__features-title,
  .page-live__games-title,
  .page-live__promotions-title,
  .page-live__mobile-title,
  .page-live__security-title,
  .page-live__cta-final-title {
    font-size: 1.8em;
  }

  .page-live__hero-section,
  .page-live__features-section,
  .page-live__games-section,
  .page-live__promotions-section,
  .page-live__mobile-section,
  .page-live__security-section,
  .page-live__cta-final-section {
    padding: 15px;
  }
}