.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.page-live__section--dark-background {
  background-color: #007bff; /* Primary blue background */
  color: #ffffff; /* Light text for dark background */
}

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

.page-live__hero-section {
  background-color: #007bff; /* Primary blue background for hero */
  color: #ffffff;
  padding: 80px 20px 60px; /* Adjusted padding for hero */
  position: relative;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-live__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

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

.page-live__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #007bff;
}

.page-live__section-title--light-text {
  color: #ffc107;
}

.page-live__text-content {
  text-align: left;
  font-size: 1.1em;
}

.page-live__text-content p {
  margin-bottom: 1em;
}

.page-live__text-content--light-text {
  color: #ffffff;
}

.page-live__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-live__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-live__content-grid--reverse {
  grid-template-columns: 1fr;
}

.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: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
}

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-live__game-description {
  font-size: 0.95em;
  flex-grow: 1;
}

.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;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary blue for text */
}

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

.page-live__button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.page-live__button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
  transform: translateY(-2px);
}

.page-live__actions-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-live__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
  cursor: pointer;
  display: block;
  padding-right: 30px;
  position: relative;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-live__faq-item[open] .page-live__faq-question::after {
  content: '-';
}

.page-live__faq-answer {
  font-size: 1em;
  margin-top: 15px;
  padding-left: 10px;
  border-left: 3px solid #ffc107;
}

.page-live__final-cta-container {
  max-width: 900px;
}

.page-live__final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-live__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-live__content-grid--reverse {
    grid-template-areas: "image text";
  }
  .page-live__content-grid--reverse .page-live__text-content {
    grid-area: text;
  }
  .page-live__content-grid--reverse .page-live__image-wrapper {
    grid-area: image;
  }
  .page-live__hero-title {
    font-size: 4em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions,
  .page-live__actions-bottom,
  .page-live__final-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__game-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure content area images are not smaller than 200px */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}