.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-live__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-live__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, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

.page-live__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-live__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-live__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-live__features-section,
.page-live__games-section,
.page-live__tech-section,
.page-live__promotions-section,
.page-live__getting-started-section,
.page-live__support-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live__feature-card,
.page-live__game-card,
.page-live__promo-card,
.page-live__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  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__promo-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-live__button--play,
.page-live__button--claim,
.page-live__button--view,
.page-live__button--learn,
.page-live__button--register-step,
.page-live__button--deposit-step,
.page-live__button--play-step,
.page-live__button--contact,
.page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  width: fit-content;
  margin: 0 auto;
}

.page-live__button--play:hover,
.page-live__button--claim:hover,
.page-live__button--view:hover,
.page-live__button--learn:hover,
.page-live__button--register-step:hover,
.page-live__button--deposit-step:hover,
.page-live__button--play-step:hover,
.page-live__button--contact:hover,
.page-live__button--download:hover {
  background-color: #000000;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-live__tech-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__tech-section .page-live__section-title,
.page-live__tech-section .page-live__section-description {
  color: #FFFFFF;
}

.page-live__tech-section .page-live__section-description {
  color: #f0f0f0;
}

.page-live__tech-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__tech-content {
  flex: 1;
  min-width: 300px;
}

.page-live__tech-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-live__tech-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-live__tech-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-live__tech-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-live__tech-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-live__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-live__contact-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

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

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

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

  .page-live__tech-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 20px;
  }

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

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

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

  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 20px;
  }

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

  .page-live__features-section,
  .page-live__games-section,
  .page-live__tech-section,
  .page-live__promotions-section,
  .page-live__getting-started-section,
  .page-live__support-section {
    padding: 40px 0;
  }

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

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

  .page-live__tech-image {
    max-width: 100%;
    height: auto;
  }

  .page-live__hero-image img,
  .page-live__features-grid img,
  .page-live__games-grid img,
  .page-live__promotions-grid img,
  .page-live__tech-image,
  .page-live__getting-started-section img,
  .page-live__support-section img {
    max-width: 100%;
    height: auto;
  }

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

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

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

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

  .page-live__button {
    width: 100%;
    max-width: 250px;
  }

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

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