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

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

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

.page-live__hero-container {
  position: relative;
  max-width: 1920px; /* Constrain hero image width */
  margin: 0 auto;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

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

.page-live__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-live__section-title {
  font-size: 2.8em;
  color: #1A2A4E;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live__features-section,
.page-live__games-section,
.page-live__promo-section,
.page-live__guide-section,
.page-live__responsible-gaming-section,
.page-live__cta-section {
  padding: 80px 0;
}

.page-live__features-section {
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.8em;
  color: #1A2A4E;
  margin-bottom: 15px;
}

.page-live__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-live__games-section {
  background-color: #ffffff;
}

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

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

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.8em;
  margin: 20px 0 10px;
  color: #FFD700;
}

.page-live__game-description {
  padding: 0 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A2A4E;
}

.page-live__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2A4E;
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A2A4E;
}

.page-live__button--small:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-live__button--text {
  color: #1A2A4E;
  text-decoration: underline;
  font-weight: normal;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.page-live__button--text:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-live__promo-section {
  background: linear-gradient(135deg, #1A2A4E, #3a4d77);
  color: #ffffff;
  text-align: center;
}

.page-live__promo-description {
  font-size: 1.2em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-live__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__guide-section {
  background-color: #f8f8f8;
}

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

.page-live__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-live__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A2A4E;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-live__step-title {
  font-size: 1.8em;
  color: #1A2A4E;
  margin-bottom: 15px;
}

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

.page-live__responsible-gaming-section {
  background-color: #e6eaf2;
  text-align: center;
}

.page-live__responsible-gaming-text {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #444444;
}

.page-live__cta-section {
  background: #1A2A4E;
  color: #ffffff;
  text-align: center;
}

.page-live__cta-description {
  font-size: 1.3em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

  .page-live__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 40px;
  }

  .page-live__hero-content {
    position: static;
    transform: none;
    padding: 20px;
  }

  .page-live__hero-title {
    font-size: 2.5em;
  }

  .page-live__hero-description {
    font-size: 1em;
  }

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

  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-live__features-section,
  .page-live__games-section,
  .page-live__promo-section,
  .page-live__guide-section,
  .page-live__responsible-gaming-section,
  .page-live__cta-section {
    padding: 60px 0;
  }

  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image {
    max-width: 100%;
    height: auto;
  }

  /* Critical for mobile overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }

  .page-live__section-title {
    font-size: 1.5em;
  }

  .page-live__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-live__promo-description,
  .page-live__responsible-gaming-text,
  .page-live__cta-description {
    font-size: 1em;
  }
}