.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #FFFFFF;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  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: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

/* Hero Section */
.page-live__hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: bold;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-live__hero-image {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-live__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__button--register:hover {
  background-color: #e0e0e0;
}

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--login:hover {
  background-color: #e6a73a;
}

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

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

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

.page-live__feature-card:hover {
  transform: translateY(-5px);
}

.page-live__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

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

.page-live__card-description {
  color: #666666;
}

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

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

.page-live__game-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-live__game-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--play:hover {
  background-color: #e6a73a;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__section-title,
.page-live__promotions-section .page-live__section-description {
  color: #FFFFFF;
}

.page-live__promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__promo-image {
  flex: 1 1 400px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-live__promo-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-live__promo-details {
  flex: 1 1 400px;
}

.page-live__promo-subtitle {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__promo-details p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--claim:hover {
  background-color: #e6a73a;
}

/* How to Play Section */
.page-live__how-to-play-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__steps-list li {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-number {
  font-size: 2.5em;
  color: #FCBC45;
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}

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

.page-live__steps-list p {
  color: #666666;
}

.page-live__how-to-play-actions {
  text-align: center;
  margin-top: 50px;
}

.page-live__button--register-play {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__button--register-play:hover {
  background-color: #333333;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 80px 0;
  background-color: #e0e0e0;
}

.page-live__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 30px;
}

.page-live__button--learn-more:hover {
  background-color: #333333;
}

/* Final CTA Section */
.page-live__final-cta-section {
  padding: 80px 0;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
}

.page-live__final-cta-section .page-live__section-title,
.page-live__final-cta-section .page-live__section-description {
  color: #000000;
}

.page-live__final-cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live__button--join-today {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__button--join-today:hover {
  background-color: #333333;
}

.page-live__button--login-play-now {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__button--login-play-now:hover {
  background-color: #e0e0e0;
}

/* 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: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    max-width: 300px;
  }
  .page-live__promo-content {
    flex-direction: column;
  }
  .page-live__promo-image {
    max-width: 100%;
  }
  .page-live__final-cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure images are responsive and not smaller than 200px */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size on mobile */
    min-height: 200px;
  }

  .page-live__feature-image, .page-live__game-image {
    height: auto; /* Allow height to adjust */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-live__hero-section,
  .page-live__features-section,
  .page-live__games-section,
  .page-live__promotions-section,
  .page-live__how-to-play-section,
  .page-live__responsible-gaming-section,
  .page-live__final-cta-section {
    padding: 40px 0;
  }
}