.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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  overflow: hidden;
  background-color: #000000; /* Fallback background */
}

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7; /* Slightly dim the image for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

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

.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, transform 0.3s ease;
  white-space: nowrap;
}

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

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

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

.page-live__button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-live__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-live__introduction-section,
.page-live__games-section,
.page-live__experience-section,
.page-live__promotions-section,
.page-live__security-section,
.page-live__getting-started-section,
.page-live__call-to-action-section,
.page-live__contact-section {
  padding: 80px 0;
}

.page-live__games-section {
  background-color: #f8f8f8;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__game-card-image {
  width: 100%;
  height: 250px; /* Ensure minimum size */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-live__game-card-title a {
  text-decoration: none;
  color: inherit;
}

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

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

.page-live__button--view-details,
.page-live__button--promo,
.page-live__button--learn-more,
.page-live__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 1em;
}

.page-live__button--view-details:hover,
.page-live__button--promo:hover,
.page-live__button--learn-more:hover,
.page-live__button--contact:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-live__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.page-live__feature-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-live__feature-icon {
  width: 250px; /* Min width 200px */
  height: 167px; /* Maintain aspect ratio for 600x400 example */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

.page-live__feature-description {
  font-size: 0.95em;
  color: #555555;
}

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

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

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

.page-live__promotions-section .page-live__section-text {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-live__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  margin-left: 20px;
}

.page-live__button--join-now:hover {
  background-color: #e0a53a;
}

.page-live__security-section {
  background-color: #f8f8f8;
}

.page-live__security-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-live__security-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-live__security-description {
  font-size: 0.95em;
  color: #555555;
}

.page-live__getting-started-section {
  text-align: center;
}

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

.page-live__step-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-live__button--step {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-live__button--step:hover {
  background-color: #e0a53a;
}

.page-live__call-to-action-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

.page-live__call-to-action-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__call-to-action-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__call-to-action-section .page-live__section-text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.2em;
  padding: 18px 35px;
  margin-right: 20px;
}

.page-live__button--primary:hover {
  background-color: #e0a53a;
}

.page-live__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.2em;
  padding: 18px 35px;
}

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

.page-live__contact-section {
  text-align: center;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-content {
    padding: 30px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__introduction-section,
  .page-live__games-section,
  .page-live__experience-section,
  .page-live__promotions-section,
  .page-live__security-section,
  .page-live__getting-started-section,
  .page-live__call-to-action-section,
  .page-live__contact-section {
    padding: 60px 0;
  }
  .page-live__game-card-image,
  .page-live__feature-icon {
    height: 200px; /* Ensure minimum size */
  }
  .page-live__game-card-title {
    font-size: 1.5em;
  }
  .page-live__button--join-now {
    margin-left: 0;
    margin-top: 20px;
  }
  .page-live__button--primary,
  .page-live__button--secondary {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-live__call-to-action-section .page-live__button--secondary {
    margin-bottom: 0;
  }

  /* Mobile content area images must be responsive */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    max-width: 100%; /* Ensure hero image is responsive */
  }
  .page-live__game-card-image {
    max-width: 100%;
  }
  .page-live__feature-icon {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__hero-content {
    padding: 20px 10px;
  }
}