.page-live {
  color: #333333; /* Dark text for light body background */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #000000; /* Primary color for hero background */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-live__button--register:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
  color: #000000;
}

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

.page-live__button--login:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
  color: #000000;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
}

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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
  color: #333333;
}

.page-live__intro-section, .page-live__features-section, .page-live__games-section, .page-live__why-play-section, .page-live__getting-started-section, .page-live__strategies-section, .page-live__cta-section {
  padding: 60px 0;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__strategy-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-live__feature-image, .page-live__game-image, .page-live__strategy-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__benefits-list, .page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live__benefit-item, .page-live__step-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

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

.page-live__benefit-description, .page-live__step-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #444444;
}

.page-live__benefit-description a, .page-live__step-description a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__benefit-description a:hover, .page-live__step-description a:hover {
  text-decoration: underline;
}

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

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

.page-live__cta-section .page-live__section-title::after {
  background-color: #FCBC45;
}

.page-live__cta-section .page-live__text-content {
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

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

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

  .page-live__feature-card, .page-live__game-card, .page-live__strategy-card {
    padding: 20px;
  }

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

  .page-live__benefit-title, .page-live__step-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-live__hero-content {
    max-width: 90%;
    padding: 20px;
  }

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

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

  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-live__text-content {
    font-size: 1em;
  }

  .page-live__features-grid, .page-live__games-grid, .page-live__strategies-grid {
    grid-template-columns: 1fr;
  }

  .page-live__feature-image, .page-live__game-image, .page-live__strategy-image {
    height: 200px; /* Ensure images are not too small */
    max-width: 100%;
  }

  .page-live__container {
    padding: 20px 15px;
  }

  .page-live__benefit-title, .page-live__step-title {
    font-size: 1.4em;
  }

  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__cta-section {
    padding: 60px 15px;
  }

  /* Ensure all images within .page-live are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size for content images */
    min-height: 200px;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__strategy-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

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

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