.page-live {
  color: #ffffff; /* Text color for dark 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__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-live__section-text--small a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A1931; /* Main color for text */
}

.page-live__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-live__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-live__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.page-live__btn--link:hover {
  text-decoration: underline;
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #0A1931;
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh; /* Minimum height for hero */
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-live__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.page-live__intro-section {
  padding: 80px 0;
  background-color: #0A1931; /* Main brand color for sections */
}

.page-live__features-section {
  padding: 80px 0;
  background-color: #1a2b45; /* Body background color */
}

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

.page-live__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-5px);
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-live__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-live__how-to-start-section {
  padding: 80px 0;
  background-color: #0A1931;
}

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

.page-live__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

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

.page-live__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__popular-games-section {
  padding: 80px 0;
  background-color: #1a2b45;
}

.page-live__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live__game-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-live__mobile-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-live__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

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

.page-live__mobile-text-content .page-live__section-title,
.page-live__mobile-text-content .page-live__section-text {
  text-align: left;
}

.page-live__mobile-text-content .page-live__btn {
  margin-top: 30px;
}

.page-live__security-section {
  padding: 80px 0;
  background-color: #1a2b45;
}

.page-live__promotions-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-live__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-live__promo-card {
  background-color: rgba(255, 215, 0, 0.15); /* Semi-transparent accent color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__promo-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-live__faq-section {
  padding: 80px 0;
  background-color: #1a2b45;
}

.page-live__faq-items {
  margin-top: 50px;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
}

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

.page-live__faq-answer {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-live__faq-cta .page-live__section-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-live__faq-cta .page-live__section-text a:hover {
  text-decoration: underline;
}

.page-live__cta-section {
  padding: 100px 0;
  background-color: #0A1931;
  text-align: center;
}

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

.page-live__cta-section .page-live__section-text {
  margin-bottom: 40px;
}

.page-live__btn--hero {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #0A1931;
}

.page-live__btn--hero:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-text-content .page-live__section-title,
  .page-live__mobile-text-content .page-live__section-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 60vh;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn--secondary {
    margin-left: 0;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-live__intro-section,
  .page-live__features-section,
  .page-live__how-to-start-section,
  .page-live__popular-games-section,
  .page-live__mobile-section,
  .page-live__security-section,
  .page-live__promotions-section,
  .page-live__faq-section,
  .page-live__cta-section {
    padding: 60px 0;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__mobile-text-content .page-live__btn {
    margin-top: 20px;
  }
  .page-live__features-grid,
  .page-live__steps-grid,
  .page-live__games-grid,
  .page-live__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-live__btn--hero {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__feature-card,
  .page-live__step-card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__faq-item {
    padding: 20px;
  }
  .page-live__feature-title,
  .page-live__step-title,
  .page-live__game-title,
  .page-live__promo-title,
  .page-live__faq-question {
    font-size: 1.2em;
  }
}