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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for headings */
  text-align: center;
  margin-bottom: 40px;
  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; /* Main accent color */
  border-radius: 2px;
}

.page-live__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__text-content--centered {
  text-align: center;
}

.page-live__text-content a {
  color: #8B0000; /* Link color */
  text-decoration: underline;
}

.page-live__text-content a:hover {
  color: #FFD700; /* Link hover color */
}

.page-live__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-live__btn--primary {
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Text on main color */
}

.page-live__btn--primary:hover {
  background-color: #e6c200;
}

.page-live__btn--secondary {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Text on auxiliary color */
  border: 2px solid #FFD700;
}

.page-live__btn--secondary:hover {
  background-color: #a30000;
  border-color: #e6c200;
}

.page-live__btn--gold {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-live__btn--gold:hover {
  background-color: #e6c200;
  border-color: #5c0000;
}

.page-live__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
  background-color: #000; /* Fallback dark background */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

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

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

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__hero-buttons .page-live__btn {
  margin: 10px;
}

/* Section Styling */
.page-live__introduction-section,
.page-live__game-features-section,
.page-live__game-types-section,
.page-live__promotions-section,
.page-live__security-section,
.page-live__getting-started-section,
.page-live__cta-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-live__section--dark-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-live__section--dark-bg .page-live__section-title {
  color: #FFD700;
}

.page-live__section--dark-bg .page-live__text-content,
.page-live__section--dark-bg .page-live__faq-question,
.page-live__section--dark-bg .page-live__faq-answer {
  color: #f0f0f0;
}

.page-live__section--dark-bg .page-live__text-content a {
  color: #FFD700;
}

.page-live__section--dark-bg .page-live__text-content a:hover {
  color: #e6c200;
}

/* Features Grid */
.page-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

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

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

.page-live__feature-icon {
  width: 250px;
  height: 187.5px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #FFD700;
}

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

.page-live__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Game Cards Grid */
.page-live__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #8B0000;
  margin: 20px 0 10px;
}

.page-live__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-live__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-live__promo-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Mobile Section */
.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-live__mobile-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 150px;
}

.page-live__mobile-text {
  flex: 1;
}

.page-live__mobile-text .page-live__btn {
  margin-right: 15px;
  margin-top: 20px;
}

/* Getting Started Section */
.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFD700;
}

.page-live__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-live__step-description {
  font-size: 1em;
  color: #555555;
}

/* FAQ Section */
.page-live__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__faq-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #cccccc;
}

/* Call to Action Section */
.page-live__cta-section {
  text-align: center;
  background-color: #f0f0f0;
}

.page-live__cta-buttons .page-live__btn {
  margin: 15px;
}

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

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

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

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

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

  .page-live__hero-section {
    min-height: 450px;
  }

  .page-live__hero-buttons .page-live__btn {
    display: block;
    margin: 10px auto;
  }

  .page-live__introduction-section,
  .page-live__game-features-section,
  .page-live__game-types-section,
  .page-live__promotions-section,
  .page-live__security-section,
  .page-live__getting-started-section,
  .page-live__cta-section {
    padding: 60px 0;
  }

  .page-live__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-live__mobile-image {
    max-width: 100%;
    min-width: 200px; /* Ensure image is not too small */
    height: auto; /* Maintain aspect ratio */
  }

  .page-live__mobile-text .page-live__btn {
    margin: 10px auto;
    display: block;
  }

  /* Ensure all images in content area are responsive and not too small */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
  }

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

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

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

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

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

  .page-live__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}