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

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content area */
  color: #ffffff;
  padding: 0;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-live__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-live__button--register, .page-live__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live__button--explore, .page-live__button--details, .page-live__button--claim-bonus, .page-live__button--responsible-gaming, .page-live__button--contact-support {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-live__button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

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

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

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

.page-live__why-choose-section, .page-live__featured-games-section, .page-live__get-started-section, .page-live__bonuses-section, .page-live__security-section, .page-live__support-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-live__feature-item, .page-live__game-card, .page-live__step-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__feature-item:hover, .page-live__game-card:hover, .page-live__step-item:hover {
  transform: translateY(-8px);
}

.page-live__feature-title, .page-live__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__feature-description, .page-live__step-description {
  color: #555555;
  font-size: 1em;
}

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

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

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

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

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

.page-live__why-choose-image, .page-live__get-started-image, .page-live__bonuses-image, .page-live__security-image, .page-live__support-image {
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__main-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-content {
    max-width: 90%;
  }
  .page-live__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-live__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__feature-item, .page-live__game-card, .page-live__step-item {
    padding: 20px;
  }
  .page-live__game-image {
    height: 180px;
  }
  .page-live__why-choose-image, .page-live__get-started-image, .page-live__bonuses-image, .page-live__security-image, .page-live__support-image {
    max-width: 100%;
  }
  /* Mobile content area images must not cause horizontal scrolling */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__main-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button {
    width: 100%;
  }
}