.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); /* Fixed header offset for desktop */
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0056B3; /* Primary color as fallback */
  color: #ffffff;
  padding: 0;
}

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  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--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0056B3; /* Primary color */
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  color: #004085;
}

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #0056B3;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #0056B3; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-live__section-title--cta {
  color: #FFD700;
}

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

.page-live__section-intro--cta {
  color: #f0f0f0;
}

.page-live__about-section,
.page-live__games-section,
.page-live__faq-section,
.page-live__responsible-gaming {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-live__about-section {
  background-color: #ffffff;
}

.page-live__cta-section {
  background-color: #0056B3; /* Primary color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-live__features-grid,
.page-live__games-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 {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-icon,
.page-live__game-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-live__feature-title,
.page-live__game-title {
  font-size: 1.6em;
  color: #0056B3; /* Primary color */
  margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-live__button--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

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

.page-live__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__faq-question {
  font-size: 1.3em;
  color: #0056B3; /* Primary color */
  margin-bottom: 10px;
}

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

.page-live__more-faq {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #666666;
}

.page-live__more-faq a {
  color: #0056B3;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsible Gaming Section */
.page-live__responsible-gaming {
  background-color: #f0f0f0;
  text-align: center;
  padding-bottom: 80px;
}

.page-live__responsible-gaming .page-live__section-title {
  padding-top: 0; /* Adjust padding if needed for this section */
}

@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__features-grid,
  .page-live__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Mobile specific adjustments */
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-live__hero-content {
    position: static;
    transform: none;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for mobile */
    border-radius: 0;
    width: 100%;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions,
  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__feature-card,
  .page-live__game-card {
    padding: 20px;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__faq-answer {
    font-size: 0.95em;
  }
}

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