.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  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: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
}

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

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-live__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-live__hero-button:hover {
  background-color: #e0a53c;
}

/* About Section */
.page-live__about-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

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

.page-live__feature-text {
  color: #666666;
}

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

.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: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Ensure images are not small */
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #000000;
  padding: 15px 20px 0;
}

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

.page-live__game-button {
  display: block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

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

/* Promo Section */
.page-live__promo-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live__promo-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 40px;
}

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

.page-live__promo-content {
  padding: 30px;
  flex: 1;
}

.page-live__promo-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__promo-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-live__promo-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-live__promo-button:hover {
  background-color: #e0a53c;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-live__mobile-image {
  width: 100%;
  max-width: 400px; /* Ensuring image is not small */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.page-live__mobile-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__mobile-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-live__mobile-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-live__mobile-button:hover {
  background-color: #e0a53c;
}

/* CTA Section */
.page-live__cta-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

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

.page-live__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-live__cta-button:hover {
  background-color: #e0a53c;
}

/* 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: 2em;
  }
  .page-live__promo-card {
    flex-direction: column;
  }
  .page-live__promo-image {
    height: 300px;
  }
  .page-live__mobile-content {
    flex-direction: column;
  }
  .page-live__mobile-text-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .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 {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__feature-item, .page-live__game-card, .page-live__promo-card, .page-live__mobile-content {
    margin-top: 20px;
  }
  .page-live__promo-image {
    height: 250px;
  }
  .page-live__mobile-image {
    max-width: 300px;
  }
  .page-live__mobile-title {
    font-size: 1.8em;
  }
  .page-live__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Ensure content area images are responsive and don't overflow */
  .page-live__hero-image,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    max-width: 100%;
    overflow-x: hidden;
  }
}