.page-live {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #1A1A2E; /* Secondary color for background */
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

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

.page-live__hero-button,
.page-live__action-button,
.page-live__game-button,
.page-live__promo-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #1A1A2E; /* Dark text on primary button */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-live__hero-button:hover,
.page-live__action-button:hover,
.page-live__game-button:hover,
.page-live__promo-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live__action-button--center {
  display: block;
  margin: 40px auto 0;
  text-align: center;
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.page-live__introduction-section,
.page-live__why-choose-section,
.page-live__games-section,
.page-live__promotions-section,
.page-live__mobile-section,
.page-live__security-section,
.page-live__getting-started-section,
.page-live__support-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter black for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-live__introduction-section {
  background-color: #1A1A2E;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-live__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-live__text-small {
  font-size: 0.95em;
  margin-top: 20px;
  color: #cccccc;
}

.page-live__text-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live__features-grid,
.page-live__game-cards-grid,
.page-live__promo-cards-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__feature-card,
.page-live__game-card,
.page-live__promo-card,
.page-live__step-card {
  background-color: rgba(255, 215, 0, 0.05); /* Light gold transparent background */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 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__promo-card:hover,
.page-live__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.page-live__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-live__game-button,
.page-live__promo-button {
  margin-top: 25px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-live__mobile-layout,
.page-live__security-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-live__mobile-text-content,
.page-live__security-text-content {
  flex: 1;
}

.page-live__mobile-image-wrapper,
.page-live__security-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live__mobile-image,
.page-live__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-live__step-card {
  position: relative;
  padding-top: 60px;
}

.page-live__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Primary color */
  color: #1A1A2E;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  border: 3px solid #1A1A2E;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__mobile-layout,
  .page-live__security-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-image-wrapper,
  .page-live__security-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-button,
  .page-live__action-button,
  .page-live__game-button,
  .page-live__promo-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid,
  .page-live__game-cards-grid,
  .page-live__promo-cards-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__mobile-image,
  .page-live__security-image,
  .page-live__hero-image,
  .page-live__game-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__section-text {
    font-size: 0.9em;
  }
  .page-live__hero-button,
  .page-live__action-button,
  .page-live__game-button,
  .page-live__promo-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-live__content-wrapper {
    padding: 0 15px;
  }
}