.page-live {
  color: #f0f0f0; /* Light text for potential darker body background if shared.css sets it */
  background-color: #0A192F; /* Main brand dark blue for sections */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  overflow: hidden;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-live__btn {
  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;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

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

.page-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-live__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-live__why-choose-section,
.page-live__game-collection-section,
.page-live__advantage-section,
.page-live__promotions-section,
.page-live__faq-section,
.page-live__join-cta-section {
  padding: 40px 0;
  background-color: #0A192F;
}

.page-live__features-grid,
.page-live__games-grid,
.page-live__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__advantage-item {
  background-color: #1a2a47;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-live__feature-icon,
.page-live__game-image,
.page-live__advantage-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-live__feature-title,
.page-live__game-title,
.page-live__advantage-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__feature-text,
.page-live__game-text,
.page-live__advantage-text {
  font-size: 1em;
  color: #c0c0c0;
}

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

.page-live__btn--explore,
.page-live__btn--download,
.page-live__btn--promo,
.page-live__btn--support,
.page-live__btn--cta,
.page-live__btn--login {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-live__btn--explore:hover,
.page-live__btn--download:hover,
.page-live__btn--promo:hover,
.page-live__btn--support:hover,
.page-live__btn--cta:hover,
.page-live__btn--login:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

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

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  text-align: left;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(45deg);
}

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

.page-live__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-live__faq-answer p {
  color: #c0c0c0;
  font-size: 1em;
  margin: 0;
  text-align: left;
}

.page-live__join-cta-section {
  padding-bottom: 80px;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-live__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__advantage-icon {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__advantage-icon {
    max-width: 100%;
    height: auto;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer.open {
    max-height: 300px; /* Adjust for more content on mobile */
  }
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 60px;
  }
  .page-live__section-title {
    padding-top: 40px;
  }
  .page-live__why-choose-section,
  .page-live__game-collection-section,
  .page-live__advantage-section,
  .page-live__promotions-section,
  .page-live__faq-section,
  .page-live__join-cta-section {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__advantage-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__faq-answer p {
    font-size: 0.9em;
  }
}

/* Ensure all images within .page-live are not small */
.page-live img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-live__hero-image {
  min-width: 100%; /* Hero image should fill its container */
  min-height: 100%;
}

.page-live__feature-icon, .page-live__game-image, .page-live__advantage-icon {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-live img {
  filter: none; /* Ensure no CSS filters are applied */
}