.page-live {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensure consistency, though body background is from shared.css */
}

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px; /* Minimum height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for contrast with overlay */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the background image */
}

.page-live__hero-overlay {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  border-radius: 8px;
  max-width: 800px;
}

.page-live__hero-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;
  line-height: 1.5;
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

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

.page-live__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__about-section, .page-live__games-section, .page-live__technology-section, .page-live__promotions-section, .page-live__getting-started-section, .page-live__mobile-section, .page-live__security-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

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

.page-live__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-live__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--play:hover {
  background-color: #e0a53b;
}

.page-live__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__content-wrapper--reverse {
  flex-direction: row-reverse;
}

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

.page-live__image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure image wrapper has min width */
}

.page-live__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-live__promo-item {
  background-color: #f8f8f8;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1.05em;
}

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

.page-live__promo-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live__button--view-promo {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__button--view-promo:hover {
  background-color: #333333;
}

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

.page-live__button--claim-bonus:hover {
  background-color: #e0a53b;
}

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

.page-live__step-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-live__button--register-step, .page-live__button--deposit-step, .page-live__button--explore-step {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--register-step:hover, .page-live__button--deposit-step:hover, .page-live__button--explore-step:hover {
  background-color: #e0a53b;
}

.page-live__mobile-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-live__button--download {
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.page-live__button--mobile-browser:hover {
  background-color: #e0a53b;
}

.page-live__security-features {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-live__security-image {
  width: 300px;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__security-list {
  list-style: none;
  padding: 0;
  flex: 1;
  min-width: 280px;
}

.page-live__security-item {
  background-color: #f8f8f8;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #000000;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-live__faq-accordion {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #eeeeee;
  border-bottom: 1px solid #dddddd;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-live__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #ffffff;
  color: #555555;
}

.page-live__faq-answer p {
  padding: 15px 0;
  margin: 0;
}

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

.page-live__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  margin-top: 60px;
}

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

.page-live__cta-section .page-live__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live__button--contact {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__button--contact:hover {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__content-wrapper {
    flex-direction: column;
  }
  .page-live__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-live__mobile-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-live__section-text {
    font-size: 1em;
  }
  .page-live__game-grid, .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__content-image, .page-live__security-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__security-features {
    flex-direction: column;
  }
  .page-live__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Mobile content area image safety */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-live__content-area {
    overflow-x: hidden;
  }
  .page-live__security-image, .page-live__game-image, .page-live__content-image {
    width: 100%; /* Ensure images take full width of their container */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-live__faq-question::after {
    right: 15px;
  }
  .page-live__faq-answer {
    padding: 0 15px;
  }
}