/* style/live.css */
.page-live {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is #000000 from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live__hero-section {
  position: relative;
  padding: 0;
  text-align: center;
  overflow: hidden;
  min-height: 500px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 10px;
  color: #ffffff;
}

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

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

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__btn--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

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

.page-live__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-live__btn--tertiary {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live__btn--tertiary:hover {
  background-color: rgba(252, 188, 69, 0.2);
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-live__btn--small:hover {
  background-color: #e0a53a;
}

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

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-live__games-showcase,
.page-live__why-choose,
.page-live__promotions,
.page-live__how-to-start,
.page-live__responsible-gaming,
.page-live__faq,
.page-live__cta-bottom {
  padding: 60px 0;
}

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

.page-live__game-card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-live__game-text {
  font-size: 1em;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-live__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-live__feature-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
}

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

.page-live__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-live__promo-text {
  font-size: 1em;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-live__step-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
  display: block;
}

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

.page-live__step-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-live__responsible-gaming {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 80px 20px;
  margin: 60px 0;
}

.page-live__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-live__cta-bottom {
  text-align: center;
  padding: 80px 0;
  background: rgba(252, 188, 69, 0.1); /* Light background for final CTA */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
  }
  .page-live__hero-content {
    padding: 30px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-live__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__games-showcase,
  .page-live__why-choose,
  .page-live__promotions,
  .page-live__how-to-start,
  .page-live__responsible-gaming,
  .page-live__faq,
  .page-live__cta-bottom {
    padding: 40px 0;
  }
  .page-live__game-grid,
  .page-live__feature-grid,
  .page-live__promo-cards,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image,
  .page-live__feature-icon,
  .page-live__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-size for mobile */
    min-height: 200px;
  }
  .page-live__responsible-gaming {
    padding: 60px 20px;
  }
}

@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.8em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer {
    font-size: 0.9em;
  }
}