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

.page-live__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.page-live__section--dark {
  background-color: #003366; /* Royal Blue */
  color: #ffffff;
}

.page-live__section--light {
  background-color: #f5f5f5;
  color: #333333;
}

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

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Royal Blue */
  border: 2px solid #FFD700;
}

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

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

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

.page-live__button--tertiary {
  background-color: #003366; /* Royal Blue */
  color: #ffffff;
  border: 2px solid #003366;
}

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

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

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #003366; /* Royal Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 15px auto 0;
}

.page-live__section--dark .page-live__section-title {
  color: #ffffff;
}

.page-live__section--dark .page-live__section-title::after {
  background-color: #FFD700;
}

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

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-live__game-title {
  font-size: 1.8em;
  color: #003366;
  margin: 20px 15px 10px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button {
  margin: 0 15px 20px;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-live__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-live__cta-section {
  background-color: #FFD700; /* Gold */
  color: #003366;
  text-align: center;
  padding: 80px 20px;
}

.page-live__cta-content .page-live__section-title {
  color: #003366;
}

.page-live__cta-content .page-live__section-title::after {
  background-color: #003366;
}

.page-live__cta-content .page-live__section-text {
  color: #003366;
  margin-bottom: 40px;
}

.page-live__cta-content .page-live__button {
  margin: 0 10px;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-live__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-live__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-live__faq-answer a:hover {
  color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
  }
  .page-live__hero-content {
    padding: 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--large {
    width: 100%;
    padding: 15px 25px;
  }
  .page-live__section {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live__section-text {
    font-size: 0.95em;
  }
  .page-live__game-grid, .page-live__features-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto; /* Ensures images scale down */
  }
  .page-live__game-card, .page-live__feature-item, .page-live__faq-item {
    padding: 20px;
  }
  .page-live__game-title, .page-live__feature-title, .page-live__faq-question {
    font-size: 1.4em;
  }
  .page-live__game-description, .page-live__feature-description, .page-live__faq-answer {
    font-size: 0.9em;
  }

  /* Critical mobile responsiveness for images to prevent overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}