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

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

.page-live__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-live__button--register, .page-live__button--claim, .page-live__button--download, .page-live__button--browser, .page-live__button--play, .page-live__button--register-final {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color */
  border: 2px solid #FCBC45;
}

.page-live__button--register:hover, .page-live__button--claim:hover, .page-live__button--download:hover, .page-live__button--browser:hover, .page-live__button--play:hover, .page-live__button--register-final:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

.page-live__button--explore, .page-live__button--view-all, .page-live__button--learn-more {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__button--explore:hover, .page-live__button--view-all:hover, .page-live__button--learn-more:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

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

.page-live__why-choose-section, .page-live__popular-games-section, .page-live__promotions-section, .page-live__mobile-section, .page-live__secure-gaming-section, .page-live__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live__features-grid, .page-live__games-grid, .page-live__security-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, .page-live__security-item {
  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;
}

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

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

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

.page-live__feature-text, .page-live__game-description, .page-live__promo-description, .page-live__mobile-description, .page-live__security-text {
  font-size: 1em;
  color: #666666;
}

.page-live__game-card .page-live__button {
  margin-top: 20px;
}

.page-live__promotions-section, .page-live__mobile-section {
  background-color: #f2f2f2;
}

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

.page-live__promo-image, .page-live__mobile-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-live__promo-text .page-live__button, .page-live__mobile-text .page-live__button {
  margin-top: 25px;
  margin-right: 15px;
}

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    padding: 12px 25px;
    width: 80%;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__promo-content, .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__promo-image, .page-live__mobile-image {
    max-width: 80%;
  }
  .page-live__promo-text, .page-live__mobile-text {
    max-width: 100%;
  }
  .page-live__promo-text .page-live__button, .page-live__mobile-text .page-live__button {
    margin-right: 10px;
    margin-left: 10px;
  }
  .page-live__hero-image img, .page-live__feature-icon, .page-live__game-image, .page-live__security-icon, .page-live__promo-image, .page-live__mobile-image {
    max-width: 100%;
    height: auto;
    max-height: none;
    width: auto;
  }
  /* Enforce minimum image size for content area */
  .page-live img {
    min-width: 200px; 
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__button {
    width: 90%;
  }
}