.page-live {
  color: #333333; /* Dark text for light background */
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px; /* Adjust as needed */
  padding-top: var(--header-offset, 120px);
}

.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;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
}

.page-live__hero-content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  color: #ffffff;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

.page-live__features-section,
.page-live__games-showcase,
.page-live__faq-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__features-container,
.page-live__games-container,
.page-live__faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-live__feature-card,
.page-live__game-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  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 {
  transform: translateY(-10px);
}

.page-live__feature-icon,
.page-live__game-image {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Max width for feature icons */
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block;
}

.page-live__game-image {
  max-width: 380px; /* Specific max width for game images */
}

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

.page-live__feature-text,
.page-live__game-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
}

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

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

.page-live__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-live__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-live__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-live__button--join {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-live__button--join:hover {
  background-color: #e0a73b;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has offset */
  }
  .page-live__hero-content {
    padding: 30px;
  }
  .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: 80%;
    margin: 0 auto;
  }
  .page-live__section-title,
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__features-section,
  .page-live__games-showcase,
  .page-live__faq-section {
    padding: 60px 15px;
  }
  .page-live__feature-card,
  .page-live__game-card {
    padding: 20px;
  }
  .page-live__feature-icon,
  .page-live__game-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and not smaller than 200px */
  }
  .page-live__cta-section {
    padding: 60px 15px;
  }
  .page-live__cta-description {
    font-size: 1.1em;
  }
  .page-live__button--join {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Critical: Ensure all images under .page-live are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__section-title,
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__faq-question {
    font-size: 1.3em;
  }
  .page-live__button {
    width: 95%;
  }
}