.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); /* Ensure content is not hidden by fixed header */
}

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

.page-live__section {
  padding: 60px 0;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-live__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-live__hero-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Handled by main tag padding-top */
}

.page-live__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text contrast */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: -30% auto 0; /* Pull content up over the image */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 50%, #0A0A0A 100%); /* Gradient to blend with background */
}

.page-live__hero-title {
  font-size: clamp(2em, 3.5vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

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

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

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  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%); /* Button color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

.page-live__btn-secondary:hover {
  background: #F2C14E; /* Main color */
  color: #111111; /* Card BG */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-tertiary {
  background: #3A2A12; /* Border color */
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12;
}

.page-live__btn-tertiary:hover {
  background: #F2C14E; /* Main color */
  color: #111111; /* Card BG */
  transform: translateY(-2px);
}

.page-live__dark-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__bonus-card,
.page-live__device-card,
.page-live__step-card,
.page-live__tech-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 350px; /* Ensure cards have similar height */
}

.page-live__feature-icon,
.page-live__bonus-icon,
.page-live__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #F2C14E; /* Main color */
  padding: 10px;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__bonus-title,
.page-live__device-title,
.page-live__step-title,
.page-live__tech-title {
  font-size: 1.5em;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__feature-text,
.page-live__game-text,
.page-live__bonus-text,
.page-live__device-text,
.page-live__step-text,
.page-live__tech-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__game-image,
.page-live__device-image,
.page-live__tech-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-live__call-to-action-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-live__faq-section {
  text-align: left;
}

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

.page-live__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  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;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-question h3 {
  margin: 0;
  color: #FFD36B; /* Glow color */
}

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

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

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
  text-align: left;
}

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

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

/* Ensure images meet minimum size requirements */
.page-live img {
  min-width: 200px;
  min-height: 200px;
}

/* Exceptions for category icons and partner logos */
.page-live__game-category-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
}

.page-live__partner-logo {
  width: 167px;
  height: 127px;
  min-width: 167px;
  min-height: 127px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-live__hero-content {
    margin-top: -40%; /* Adjust for smaller screens */
    padding: 60px 20px;
  }

  .page-live__section-title {
    font-size: 2em;
  }

  .page-live__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.6;
  }

  .page-live__hero-content {
    margin-top: -50%; /* Further adjust for mobile */
    padding: 40px 15px;
  }

  .page-live__hero-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-live__hero-description {
    font-size: 1em;
  }

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

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

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__bonus-cards,
  .page-live__device-showcase,
  .page-live__steps-grid,
  .page-live__tech-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__bonus-card,
  .page-live__device-card,
  .page-live__step-card,
  .page-live__tech-card,
  .page-live__cta-buttons,
  .page-live__faq-list,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  /* Override specific min-width/height for mobile if it causes overflow, but keep >200px where applicable */
  .page-live__feature-icon, .page-live__bonus-icon, .page-live__step-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
  }

  .page-live__game-image, .page-live__device-image, .page-live__tech-image {
    height: 180px;
  }

  /* Ensure no overflow from images in mobile */
  .page-live__game-image, .page-live__device-image, .page-live__tech-image, .page-live__hero-image {
    object-fit: cover;
  }
}