.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 */
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text overlay */
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

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

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

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

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

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

.page-live__button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

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

.page-live__button--login:hover {
  background-color: #E0A73C;
  transform: translateY(-2px);
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

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

.page-live__section-intro,
.page-live__cta-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-live__games-section,
.page-live__features-section,
.page-live__promotions-section,
.page-live__cta-section,
.page-live__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live__games-section {
  background-color: #F8F8F8;
}

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

.page-live__game-card,
.page-live__feature-card,
.page-live__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-live__game-card:hover,
.page-live__feature-card:hover,
.page-live__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #EEEEEE;
}

.page-live__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  max-width: 300px; /* Max width for feature icons */
  height: auto;
  object-fit: contain;
  margin: 30px auto 20px;
  display: block;
}

.page-live__game-title,
.page-live__promo-title,
.page-live__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-live__game-description,
.page-live__promo-description,
.page-live__feature-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-live__game-card .page-live__button,
.page-live__promo-card .page-live__button {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 15px;
}

.page-live__game-card .page-live__button:hover,
.page-live__promo-card .page-live__button:hover {
  background-color: #E0A73C;
}

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
  font-size: 3em;
}

.page-live__cta-section .page-live__cta-description {
  color: #F0F0F0;
  font-size: 1.2em;
  margin-bottom: 50px;
}

.page-live__faq-section {
  padding-bottom: 80px;
}

.page-live__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__game-image, .page-live__promo-image {
    height: 200px;
  }
  .page-live__feature-icon {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro, .page-live__cta-description {
    font-size: 0.95em;
  }
  .page-live__game-grid, .page-live__feature-grid, .page-live__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__feature-icon {
    max-width: 200px;
  }
  .page-live__game-title, .page-live__promo-title, .page-live__feature-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  /* Ensure content images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}