.page-live {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
}

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

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

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

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

.page-live__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Deep Red */
  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;
  border: 2px solid #FFD700;
}

.page-live__hero-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000;
  transform: translateY(-3px);
  border-color: #8B0000;
}

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

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

.page-live__why-choose-section,
.page-live__games-section,
.page-live__promotions-section,
.page-live__get-started-section,
.page-live__responsible-gaming-section,
.page-live__faq-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  margin-bottom: 40px;
  border-radius: 10px;
}

.page-live__why-choose-section {
  background-color: rgba(139, 0, 0, 0.1); /* Slight red tint */
}

.page-live__features-grid,
.page-live__games-grid,
.page-live__promo-cards,
.page-live__faq-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

.page-live__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

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

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

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-live__game-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.4);
}

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #8B0000;
}

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

.page-live__game-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-live__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__game-button:hover {
  background-color: #8B0000;
  color: #FFD700;
}

.page-live__promo-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-live__promo-card {
  background-color: rgba(139, 0, 0, 0.2);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-live__promo-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #FFD700;
}

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

.page-live__promo-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-live__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-live__promo-button:hover {
  background-color: #8B0000;
  color: #FFD700;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-live__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

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

.page-live__step-button:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-live__responsible-gaming-section {
  text-align: center;
  background-color: rgba(255, 215, 0, 0.05); /* Gold tint */
}

.page-live__responsible-gaming-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-live__responsible-gaming-link:hover {
  color: #8B0000;
  border-color: #8B0000;
}

.page-live__faq-grid {
  grid-template-columns: 1fr;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 0, 0, 0.1);
}

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

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

.page-live__faq-link {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #8B0000;
  transition: color 0.3s ease, border-color 0.3s ease;
}

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

.page-live__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #8B0000;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-live__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-live__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffffff;
}

.page-live__cta-button:hover {
  background-color: #ffffff;
  color: #8B0000;
  transform: translateY(-5px);
  border-color: #FFD700;
}

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

@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: 1em;
  }
  .page-live__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-live__section-title,
  .page-live__cta-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-live__section-intro,
  .page-live__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promo-cards,
  .page-live__steps-list,
  .page-live__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 150px;
  }

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

  /* Ensure all content area images are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto; /* Important for preventing overflow */
    min-width: 200px; /* Minimum width for content images */
    min- /* Minimum height for content images */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__section-title,
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__promo-title,
  .page-live__step-title,
  .page-live__faq-question {
    font-size: 1.3em;
  }
  .page-live__hero-button,
  .page-live__game-button,
  .page-live__promo-button,
  .page-live__step-button,
  .page-live__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    min-width: 200px;
    min-height: 120px;
  }
}