.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero content area */
}

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit hero image height */
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #FFFFFF;
  max-width: 90%;
}

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

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

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

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

.page-live__about-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-live__image {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-live__image--about {
  max-width: 800px;
}

.page-live__games-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__game-text {
  font-size: 1em;
  padding: 0 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

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

.page-live__more-games-action {
  text-align: center;
  margin-top: 50px;
}

.page-live__button--secondary {
  background-color: #555555;
  color: #FFFFFF;
  border: 2px solid #555555;
}

.page-live__button--secondary:hover {
  background-color: transparent;
  color: #555555;
}

.page-live__why-choose-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-live__why-choose-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  color: #333333;
}

.page-live__why-choose-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-live__why-choose-text li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__list-icon {
  color: #FCBC45;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-live__image--why-choose {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-live__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
  text-align: center;
}

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

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

.page-live__responsible-gaming-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

@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__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-live__why-choose-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__image--why-choose {
    min-width: unset;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .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: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__image {
    max-width: 90%;
  }
  .page-live__why-choose-text {
    min-width: unset;
  }
  .page-live__why-choose-text ul {
    text-align: left;
    padding-left: 20px;
  }
  .page-live__cta-section {
    padding: 60px 0;
  }

  /* IMPORTANT: Ensure all images within .page-live are responsive on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content images are not too small */
.page-live__hero-image, .page-live__image, .page-live__game-image {
  min-width: 200px;
  min-height: 200px;
}