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

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

.page-live__hero-section {
  background: linear-gradient(135deg, #1A2B3C, #0d1e2f); /* Dark blue gradient background */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  opacity: 0.9;
}

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

.page-live__btn {
  display: inline-block;
  padding: 14px 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__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B3C; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #1A2B3C; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-live__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-live__text-block--center {
  text-align: center;
}

.page-live__text-block a {
  color: #1A2B3C;
  text-decoration: underline;
}

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

.page-live__about-section {
  background-color: #fcfcfc;
  padding: 60px 0;
}

.page-live__games-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 20px;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #1A2B3C;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #1A2B3C; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #1A2B3C;
}

.page-live__btn--small:hover {
  background-color: #0d1e2f;
  color: #ffffff;
  border-color: #0d1e2f;
}

.page-live__features-section {
  background-color: #fcfcfc;
  padding: 60px 0;
}

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

.page-live__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-live__feature-icon {
  width: 200px; /* Minimum 200px */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #1A2B3C;
  margin-bottom: 10px;
}

.page-live__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-live__promotions-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

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

.page-live__promo-card {
  background-color: #1A2B3C; /* Dark blue background */
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-8px);
}

.page-live__promo-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for promo titles */
  margin-bottom: 15px;
}

.page-live__promo-description {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-live__get-started-section {
  background-color: #fcfcfc;
  padding: 60px 0;
}

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

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-live__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700; /* Gold number background */
  color: #1A2B3C; /* Dark blue number text */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

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

.page-live__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__cta-section {
  background: linear-gradient(135deg, #FFD700, #e6c200); /* Gold gradient background */
  padding: 80px 0;
  text-align: center;
  color: #1A2B3C; /* Dark blue text */
}

.page-live__cta-section .page-live__section-title {
  color: #1A2B3C;
  margin-bottom: 15px;
}

.page-live__cta-section .page-live__section-subtitle {
  color: #333333;
  margin-bottom: 40px;
}

.page-live__btn--large {
  padding: 16px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #1A2B3C; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #1A2B3C;
}

.page-live__btn--large:hover {
  background-color: #0d1e2f;
  color: #ffffff;
  border-color: #0d1e2f;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 0;
  }
  .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__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-live__section-subtitle {
    font-size: 1em;
  }
  .page-live__text-block {
    font-size: 0.95em;
  }
  /* Ensure content images are responsive and do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-image, .page-live__feature-icon {
    width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum height for content images */
    object-fit: cover;
  }
  .page-live__hero-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live__game-grid, .page-live__features-grid, .page-live__promo-cards, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
}