.page-live {
  color: #333333; /* Dark text for light body background */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF; /* White text on hero image */
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

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

.page-live__button--register {
  background-color: #FFFFFF; /* Register button background */
  color: #000000; /* Dark text for contrast */
}

.page-live__button--register:hover {
  background-color: #F0F0F0;
  color: #333333;
}

.page-live__button--login {
  background-color: #FCBC45; /* Login button background */
  color: #000000; /* Dark text for contrast */
}

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

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

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

.page-live__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__introduction-section, .page-live__advantages-section, .page-live__games-section, .page-live__technology-section, .page-live__promotions-section, .page-live__getting-started-section, .page-live__responsible-gaming-section, .page-live__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background for sections */
}

.page-live__advantages-grid, .page-live__games-grid, .page-live__promotions-grid, .page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__advantage-card, .page-live__game-card, .page-live__promo-card, .page-live__step-card {
  background-color: #F8F8F8; /* Slightly off-white for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__advantage-image, .page-live__game-image, .page-live__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent image display in cards */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__button--play, .page-live__button--claim, .page-live__button--action, .page-live__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom of card */
}

.page-live__button--play:hover, .page-live__button--claim:hover, .page-live__button--action:hover, .page-live__button--learn-more:hover {
  background-color: #E0A83D;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-live__hero-container {
    padding: 30px 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: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__container {
    padding: 20px 15px;
  }
  .page-live__advantages-grid, .page-live__games-grid, .page-live__promotions-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Mobile content area images must be responsive */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__advantage-image, .page-live__game-image, .page-live__promo-image {
    height: auto; /* Allow height to adjust for responsiveness */
    min-height: 200px; /* Ensure minimum size */
  }
}

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