.page-live {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Custom background color */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-live__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

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

.page-live__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-live__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-live__introduction-section,
.page-live__games-section,
.page-live__features-section,
.page-live__promotions-section,
.page-live__getting-started-section,
.page-live__trust-section,
.page-live__call-to-action-section {
  padding: 60px 0;
}

.page-live__section-title {
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

.page-live__section-subtitle {
  font-size: 1.2rem;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-live__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__text-content a:hover {
  text-decoration: underline;
}

.page-live__text-content--center {
  text-align: center;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-live__button--primary:hover {
  background-color: #E0A83A;
  transform: translateY(-3px);
}

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

.page-live__game-card,
.page-live__feature-item,
.page-live__promotion-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-live__game-card:hover,
.page-live__feature-item:hover,
.page-live__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-live__game-image,
.page-live__promotion-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #EEEEEE;
}

.page-live__feature-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure full icon is visible */
  padding: 20px;
}

.page-live__game-title,
.page-live__feature-title,
.page-live__promotion-title {
  font-size: 1.8rem;
  color: #000000;
  margin: 20px 20px 10px;
}

.page-live__game-description,
.page-live__feature-description,
.page-live__promotion-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  padding: 0 20px;
  flex-grow: 1;
}

.page-live__button--play,
.page-live__button--claim {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin: 20px;
}

.page-live__button--play:hover,
.page-live__button--claim:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-live__getting-started-section {
  background-color: #F0F0F0;
}

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

.page-live__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 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.6rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-live__button--secondary:hover {
  background-color: #E0A83A;
  transform: translateY(-3px);
}

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

.page-live__trust-section .page-live__section-title,
.page-live__trust-section .page-live__text-content {
  color: #FFFFFF;
}

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

.page-live__button--contact,
.page-live__button--responsible {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  margin: 20px 10px;
}

.page-live__button--contact:hover,
.page-live__button--responsible:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  transform: translateY(-3px);
}

.page-live__call-to-action-section {
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

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

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

.page-live__call-to-action-section .page-live__section-subtitle {
  color: #333333;
}

.page-live__button--cta {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 18px 40px;
  font-size: 1.3rem;
  margin-top: 30px;
}

.page-live__button--cta:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3rem;
  }
  .page-live__hero-description {
    font-size: 1.15rem;
  }
  .page-live__section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-live__hero-section {
    padding: 60px 20px;
  }
  .page-live__hero-title {
    font-size: 2.5rem;
  }
  .page-live__hero-description {
    font-size: 1rem;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 280px;
  }
  .page-live__section-title {
    font-size: 2rem;
  }
  .page-live__section-subtitle {
    font-size: 1rem;
  }
  .page-live__text-content {
    font-size: 1rem;
  }
  .page-live__games-grid,
  .page-live__features-grid,
  .page-live__promotions-grid,
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__promotion-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto; /* Prevent image overflow */
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-live__container {
    padding: 0 15px;
    overflow-x: hidden;
  }
  .page-live__trust-section .page-live__button--contact,
  .page-live__trust-section .page-live__button--responsible {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2rem;
  }
  .page-live__hero-description {
    font-size: 0.9rem;
  }
  .page-live__section-title {
    font-size: 1.8rem;
  }
  .page-live__game-title,
  .page-live__feature-title,
  .page-live__promotion-title {
    font-size: 1.5rem;
  }
  .page-live__button--cta {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}