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

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

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

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10;
  text-align: center;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

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

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

.page-live__features-section,
.page-live__games-showcase,
.page-live__promo-section,
.page-live__mobile-section,
.page-live__security-section,
.page-live__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-live__feature-card,
.page-live__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-live__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__card-title a:hover {
  color: #FCBC45;
}

.page-live__card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-live__button--view-details {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.page-live__button--view-details:hover {
  background-color: #e0a030;
}

.page-live__promo-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-live__promo-details {
  background-color: #000000;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.page-live__promo-subtitle {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__promo-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-live__button--claim-bonus {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-live__button--claim-bonus:hover {
  background-color: #e0a030;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
}

.page-live__mobile-text {
  flex: 1;
}

.page-live__mobile-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-live__mobile-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-live__mobile-text-content {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-live__button--download-app {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
}

.page-live__button--download-app:hover {
  background-color: #333333;
}

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

.page-live__security-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-live__security-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__security-subtitle {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live__security-text {
  font-size: 1em;
  color: #666666;
}

.page-live__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__cta-section .page-live__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-live__button--primary:hover {
  background-color: #e0a030;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-text {
    order: 2;
  }
  .page-live__mobile-image {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-content {
    width: 90%;
    padding: 20px;
  }
  .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%;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__feature-image,
  .page-live__game-image {
    height: 200px;
  }
  .page-live__feature-card,
  .page-live__game-card {
    margin-bottom: 20px;
  }
  .page-live__promo-subtitle,
  .page-live__mobile-subtitle {
    font-size: 1.5em;
  }
  .page-live__promo-text,
  .page-live__mobile-text-content {
    font-size: 0.95em;
  }

  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content section images are not too small */
  .page-live__features-grid img,
  .page-live__game-cards-grid img,
  .page-live__promo-image,
  .page-live__mobile-image,
  .page-live__security-grid img {
    min-width: 200px;
    min- /* Adjust min-height as needed, but at least 200px width */
  }
  .page-live__security-icon {
    width: 150px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__promo-details {
    padding: 20px;
  }
  .page-live__button--primary {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}