.page-live {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--secondary-color); /* Matches body background #FFFFFF */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-live {
    overflow-x: hidden;
  }
}

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

.page-live__hero-section {
  background-color: #000000; /* Primary color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Accent color for title */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  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: #FCBC45; /* Login color as a vibrant accent */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

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

.page-live__button--login {
  background-color: transparent;
  color: #FFFFFF; /* White text for transparent button on dark background */
  border: 2px solid #FFFFFF;
}

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

.page-live__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  position: absolute;
  top: 0;
  left: 0;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-live__section-title {
  font-size: 2.8em;
  color: #000000; /* Dark text for titles on light background */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Accent color for underline */
  border-radius: 2px;
}

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

.page-live__about-section,
.page-live__games-section,
.page-live__guide-section,
.page-live__promo-section,
.page-live__responsible-gaming-section,
.page-live__cta-section {
  padding: 80px 0;
}

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

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

.page-live__feature-card,
.page-live__game-card,
.page-live__promo-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__feature-image,
.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__button--more,
.page-live__button--play,
.page-live__button--details,
.page-live__button--claim,
.page-live__button--view,
.page-live__button--join {
  background-color: #000000; /* Primary color for buttons */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 0.95em;
  margin-top: auto; /* Push button to bottom of flex container */
  border: none;
}

.page-live__button--more:hover,
.page-live__button--play:hover,
.page-live__button--details:hover,
.page-live__button--claim:hover,
.page-live__button--view:hover,
.page-live__button--join:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__guide-section {
  background-color: #F8F8F8;
}

.page-live__guide-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.page-live__guide-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-live__guide-title a {
  color: #000000; /* Dark text for link on light background */
  text-decoration: none;
  font-weight: bold;
}

.page-live__guide-title a:hover {
  color: #FCBC45;
}

.page-live__guide-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__button--read-more {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 0.95em;
  border: none;
}

.page-live__button--read-more:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__promo-section {
  background-color: #000000; /* Dark background for promos */
  color: #FFFFFF;
}

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

.page-live__promo-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__button--all-promos {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
}

.page-live__button--all-promos:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-live__responsible-gaming-section {
  background-color: #F8F8F8;
}

.page-live__responsible-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-live__responsible-content p {
  margin-bottom: 20px;
  color: #555555;
}

.page-live__button--responsible {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  border: none;
}

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

.page-live__cta-section {
  background-color: #FCBC45; /* Accent color for CTA */
  color: #000000; /* Dark text for light background */
  text-align: center;
  padding: 80px 20px;
}

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

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-live__button--join-now {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.3em;
  border: none;
}

.page-live__button--join-now:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.5em;
  }
  .page-live__cta-title {
    font-size: 2.5em;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__about-section,
  .page-live__games-section,
  .page-live__guide-section,
  .page-live__promo-section,
  .page-live__responsible-gaming-section,
  .page-live__cta-section {
    padding: 60px 0;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__promo-card {
    padding: 20px;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__promo-title {
    font-size: 1.5em;
  }
  .page-live__guide-title {
    font-size: 1.4em;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__button--join-now {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Ensure all content area images are responsive */
  .page-live__hero-image,
  .page-live__feature-image,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
  }
}

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