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

.page-live__hero-section {
  position: relative;
  width: 100%;
  padding-top: 20px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-live__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-live__hero-text-area {
  text-align: center;
  max-width: 900px;
}

.page-live__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: #FFD36B; /* Glow color for main titles */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-live__section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-live__dark-section {
  background-color: #111111; /* Card BG color for sections */
}

.page-live__medium-bg {
  background-color: #0A0A0A;
}

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

.page-live__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-live__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

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

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

.page-live__grid-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.page-live__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-live__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 211, 107, 0.3);
}

.page-live__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__card-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow color for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button background */
  border: none;
  box-shadow: 0 4px 10px rgba(221, 161, 29, 0.4);
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFE07A 0%, #E8B02C 100%);
  box-shadow: 0 6px 15px rgba(221, 161, 29, 0.6);
  transform: translateY(-2px);
}

.page-live__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Primary color for secondary button text */
  border: 2px solid #F2C14E;
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111; /* Dark text for primary color background */
  transform: translateY(-2px);
}

.page-live__btn-text {
  background: none;
  color: #FFD36B; /* Glow color for text buttons */
  border: none;
  padding: 0;
  text-decoration: underline;
}

.page-live__btn-text:hover {
  color: #F2C14E;
}

.page-live__cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-live__cta-buttons--centered {
  justify-content: center;
}

.page-live__content-block {
  flex: 1;
}

.page-live__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__image-block--mobile {
  min-width: 250px;
}

.page-live__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-live__sub-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__text-block {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-live__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-live__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #FFF6D6;
  font-size: 0.95em;
}

.page-live__list-item::before {
  content: '✓';
  color: #F2C14E; /* Primary color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-live__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-live__step-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__step-text {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-live__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-live__provider-logo {
  width: 167px;
  height: 127px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1); /* Slight enhancement, not color change */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.page-live__provider-logo:hover {
  opacity: 1;
  filter: brightness(1.4) contrast(1.3); /* Slight enhancement, not color change */
}

.page-live__faq-list {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-live__faq-question:hover {
  background-color: #2a2a2a;
}

.page-live__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E;
  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;
  font-size: 0.95em;
}

.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-section {
    padding-bottom: 30px;
  }

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

  .page-live__container--flex {
    flex-direction: column;
    text-align: center;
  }

  .page-live__image-block--mobile {
    order: -1; /* Image above text on smaller screens */
  }

  .page-live__hero-cta-buttons,
  .page-live__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .page-live__btn-primary, .page-live__btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-live__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-live__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-live__hero-description,
  .page-live__section-description,
  .page-live__card-text,
  .page-live__step-text,
  .page-live__text-block,
  .page-live__list-item,
  .page-live__faq-answer p {
    font-size: 0.9em;
  }

  .page-live__hero-section {
    padding-top: 15px;
    padding-bottom: 20px;
  }

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

  .page-live__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__hero-content-wrapper,
  .page-live__grid-three-col,
  .page-live__grid-two-col,
  .page-live__steps-grid,
  .page-live__providers-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__hero-section .page-live__container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Mobile button responsiveness */
  .page-live__cta-button,
  .page-live__btn-primary,
  .page-live__btn-secondary,
  .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,
  .page-live__button-group,
  .page-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  .page-live__provider-logo {
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-content-wrapper {
    padding: 0 10px;
  }

  .page-live__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }

  .page-live__section-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }

  .page-live__card {
    padding: 20px;
  }

  .page-live__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-live__faq-answer {
    padding: 10px 20px;
  }

  .page-live__btn-primary, .page-live__btn-secondary {
    padding: 10px 20px;
  }
}