.page-live {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  gap: 30px;
}

.page-live__hero-content {
  max-width: 800px;
}

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

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

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

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

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

.page-live__button--register:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-live__features-section,
.page-live__why-choose-section,
.page-live__responsible-gambling-section,
.page-live__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-live__feature-card,
.page-live__advantage-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live__feature-card:hover,
.page-live__advantage-item:hover {
  transform: translateY(-5px);
}

.page-live__feature-image,
.page-live__advantage-icon {
  width: 100%;
  max-width: 400px; /* Constrain feature images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live__advantage-icon {
  max-width: 200px; /* Smaller for advantage icons */
  height: auto;
}

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

.page-live__feature-description,
.page-live__advantage-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

.page-live__responsible-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live__responsible-text {
  text-align: left;
  max-width: 700px;
}

.page-live__responsible-subtitle {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-live__responsible-text ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-live__responsible-text li {
  margin-bottom: 10px;
  color: #555555;
}

.page-live__responsible-text strong {
  color: #000000;
}

.page-live__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
}

.page-live__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-live__cta-section .page-live__section-title,
.page-live__cta-section .page-live__section-intro {
  color: #FFFFFF;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-live__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-live__button--register-large:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

.page-live__button--download-app {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-live__button--download-app:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }

  .page-live__section-title {
    font-size: 2em;
  }
}

@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-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
    max-width: 300px;
  }

  .page-live__features-section,
  .page-live__why-choose-section,
  .page-live__responsible-gambling-section,
  .page-live__cta-section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
  }

  .page-live__section-intro {
    font-size: 0.95em;
  }

  .page-live__feature-grid,
  .page-live__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__feature-image, .page-live__advantage-icon, .page-live__hero-image, .page-live__responsible-image {
    max-width: 100%;
    height: auto;
  }

  .page-live__responsible-content {
    flex-direction: column;
  }

  .page-live__responsible-subtitle {
    font-size: 1.5em;
    text-align: center;
  }

  .page-live__responsible-text ul {
    margin-left: 15px;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button--register-large,
  .page-live__button--download-app {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure all images in content area are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  /* Override any potentially conflicting smaller image sizes if they exist */
  .page-live__feature-image,
  .page-live__advantage-icon,
  .page-live__hero-image,
  .page-live__responsible-image {
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
}

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

  .page-live__section-title {
    font-size: 1.5em;
  }

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