.page-live {
  color: #333333; /* Dark text for assumed light body background */
  background-color: var(--background-color, #FFFFFF);
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

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

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

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

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

.page-live__hero-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;
  border: none;
}

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

.page-live__hero-button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-live__hero-button--play {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__hero-button--play:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-live__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

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

.page-live__why-choose-section,
.page-live__games-list-section,
.page-live__exclusive-offers-section,
.page-live__get-started-section,
.page-live__responsible-gaming-section,
.page-live__faq-section,
.page-live__final-cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__feature-description,
.page-live__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-live__games-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page-live__game-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-live__game-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-live__game-title a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FCBC45;
}

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__game-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-live__game-button:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-live__exclusive-offers-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__offer-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
}

.page-live__offer-content .page-live__section-title {
  color: #FFFFFF;
}

.page-live__offer-content .page-live__section-description {
  color: #F0F0F0;
}

.page-live__offer-button {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__offer-button:hover {
  background-color: #E6A83E;
  transform: translateY(-3px);
}

.page-live__step-card {
  padding: 40px;
}

.page-live__step-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__step-button:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-live__responsible-gaming-section {
  background-color: #F5F5F5;
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
}

.page-live__responsible-gaming-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__responsible-gaming-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
}

.page-live__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

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

.page-live__final-cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
}

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

.page-live__final-cta-section .page-live__section-description {
  color: #F0F0F0;
}

.page-live__final-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-live__final-cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__final-cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__final-cta-button--register:hover {
  background-color: #E6A83E;
  transform: translateY(-3px);
}

.page-live__final-cta-button--download {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__final-cta-button--download:hover {
  background-color: #E0E0E0;
  transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    min-height: 60vh;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-cta-group,
  .page-live__final-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__hero-button,
  .page-live__offer-button,
  .page-live__responsible-gaming-button,
  .page-live__final-cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-live__why-choose-section,
  .page-live__games-list-section,
  .page-live__exclusive-offers-section,
  .page-live__get-started-section,
  .page-live__responsible-gaming-section,
  .page-live__faq-section,
  .page-live__final-cta-section {
    padding: 60px 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-live__feature-card,
  .page-live__game-card,
  .page-live__step-card {
    padding: 25px;
  }

  .page-live__feature-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px;
  }

  .page-live__game-image {
    height: 200px; /* Ensure minimum size */
  }

  .page-live__exclusive-offers-section {
    padding: 40px 20px;
  }

  .page-live__offer-image {
    max-height: 250px;
  }

  .page-live__faq-question {
    font-size: 1.1em;
  }

  /* IMPORTANT: Mobile content image sizing to prevent overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}