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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  color: #FFFFFF;
  padding: 20px;
  box-sizing: border-box;
}

.page-live__hero-title {
  font-size: clamp(2.5em, 5vw, 4.5em);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

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

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

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

.page-live__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-live__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

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

.page-live__section-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-live__section-intro {
  font-size: clamp(1em, 1.5vw, 1.1em);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555555;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card,
.page-live__promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  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__step-card:hover,
.page-live__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-live__feature-icon,
.page-live__step-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__feature-description,
.page-live__game-description,
.page-live__step-description,
.page-live__promo-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__game-button,
.page-live__step-button,
.page-live__promo-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-live__game-button:hover,
.page-live__step-button:hover,
.page-live__promo-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-live__promotions-callout {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-live__promotions-callout a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

.page-live__promotions-callout a:hover {
  text-decoration: underline;
}

.page-live__responsible-gaming {
  background-color: #f9f9f9;
}

.page-live__responsible-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
}

.page-live__responsible-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  line-height: 1.5;
  color: #444444;
}

.page-live__responsible-item strong {
  color: #000000;
}

.page-live__responsible-footer {
  text-align: center;
  font-size: 1em;
  color: #555555;
}

.page-live__responsible-footer a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

.page-live__responsible-footer a:hover {
  text-decoration: underline;
}

.page-live__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  padding: 25px;
}

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

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

.page-live__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-live__call-to-action .page-live__section-title {
  color: #FFFFFF;
}

.page-live__call-to-action .page-live__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

.page-live__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__cta-button--register:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-live__cta-button--explore {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__cta-button--explore:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: clamp(2em, 4.5vw, 3.5em);
  }

  .page-live__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px); /* Mobile header offset */
  }

  .page-live__hero-content {
    position: relative;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 20px;
    border-radius: 12px;
    margin: 20px;
    height: auto;
    display: block; /* Allow content to flow naturally */
  }

  .page-live__hero-image {
    display: none; /* Hide hero image on smaller screens if content is overlaid */
  }

  .page-live__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-live__hero-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live__section {
    padding: 40px 15px;
  }

  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-live__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

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

  .page-live__game-image,
  .page-live__promo-image {
    height: 200px;
  }

  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title,
  .page-live__promo-title {
    font-size: 1.3em;
  }

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

  .page-live__cta-button {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-live img {
    max-width: 100%; /* Ensure all content images are responsive and don't overflow */
    height: auto; /* Maintain aspect ratio */
  }
}

@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__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}