.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 space for fixed header */
}

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

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

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding-bottom: 60px; /* Adjust as needed for content below image */
}

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

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 10;
  max-width: 90%;
}

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

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, 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: #f0f0f0;
  color: #000000;
}

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

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

/* About Section */
.page-live__about-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__feature-item img {
  width: 100%;
  max-width: 400px; /* Ensuring minimum size for images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Game Showcase Section */
.page-live__game-showcase-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__game-card img {
  width: 100%;
  max-width: 600px; /* Ensuring minimum size for images */
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
  font-weight: bold;
}

.page-live__game-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: none;
}

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

/* Why Choose Section */
.page-live__why-choose-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__advantage-item img {
  width: 100%;
  max-width: 200px; /* Ensuring minimum size for images */
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #FCBC45;
}

.page-live__advantage-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__advantage-text {
  font-size: 0.95em;
  color: #555555;
}

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

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

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

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

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

.page-live__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

/* Related Links Section */
.page-live__related-links-section {
  padding: 60px 0 80px;
  background-color: #FFFFFF;
}

.page-live__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-live__related-link {
  display: block;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-live__related-link:hover {
  background-color: #e0a53a;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-bottom: 40px;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }
  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__advantages-list, .page-live__links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__game-card img, .page-live__feature-item img, .page-live__advantage-item img {
    max-width: 100%;
    width: 100%; /* Ensure images fill their container */
    height: auto;
  }
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__button--primary {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure all content area images are responsive and do not cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@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.5em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
}