.page-live {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for default white body background */
  background-color: #f8f8f8;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-live__hero-section {
  background-color: #0A1931; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-live__hero-content {
  max-width: 800px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B700; /* Accent color for title */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.page-live__button--primary {
  background-color: #E0B700; /* Accent color for primary button */
  color: #0A1931;
  border: 2px solid #E0B700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #E0B700; /* Accent color for secondary button text */
  border: 2px solid #E0B700;
}

.page-live__button--secondary:hover {
  background-color: rgba(224, 183, 0, 0.1);
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-live__hero-image {
  margin-top: 40px;
  max-width: 100%;
}

.page-live__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-live__features-grid,
.page-live__game-cards-grid,
.page-live__tech-details,
.page-live__bonus-cards-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__tech-item,
.page-live__bonus-card,
.page-live__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__tech-item:hover,
.page-live__bonus-card:hover,
.page-live__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon,
.page-live__tech-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__game-image,
.page-live__bonus-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__card-title {
  font-size: 1.6em;
  color: #0A1931;
  margin-bottom: 15px;
}

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

.page-live__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #E0B700;
  margin-bottom: 15px;
  background-color: rgba(224, 183, 0, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-live__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
}

.page-live__faq-accordion {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-live__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-live__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #555555;
}

.page-live__faq-question.active + .page-live__faq-answer {
  max-height: 500px; /* Adjust based on content */
  padding-top: 10px;
  padding-bottom: 20px;
}

.page-live__final-cta-section {
  background-color: #0A1931;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-live__final-cta-section .page-live__section-title {
  color: #E0B700;
}

.page-live__final-cta-section .page-live__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
  .page-live__hero-section {
    flex-direction: column;
    padding: 60px 15px;
    gap: 20px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__content-wrapper {
    padding: 0 15px;
  }
  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__tech-details,
  .page-live__bonus-cards-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .page-live__feature-icon,
  .page-live__tech-image,
  .page-live__game-image,
  .page-live__bonus-image {
    max-width: 100%;
    width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px;
    min-height: 200px;
  }
  /* Enforce max-width: 100%; height: auto; for all images in content area */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-live__final-cta-section {
    padding: 60px 15px;
  }
}