.page-live {
  color: #333333; /* Dark text for light body background */
}

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

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

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

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

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  line-height: 1.6;
}

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

.page-live__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px; /* 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: transparent;
  color: #FFFFFF;
}

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

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

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

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

.page-live__section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  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-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__info-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__feature-title, .page-live__game-title, .page-live__promo-title, .page-live__info-title, .page-live__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-live__feature-text, .page-live__game-description, .page-live__promo-description, .page-live__info-text, .page-live__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-live__button--view-details, .page-live__button--promo, .page-live__button--info, .page-live__button--step-cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.95em;
}

.page-live__button--view-details:hover, .page-live__button--promo:hover, .page-live__button--info:hover, .page-live__button--step-cta:hover {
  background-color: #e0a33a;
}

.page-live__how-to-start {
  background-color: #f0f0f0;
}

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

.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-live__step-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-live__cta-banner {
  background: linear-gradient(90deg, #000000, #333333);
  color: #FFFFFF;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-live__cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

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

.page-live__section-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  text-align: center;
  margin-top: 40px;
}

.page-live__section-text--small {
  font-size: 0.9em;
  margin-top: 20px;
}

.page-live__info-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-live__customer-support {
  background-color: #f8f8f8;
}

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

.page-live__support-image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-live__support-text-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-live__support-text {
  font-size: 1.1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-live__support-list {
  list-style: disc inside;
  color: #555555;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-live__support-list li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-live__support-list strong {
  color: #000000;
}

.page-live__button--support {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

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

.page-live__join-today {
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

.page-live__button--large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 50px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 40px;
  display: inline-block;
}

.page-live__button--large:hover {
  background-color: #e0a33a;
  transform: translateY(-5px);
}

.page-live__small-text {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section {
    padding: 60px 0;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-live__features-grid, .page-live__game-cards-grid, .page-live__promo-cards-grid, .page-live__info-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__cta-banner {
    padding: 40px 20px;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-text {
    font-size: 1em;
  }
  .page-live__button--primary, .page-live__button--large {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-live__support-content {
    flex-direction: column;
  }
  .page-live__support-image, .page-live__support-text-block {
    min-width: unset;
    width: 100%;
  }
  /* Mobile content area image constraints */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__container {
    padding: 0 15px;
  }
}

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