.page-live {
  color: #333333; /* Dark text for default light body background */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #0A2463; /* Main color as hero background */
  color: #ffffff;
  text-align: center;
  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;
  padding: 40px 20px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtly blend image with background color */
  z-index: 0;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

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

.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: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-live__button--primary {
  background-color: #E3B505; /* Auxiliary color */
  color: #0A2463; /* Main color */
}

.page-live__button--primary:hover {
  background-color: #f5db9c; /* Lighter shade for hover */
  transform: translateY(-2px);
}

.page-live__button--secondary {
  background-color: transparent;
  color: #E3B505; /* Auxiliary color */
  border: 2px solid #E3B505;
}

.page-live__button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

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

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

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

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

.page-live__about-section, .page-live__why-choose-section, .page-live__popular-games-section, .page-live__how-to-start-section, .page-live__promotions-section, .page-live__security-section, .page-live__mobile-app-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

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

.page-live__section-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  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(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-image, .page-live__game-image, .page-live__promo-image {
  width: 100%;
  height: 200px; /* Enforce minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-live__feature-link {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-live__feature-link:hover {
  color: #0A2463;
}

.page-live__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-live__how-to-start-section {
  background-color: #f0f5f9;
}

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

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

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

.page-live__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-live__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-live__security-item:hover {
  transform: translateY(-5px);
}

.page-live__security-heading {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-live__security-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-live__security-link {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
}

.page-live__security-link:hover {
  color: #0A2463;
}

.page-live__mobile-app-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__mobile-app-section .page-live__section-title, .page-live__mobile-app-section .page-live__section-intro {
  color: #ffffff;
}

.page-live__mobile-app-section .page-live__section-title::after {
  background-color: #E3B505;
}

.page-live__app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-live__app-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-live__app-features {
  max-width: 500px;
  text-align: left;
}

.page-live__app-subtitle {
  font-size: 1.8em;
  color: #E3B505;
  margin-bottom: 20px;
}

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

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

.page-live__app-list-item::before {
  content: '✔';
  color: #E3B505;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-live__cta-section {
  background-color: #E3B505;
  color: #0A2463;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2463;
}

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

.page-live__cta-section .page-live__button--primary {
  background-color: #0A2463;
  color: #E3B505;
}

.page-live__cta-section .page-live__button--primary:hover {
  background-color: #333333;
  color: #E3B505;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    padding: 30px 15px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__promos-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__app-features {
    text-align: center;
  }
  .page-live__app-list-item {
    padding-left: 0;
  }
  .page-live__app-list-item::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  /* Ensure images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__app-image {
    max-width: 250px;
  }
  .page-live__hero-image {
    height: 100%; /* Ensure hero image covers its container */
  }
  .page-live__feature-image, .page-live__game-image, .page-live__promo-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}