.page-live {
  color: #333333; /* Dark text for default light body 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;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000; /* Dark background for hero content over image */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

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

.page-live__hero-button {
  display: inline-block;
  background-color: #CC0000; /* Primary red button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live__hero-button:hover {
  background-color: #e06666;
  transform: translateY(-3px);
}

.page-live__introduction-section,
.page-live__vip-privileges-section,
.page-live__access-guide-section,
.page-live__technology-security-section,
.page-live__mobile-experience-section,
.page-live__promotions-section,
.page-live__support-section,
.page-live__responsible-gaming-section,
.page-live__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #CC0000; /* Primary red for section titles */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-live__section-description,
.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-live__games-showcase-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.page-live__games-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: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #CC0000;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-live__game-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-live__game-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #333333;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

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

.page-live__vip-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-live__vip-item {
  background-color: #fff8e1; /* Light gold background */
  color: #CC0000;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex: 0 1 calc(33% - 40px);
  text-align: left;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #CC0000;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-live__cta-button--large {
  font-size: 1.5em;
  padding: 18px 40px;
}

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

.page-live__step-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

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

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

.page-live__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-live__step-button {
  display: inline-block;
  background-color: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live__step-button:hover {
  background-color: #e06666;
}

.page-live__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__mobile-image {
  max-width: 400px; /* Smaller for mobile app showcase */
}

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

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

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

  .page-live__vip-item {
    flex: 0 1 calc(50% - 30px);
  }
}

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

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

  .page-live__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }

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

  .page-live__text-content,
  .page-live__section-description {
    font-size: 0.95em;
  }

  .page-live__games-grid,
  .page-live__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-live__game-title {
    font-size: 1.4em;
  }

  .page-live__vip-item {
    flex: 0 1 100%;
  }

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

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

  .page-live__hero-image,
  .page-live__game-image,
  .page-live__content-image,
  .page-live__mobile-image {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
  }

  .page-live__hero-content {
    padding: 15px;
  }
}

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

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

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

  .page-live__game-title {
    font-size: 1.2em;
  }

  .page-live__game-text {
    font-size: 0.9em;
  }

  .page-live__game-button {
    font-size: 0.85em;
    padding: 10px 20px;
  }

  .page-live__vip-item {
    font-size: 1em;
    padding: 12px 20px;
  }

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

  .page-live__step-text {
    font-size: 0.9em;
  }
}

/* Ensure all images within .page-live are at least 200px wide/high */
.page-live img {
  min-width: 200px;
  min-height: 200px;
}

.page-live__hero-image {
  min-width: unset;
  min-height: unset;
}

.page-live__mobile-image {
  min-width: 200px;
  min-height: 200px;
}