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

.page-live__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, main offset handled by body */
  padding-bottom: 60px;
}

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

.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: 1;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image, but not *on* the image visible area */
  background-color: #111111; /* Card background for content block */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  padding-top: 80px; /* Ensure content starts below the curve */
  padding-bottom: 40px;
  border: 1px solid #3A2A12;
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFF6D6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__section {
  padding: 60px 0;
  background-color: #0A0A0A;
  border-bottom: 1px solid #1a1a1a;
}

.page-live__dark-section {
  background-color: #111111;
}

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

.page-live__container--center {
  text-align: center;
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-description {
  font-size: 1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__image-text-layout--reversed {
  flex-direction: row-reverse;
}

.page-live__text-content {
  flex: 1;
  color: #FFF6D6;
}

.page-live__text-content p {
  margin-bottom: 20px;
}

.page-live__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-live__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

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

.page-live__cta-buttons--vertical {
  flex-direction: column;
  align-items: flex-start;
}

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B02A 100%);
  box-shadow: 0 0 15px #FFD36B;
}

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

.page-live__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  box-shadow: 0 0 15px #FFD36B;
}

.page-live__btn-tertiary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-live__btn-tertiary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-live__btn-small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.page-live__btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

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

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

.page-live__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

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

.page-live__card-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__cta-full-width {
  text-align: center;
  margin-top: 50px;
}

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

.page-live__feature-item {
  padding: 30px;
}

.page-live__feature-title {
  font-size: 1.6rem;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-live__feature-item p {
  color: #f0f0f0;
}

.page-live__link-inline {
  color: #FFD36B;
  text-decoration: none;
}

.page-live__link-inline:hover {
  text-decoration: underline;
}

.page-live__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-live__faq-question:hover {
  background-color: #1a1a1a;
}

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

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

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

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

.page-live__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-live__image-text-layout {
    flex-direction: column;
  }

  .page-live__image-text-layout--reversed {
    flex-direction: column;
  }

  .page-live__hero-content {
    margin-top: -100px;
  }

  .page-live__cta-buttons--vertical {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-bottom: 40px;
  }

  .page-live__hero-content {
    margin-top: -80px;
    padding-top: 60px;
  }

  .page-live__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-live__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-live__sub-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .page-live__section {
    padding: 40px 0;
  }

  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__cta-buttons,
  .page-live__image-text-layout,
  .page-live__features-grid,
  .page-live__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__cta-button,
  .page-live__btn-primary,
  .page-live__btn-secondary,
  .page-live__btn-tertiary,
  .page-live a[class*="button"],
  .page-live a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-live__cta-buttons--vertical {
    align-items: stretch;
  }

  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific override */
  }
}