.page-live {
  color: #333333; /* Dark text for light body background #F8F8F8 */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  background-color: #0A192F; /* Main brand color for hero background */
  color: #ffffff; /* White text for dark background */
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

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

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

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #0A192F; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-live__introduction-section,
.page-live__game-showcase-section,
.page-live__features-section,
.page-live__bonuses-section,
.page-live__detail-pages-section,
.page-live__faq-section,
.page-live__cta-bottom-section {
  padding: 60px 0;
}

.page-live__introduction-section,
.page-live__bonuses-section,
.page-live__cta-bottom-section {
  background-color: #ffffff;
}

.page-live__game-showcase-section,
.page-live__features-section,
.page-live__detail-pages-section,
.page-live__faq-section {
  background-color: #f0f0f0;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #0A192F; /* Main color for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-live__section-text--cta {
  margin-top: 40px;
  font-weight: bold;
}

.page-live__inline-link {
  color: #0A192F;
  text-decoration: underline;
  font-weight: bold;
}

.page-live__inline-link:hover {
  color: #FFD700;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFD700;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #0A192F;
  margin: 25px 15px 15px 15px;
}

.page-live__game-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-live__card-button {
  display: inline-block;
  background-color: #0A192F; /* Main color for card buttons */
  color: #FFD700; /* Accent color for card button text */
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__card-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

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

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

.page-live__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-live__feature-item img {
  width: 200px; /* Minimum size requirement */
   /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 0.95em;
  line-height: 1.7;
  color: #555555;
}

.page-live__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

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

.page-live__detail-title a {
  color: #0A192F;
  text-decoration: none;
}

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

.page-live__detail-description {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-live__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-live__detail-button:hover {
  background-color: #e6c200;
}

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-live__cta-bottom-section {
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
}

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

.page-live__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  margin-top: 30px;
}

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

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

  .page-live__game-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding: 60px 15px;
  }

  .page-live__hero-title {
    font-size: 2.5em;
  }

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

  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

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

  .page-live__section-text {
    font-size: 1em;
  }

  .page-live__game-grid,
  .page-live__features-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-card img,
  .page-live__feature-item img {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }
  
  /* Ensure content area images do not cause horizontal scroll */
  .page-live img {
    max-width: 100%; 
    height: auto; 
  }

  .page-live__feature-item img {
    width: 200px; 
    height: auto;
  }

  .page-live__detail-title {
    font-size: 1.8em;
  }

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

  .page-live__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }

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

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

  .page-live__game-card img {
    
  }
}