.page-live {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

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

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

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

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

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-live__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient background */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0e0e0;
}

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

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Subtle grayscale for background effect, NOT for color change */
}

/* About Section */
.page-live__about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-live__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-live__feature-text {
  color: #666666;
  font-size: 1em;
}

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__game-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-live__game-image {
  width: 350px; /* Minimum 200px */
  height: 262px; /* Maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-live__game-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FFD700;
}

.page-live__game-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
}

/* How to Start Section */
.page-live__how-to-start-section {
  padding: 80px 0;
  background-color: #f0f5fa; /* Lighter blue-gray background */
}

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

.page-live__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-live__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-live__step-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Bonuses Section */
.page-live__bonuses-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__bonus-card {
  background: linear-gradient(145deg, #003366, #001a33);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__bonus-image {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__bonus-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__bonus-text {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-live__mobile-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-live__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-live__mobile-image {
  width: 500px; /* Minimum 200px */
  height: 375px; /* Maintain aspect ratio */
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-live__mobile-features li {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-live__list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
}

/* Featured Game Section (Detail Page List) */
.page-live__featured-game-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__detail-card {
  background-color: #f0f5fa;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-live__detail-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-live__detail-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__detail-title a:hover {
  color: #FFD700;
}

.page-live__detail-text {
  color: #666666;
  font-size: 1.1em;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #003366;
  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;
  color: #FFD700;
}

.page-live__faq-item.active .page-live__faq-question::after {
  content: '-';
}

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

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding: 0 25px 25px;
}

/* CTA Section */
.page-live__cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #003366 0%, #001a33 100%);
  color: #ffffff;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700;
}

.page-live__cta-section .page-live__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__mobile-container {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-live__hero-section {
    padding: 60px 20px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--secondary {
    margin-left: 0;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  /* Ensure all images within .page-live are at least 200px wide */
  .page-live img {
    min-width: 200px;
    min- /* Example, adjust as needed to fit content while respecting min size */
    object-fit: cover;
  }
  .page-live__hero-image,
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__bonus-image,
  .page-live__mobile-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images don't overflow */
  }
  .page-live__feature-card, .page-live__game-card, .page-live__step-card, .page-live__bonus-card, .page-live__detail-card {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__step-title, .page-live__bonus-title, .page-live__detail-title {
    font-size: 1.4em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button--primary, .page-live__button--secondary {
    width: 100%;
    margin-left: 0;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    padding: 15px 20px;
  }
  .page-live__faq-question::after {
    right: 20px;
  }
  .page-live__faq-answer {
    padding: 0 20px 15px;
  }
}