.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  overflow: hidden;
  color: #FFFFFF; /* Text color for dark hero image */
  background-color: #000000; /* Fallback dark background */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  padding: 40px;
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
}

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

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

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

.page-live__hero-button--register {
  background-color: #FCBC45;
  color: #000000; /* Register text color: #FFFFFF on #FCBC45, but here #000000 for contrast */
}

.page-live__hero-button--register:hover {
  background-color: #e0a53b;
}

.page-live__hero-button--login {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-live__hero-button--login:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__intro-section,
.page-live__games-overview,
.page-live__responsible-gaming,
.page-live__cta-section,
.page-live__faq-section,
.page-live__articles-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-live__intro-heading,
.page-live__games-heading,
.page-live__responsible-heading,
.page-live__cta-heading,
.page-live__faq-heading,
.page-live__articles-heading {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__intro-text,
.page-live__games-description,
.page-live__responsible-text,
.page-live__cta-description,
.page-live__articles-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

.page-live__intro-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-live__intro-feature-item {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-live__intro-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-live__intro-button:hover {
  background-color: #333333;
}

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

.page-live__game-card,
.page-live__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__game-card-title,
.page-live__article-card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-live__game-card-title a,
.page-live__article-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-live__game-card-title a:hover,
.page-live__article-card-title a:hover {
  color: #FCBC45;
}

.page-live__game-card-text,
.page-live__article-card-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__game-card-button,
.page-live__article-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-live__game-card-button:hover,
.page-live__article-card-button:hover {
  background-color: #e0a53b;
}

.page-live__responsible-gaming {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-live__responsible-heading {
  color: #FCBC45;
}

.page-live__responsible-text {
  color: #f0f0f0;
}

.page-live__responsible-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-live__responsible-button:hover {
  background-color: #e0a53b;
}

.page-live__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.page-live__cta-container {
  max-width: 800px;
  text-align: center;
  margin-bottom: 40px;
}

.page-live__cta-heading {
  color: #000000;
  font-size: 2.8em;
}

.page-live__cta-description {
  color: #555555;
}

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

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

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

.page-live__cta-button--register:hover {
  background-color: #333333;
}

.page-live__cta-button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__cta-button--download:hover {
  background-color: #e0a53b;
}

.page-live__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-live__faq-question--active {
  color: #FCBC45;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
  display: none; /* Hidden by default */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__intro-heading,
  .page-live__games-heading,
  .page-live__responsible-heading,
  .page-live__cta-heading,
  .page-live__faq-heading,
  .page-live__articles-heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding: 60px 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__hero-button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__intro-section,
  .page-live__games-overview,
  .page-live__responsible-gaming,
  .page-live__cta-section,
  .page-live__faq-section,
  .page-live__articles-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-live__intro-heading,
  .page-live__games-heading,
  .page-live__responsible-heading,
  .page-live__cta-heading,
  .page-live__faq-heading,
  .page-live__articles-heading {
    font-size: 1.8em;
  }
  .page-live__game-cards,
  .page-live__article-cards {
    grid-template-columns: 1fr;
  }
  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__cta-button {
    width: 100%;
    max-width: 300px;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-card-image {
    height: auto; /* Allow height to adjust for responsiveness */
  }
  .page-live__cta-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-container {
    padding: 25px;
  }
  .page-live__intro-heading,
  .page-live__games-heading,
  .page-live__responsible-heading,
  .page-live__cta-heading,
  .page-live__faq-heading,
  .page-live__articles-heading {
    font-size: 1.5em;
  }
  .page-live__hero-button,
  .page-live__intro-button,
  .page-live__game-card-button,
  .page-live__responsible-button,
  .page-live__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}

/* Ensure content area images are not too small */
.page-live__game-card-image, 
.page-live__cta-image {
  min-width: 200px;
  min-height: 200px;
}