.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: 50px; /* Space below content */
  background: #0A0A0A; /* Fallback */
}

.page-live__hero-image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 10;
  padding-top: 20px; /* Small padding below image */
  max-width: 800px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-live__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B;
}

.page-live__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

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

.page-live__live-games-section,
.page-live__promotions-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-live__dark-section {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
}

.page-live__features-grid,
.page-live__access-steps-grid,
.page-live__promo-cards-grid,
.page-live__security-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-live__feature-card,
.page-live__access-card,
.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-title,
.page-live__access-title,
.page-live__promo-title,
.page-live__security-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__feature-card p,
.page-live__access-card p,
.page-live__promo-card p,
.page-live__security-point p {
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-live__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-live__feature-list li {
  margin-bottom: 10px;
  color: #FFF6D6;
  position: relative;
  padding-left: 25px;
}

.page-live__feature-list li::before {
  content: '✓';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-live__image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-live__content-image,
.page-live__promotions-image,
.page-live__app-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-live__promotions-image {
  max-width: 1000px;
  margin: 50px auto 0 auto;
  display: block;
}

.page-live__app-image-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-live__app-image {
  max-width: 800px;
}

.page-live__security-point {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-live__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-live__faq-q-text {
  margin: 0;
  color: #FFD36B;
  font-size: 1.2em;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  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 20px;
  color: #FFF6D6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px;
}

.page-live__faq-answer p {
  margin: 0;
  color: #FFF6D6;
}

.page-live__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: #111111; /* Card BG */
}

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

@media (max-width: 768px) {
  .page-live {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
  }
  
  .page-live__hero-title {
    font-size: 2em;
  }
  
  .page-live__hero-description {
    font-size: 1em;
  }
  
  .page-live__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  
  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-live__features-grid,
  .page-live__access-steps-grid,
  .page-live__promo-cards-grid,
  .page-live__security-points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-live__image-row {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-live__content-image,
  .page-live__promotions-image,
  .page-live__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live__faq-question {
    font-size: 1.1em;
  }

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

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

  .page-live__container,
  .page-live__hero-content,
  .page-live__dark-section .page-live__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__feature-title,
  .page-live__access-title,
  .page-live__promo-title,
  .page-live__security-title {
    font-size: 1.5em;
  }
}