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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

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

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  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.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__games-section,
.page-live__features-section,
.page-live__cta-section,
.page-live__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-live__games-section:nth-of-type(odd),
.page-live__features-section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.page-live__game-grid {
  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: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.page-live__game-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
  text-align: justify;
}

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

.page-live__button--play:hover,
.page-live__button--explore:hover {
  background-color: #e6a73c;
}

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

.page-live__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-icon {
  width: 250px; /* Enforcing minimum size */
  height: 150px; /* Enforcing minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-live__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  text-align: justify;
}

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

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

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

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

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

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

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

.page-live__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-live__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.1em;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__feature-icon {
    width: 200px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .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: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-live__content-area {
    padding: 30px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live__text-content {
    font-size: 1em;
  }
  .page-live__game-grid,
  .page-live__feature-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__game-image {
    height: 180px;
  }
  .page-live__feature-icon {
    width: 200px;
    height: 120px;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--register-large,
  .page-live__button--download-app {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.1em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__faq-answer {
    font-size: 0.95em;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}