.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-live__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.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-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-live__button--register {
  background-color: #FCBC45;
  color: #000000;
  margin-right: 15px;
}

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

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

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

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 40px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

/* About Section */
.page-live__about-section {
  background-color: #FFFFFF;
}

.page-live__about-features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.page-live__about-feature-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-live__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  box-sizing: border-box;
}

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

/* Why Fatchai Section */
.page-live__why-fatchai-section {
  background-color: #f5f5f5;
}

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

.page-live__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-height: 200px;
}

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

.page-live__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Bonuses Section */
.page-live__bonuses-section {
  background-color: #FFFFFF;
}

.page-live__button--view-offers {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-live__button--view-offers:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* Getting Started Section */
.page-live__getting-started-section {
  background-color: #f5f5f5;
}

.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;
  text-align: left;
}

.page-live__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

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

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

.page-live__button--register-small, .page-live__button--deposit, .page-live__button--play-small {
  background-color: #FCBC45;
  color: #000000;
  width: fit-content;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto;
}

.page-live__button--register-small:hover, .page-live__button--deposit:hover, .page-live__button--play-small:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  background-color: #FFFFFF;
}

.page-live__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

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

/* FAQ Section */
.page-live__faq-section {
  background-color: #f5f5f5;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

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

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.page-live__button--more-faq {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 40px;
}

.page-live__button--more-faq:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* CTA Section */
.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

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

.page-live__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live__button--cta-register {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--register, .page-live__button--login {
    margin-right: 0;
    width: 100%;
    max-width: 300px;
  }
  .page-live__section {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__game-grid, .page-live__features-grid, .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-live are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__button--cta-register {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}

@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.8em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
}