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

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

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

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  box-sizing: border-box;
  z-index: 1;
}

.page-live__hero-content {
  background-color: rgba(0, 0, 128, 0.85); /* Midnight blue with transparency */
  padding: 30px;
  border-radius: 10px;
  color: #ffffff; /* White text on dark background */
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Midnight blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-live__cta-button:hover {
  background-color: #e6c200;
  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: #000080; /* Midnight blue for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-live__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__image-centered {
  display: block;
  margin: 30px auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-live__game-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-live__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-live__game-card-title {
  font-size: 1.8em;
  color: #000080;
  padding: 15px 20px 10px;
  font-weight: 600;
}

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

.page-live__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  margin: 0 20px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-live__game-card-button:hover {
  background-color: #e6c200;
}

.page-live__text-link {
  color: #000080;
  text-decoration: underline;
  font-weight: 600;
}

.page-live__text-link:hover {
  color: #FFD700;
}

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

.page-live__steps-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-live__steps-list li strong {
  color: #000080;
}

.page-live__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-live__cta-button--register,
.page-live__cta-button--login {
  margin: 0 15px;
}

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

.page-live__feature-list li {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #000080;
}

.page-live__feature-list li strong {
  color: #000080;
}

.page-live__detail-card {
  background-color: #000080;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-live__detail-card-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for detail card title */
}

.page-live__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-live__detail-card-title a:hover {
  text-decoration: underline;
}

.page-live__detail-card-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-live__detail-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-live__detail-card-button:hover {
  background-color: #e6c200;
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

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

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__game-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding: 30px 15px;
  }
  .page-live__hero-content {
    padding: 25px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__content-wrapper {
    padding: 30px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }
  .page-live__text-block {
    font-size: 1em;
  }
  .page-live__game-card-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image {
    height: 200px;
  }
  .page-live__game-card-title {
    font-size: 1.6em;
  }
  .page-live__game-card-description {
    font-size: 0.95em;
  }
  .page-live__feature-list {
    grid-template-columns: 1fr;
  }
  .page-live__detail-card-title {
    font-size: 1.8em;
  }
  .page-live__detail-card-description {
    font-size: 1em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__button-group {
    flex-direction: column;
  }
  .page-live__cta-button--register,
  .page-live__cta-button--login {
    margin: 10px 0;
    width: 100%;
  }

  /* 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: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
}