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

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let background color show and text be readable */
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C; /* 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-cta {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__hero-cta:hover {
  background-color: #f0c55d;
  transform: translateY(-3px);
}

.page-live__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-live__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

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

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B23C;
  border-radius: 2px;
}

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

.page-live__image-grid {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-live__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

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

.page-live__game-card {
  background-color: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  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: #0A2463;
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

.page-live__game-card-description {
  font-size: 1em;
  line-height: 1.7;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-live__game-subtitle {
  font-size: 2em;
  color: #0A2463;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-live__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__cta-button:hover {
  background-color: #f0c55d;
  transform: translateY(-3px);
}

.page-live__mobile-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-live__mobile-text-content {
  flex: 1;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.page-live__feature-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

.page-live__feature-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__feature-cta {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__feature-cta:hover {
  background-color: #1a3a7d;
  transform: translateY(-2px);
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-live__step-item {
  background-color: #f4f4f4;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #E3B23C;
}

.page-live__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-live__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-live__step-description a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-live__step-description a:hover {
  text-decoration: underline;
}

.page-live__cta-button--large {
  padding: 18px 50px;
  font-size: 1.3em;
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__cta-button--large:hover {
  background-color: #1a3a7d;
}

.page-live__responsible-gaming-section a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-live__responsible-gaming-section a:hover {
  text-decoration: underline;
}

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

.page-live__final-cta-section .page-live__section-title {
  color: #E3B23C;
}

.page-live__final-cta-section .page-live__section-title::after {
  background-color: #ffffff;
}

.page-live__final-cta-section .page-live__section-text {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-live__cta-button--hero {
  background-color: #E3B23C;
  color: #0A2463;
  padding: 20px 60px;
  font-size: 1.4em;
}

.page-live__cta-button--hero:hover {
  background-color: #f0c55d;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@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__game-card-title {
    font-size: 1.5em;
  }

  .page-live__feature-title {
    font-size: 1.4em;
  }

  .page-live__mobile-flex {
    flex-direction: column;
  }

  .page-live__mobile-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile offset */
  }

  .page-live__hero-title {
    font-size: 2.2em;
  }

  .page-live__hero-description {
    font-size: 1em;
  }

  .page-live__hero-cta {
    padding: 12px 30px;
    font-size: 1em;
  }

  .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-card-wrapper {
    grid-template-columns: 1fr;
  }

  .page-live__game-card-image {
    height: 200px;
  }

  .page-live__game-card-title {
    font-size: 1.3em;
  }

  .page-live__game-subtitle {
    font-size: 1.6em;
  }

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

  .page-live__feature-title {
    font-size: 1.3em;
  }

  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-live__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-live__final-cta-section {
    padding: 60px 15px;
  }

  .page-live__cta-button--hero {
    padding: 15px 40px;
    font-size: 1.1em;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}