.page-live {
  color: #ffffff; /* Light text on dark body background */
}

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

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

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

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 900px;
  z-index: 10;
  padding: 20px;
}

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

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

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

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

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

.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__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-live__section {
  padding: 80px 20px;
  text-align: center;
}

.page-live__section--features, .page-live__section--how-to-play, .page-live__section--security {
  background-color: #1A202C;
}

.page-live__section--games, .page-live__section--bonuses, .page-live__section--faq {
  background-color: #0F131C;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-live__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-live__feature-grid, .page-live__game-grid, .page-live__bonus-grid, .page-live__steps-grid, .page-live__security-features, .page-live__faq-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__bonus-card, .page-live__step-card, .page-live__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  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, .page-live__step-card:hover, .page-live__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__feature-icon, .page-live__game-image, .page-live__bonus-image, .page-live__security-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-title, .page-live__security-subtitle, .page-live__faq-question {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__feature-text, .page-live__game-text, .page-live__bonus-text, .page-live__step-text, .page-live__security-text, .page-live__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

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

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

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

.page-live__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-live__step-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-live__cta-bottom {
  margin-top: 60px;
}

.page-live__section-description--bottom {
  margin-top: 20px;
  margin-bottom: 60px;
}

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

.page-live__faq-grid {
  grid-template-columns: 1fr;
  text-align: left;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
}

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

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

/* Responsive adjustments */
@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: 40px 15px; /* Adjust padding for mobile */
  }
  .page-live__hero-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
  .page-live__hero-content {
    position: static;
    transform: none;
    padding: 20px 0;
  }
  .page-live__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-live__section {
    padding: 60px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__feature-grid, .page-live__game-grid, .page-live__bonus-grid, .page-live__steps-grid, .page-live__security-features, .page-live__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__bonus-image, .page-live__security-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  .page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-title, .page-live__security-subtitle, .page-live__faq-question {
    font-size: 1.3em;
  }
  .page-live__feature-text, .page-live__game-text, .page-live__bonus-text, .page-live__step-text, .page-live__security-text, .page-live__faq-answer {
    font-size: 0.9em;
  }
  .page-live__cta-bottom {
    margin-top: 40px;
  }
  .page-live__faq-item {
    padding: 20px;
  }
  /* Mobile content area image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button {
    font-size: 1em;
  }
  .page-live__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}