.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
}

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

.page-live__hero-section {
  position: relative;
  padding-top: 10px; /* Small top margin, relying on body padding for header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-live__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 40px;
}

.page-live__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-live__btn-secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-live__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-live__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF6D6;
  padding-top: 40px;
}

.page-live__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF6D6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__content-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-live__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-live__card {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-live__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-live__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* Games Showcase Section */
.page-live__games-showcase-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-live__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-live__category-card {
  align-items: center;
  text-align: center;
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFD36B); /* Glow effect */
}

.page-live__image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.page-live__image-grid-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Why Choose Section */
.page-live__why-choose-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-live__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-live__feature-card {
  text-align: left;
}

.page-live__feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  object-fit: cover;
}

/* Getting Started Section */
.page-live__getting-started-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-live__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-live__step-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Mobile Experience Section */
.page-live__mobile-experience-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-live__mobile-text {
  text-align: center;
  max-width: 600px;
}

.page-live__mobile-image-wrapper {
  width: 100%;
  max-width: 400px;
}

.page-live__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-live__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-live__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-live__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2C14E;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-live__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

/* Contact Section */
.page-live__contact-section {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.page-live__contact-section .page-live__btn-primary {
  margin-top: 30px;
}

/* Global image settings for content area */
.page-live img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-live__image-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-live__steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-live__mobile-content {
    flex-direction: row;
    text-align: left;
  }

  .page-live__mobile-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-live__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 20px;
  }

  .page-live__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__section-title {
    padding-top: 30px;
  }

  .page-live__section-description {
    margin-bottom: 30px;
  }

  /* Force images to be responsive */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }
  
  .page-live__category-icon {
    min-width: unset;
    min-height: unset;
  }

  /* Ensure content containers are responsive */
  .page-live__section,
  .page-live__card,
  .page-live__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure hero section padding-top is correct for mobile */
  .page-live__hero-section {
    padding-top: 10px !important; /* Small top margin, relying on body padding for header offset */
  }

  .page-live__faq-question,
  .page-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__faq-item.active .page-live__faq-answer {
    padding: 15px 15px;
  }
}