.page-live {
  color: #ffffff; /* Light text for dark body background #0F141F */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  z-index: 1;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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: #FFD700;
  color: #1A202C;
}

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

.page-live__button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #333d4d;
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-live__about-section,
.page-live__games-section,
.page-live__why-choose-section,
.page-live__get-started-section,
.page-live__cta-section {
  padding: 60px 0;
  background-color: #1A202C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__feature-grid,
.page-live__game-grid,
.page-live__steps-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-live__feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-live__feature-image,
.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-live__feature-title,
.page-live__game-title,
.page-live__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__feature-description,
.page-live__game-description,
.page-live__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-live__games-section .page-live__game-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.page-live__advantage-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-live__advantage-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-live__get-started-section .page-live__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-live__step-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.page-live__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #1A202C 0%, #333d4d 100%);
}

.page-live__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-live__paragraph {
    font-size: 1em;
  }
  .page-live__feature-grid,
  .page-live__game-grid,
  .page-live__steps-grid,
  .page-live__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__step-card {
    padding: 20px;
  }
  .page-live__feature-image,
  .page-live__game-image {
    height: auto;
    max-width: 100%;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__hero-image,
  .page-live__feature-image,
  .page-live__game-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}