.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  position: relative;
  text-align: center;
  color: #FFFFFF;
  background-color: #000000; /* Dark background for hero text */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
  font-size: 1.1em;
}

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

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

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

.page-live__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
  padding-top: 60px;
}

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

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

.page-live__why-choose-section,
.page-live__popular-games-section,
.page-live__bonuses-section,
.page-live__mobile-section,
.page-live__security-section,
.page-live__get-started-section,
.page-live__detail-pages-section,
.page-live__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live__feature-grid,
.page-live__game-grid,
.page-live__steps-grid,
.page-live__detail-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,
.page-live__bonus-card,
.page-live__step-card,
.page-live__detail-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-image,
.page-live__game-image,
.page-live__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__card-title a {
  color: #000000;
  text-decoration: none;
}

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

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

.page-live__button--play,
.page-live__button--claim,
.page-live__button--view-promos,
.page-live__button--download,
.page-live__button--learn-more,
.page-live__button--register-step,
.page-live__button--deposit-step,
.page-live__button--play-step,
.page-live__button--details,
.page-live__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-live__button--play:hover,
.page-live__button--claim:hover,
.page-live__button--view-promos:hover,
.page-live__button--download:hover,
.page-live__button--learn-more:hover,
.page-live__button--register-step:hover,
.page-live__button--deposit-step:hover,
.page-live__button--play-step:hover,
.page-live__button--details:hover,
.page-live__button--join-now:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #000000;
}

.page-live__bonus-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-live__bonus-card {
  flex: 1 1 45%;
  max-width: 500px;
}

.page-live__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-live__mobile-content {
  flex: 1;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live__mobile-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-live__mobile-feature-item {
  background-color: #F0F0F0;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #FCBC45;
  font-size: 1.05em;
  color: #333333;
}

.page-live__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-live__security-item {
  background-color: #F8F8F8;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #000000;
  font-size: 1.1em;
  line-height: 1.5;
  color: #333333;
}

.page-live__security-item strong {
  color: #000000;
}

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

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__cta-section .page-live__section-intro {
  color: #F0F0F0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__feature-grid,
  .page-live__game-grid,
  .page-live__steps-grid,
  .page-live__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding: 40px 20px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    min-width: 80%;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__why-choose-section,
  .page-live__popular-games-section,
  .page-live__bonuses-section,
  .page-live__mobile-section,
  .page-live__security-section,
  .page-live__get-started-section,
  .page-live__detail-pages-section,
  .page-live__cta-section {
    padding: 40px 0;
  }
  .page-live__feature-grid,
  .page-live__game-grid,
  .page-live__steps-grid,
  .page-live__detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__bonus-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-live__bonus-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
  .page-live__mobile-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-live__mobile-content,
  .page-live__mobile-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .page-live__mobile-features {
    text-align: center;
  }
  /* Mobile content area image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    width: 100%;
    height: auto; /* Allow image to scale down */
    position: static; /* Remove absolute positioning for better mobile flow */
    opacity: 1; /* Restore opacity if desired, or keep semi-transparent for overlay */
  }
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
  }
  .page-live__hero-container {
    order: 2; /* Move text below image */
    padding: 20px;
  }
  .page-live__hero-image {
    order: 1;
    max-height: 250px; /* Limit hero image height on mobile */
  }
  .page-live__security-list {
    padding: 0 10px;
  }
}

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