/* style/live.css */
.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  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; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px; /* Spacing for sections */
  font-weight: bold;
}

.page-live__text-content {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  font-size: 1.05em;
  cursor: pointer;
}

.page-live__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
  border: 2px solid #000000;
}

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

.page-live__button--login,
.page-live__button--play-now,
.page-live__button--claim,
.page-live__button--learn-more,
.page-live__button--download {
  background-color: #FCBC45; /* Custom color for Login/CTA */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover,
.page-live__button--play-now:hover,
.page-live__button--claim:hover,
.page-live__button--learn-more:hover,
.page-live__button--download:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-live__button--view-all,
.page-live__button--responsible-gaming {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-live__button--view-all:hover,
.page-live__button--responsible-gaming:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF; /* White text over dark image */
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

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

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

.page-live__hero-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

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

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

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

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

.page-live__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

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

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

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

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

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

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

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

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

.page-live__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

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

/* Bottom CTA Section */
.page-live__bottom-cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for strong CTA */
  color: #FFFFFF;
  text-align: center;
}

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

.page-live__bottom-cta-section .page-live__text-content {
  color: #e0e0e0;
}

.page-live__bottom-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* 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-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px);
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 8px;
  }
  .page-live__games-grid,
  .page-live__features-grid,
  .page-live__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__text-content {
    font-size: 1em;
  }
  /* Mobile content image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum size for content images */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-cta-buttons {
    flex-direction: column;
  }
  .page-live__button {
    width: calc(100% - 20px);
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-image,
  .page-live__promo-image {
    height: auto; /* Allow image to adapt height */
    min-height: 200px; /* Ensure minimum size */
  }
}