.page-live {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.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.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  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: #1A202C;
  transform: translateY(-2px);
}

.page-live__info-section, .page-live__games-section, .page-live__legitimacy-section, .page-live__bonuses-section, .page-live__cta-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-live__info-section:nth-of-type(even), .page-live__games-section:nth-of-type(even), .page-live__legitimacy-section:nth-of-type(even), .page-live__bonuses-section:nth-of-type(even), .page-live__cta-section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-live__info-container, .page-live__games-container, .page-live__legitimacy-container, .page-live__bonuses-container, .page-live__cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #1A202C;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live__section-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__legitimacy-item, .page-live__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  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__bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-image, .page-live__game-image, .page-live__bonus-image {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__legitimacy-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__feature-title, .page-live__game-title, .page-live__legitimacy-subtitle, .page-live__bonus-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-live__feature-text, .page-live__game-text, .page-live__legitimacy-text, .page-live__bonus-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__game-card .page-live__button {
  margin-top: 15px;
}

.page-live__bonuses-action {
  margin-top: 50px;
}

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

/* Responsive adjustments */
@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: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px);
  }

  .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__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

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

  .page-live__section-description {
    font-size: 0.95em;
  }

  .page-live__features-grid, .page-live__game-cards-grid, .page-live__legitimacy-grid, .page-live__bonuses-grid {
    grid-template-columns: 1fr;
  }

  .page-live__info-section, .page-live__games-section, .page-live__legitimacy-section, .page-live__bonuses-section, .page-live__cta-section {
    padding: 60px 15px;
  }

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

  .page-live__feature-card img, .page-live__game-card img, .page-live__legitimacy-item img, .page-live__bonus-card img {
    max-width: 100%;
    height: auto;
  }

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

@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.6em;
  }

  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}