.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-live__hero-section {
  background-color: #0d0d0d; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

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

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  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;
  color: #f0f0f0;
}

.page-live__hero-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-live__hero-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

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

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

.page-live__sub-section-title {
  font-size: 1.8em;
  color: #007bff;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-live__section-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #333333;
}

.page-live__button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.page-live__button:hover {
  background-color: #e0a800;
}

.page-live__introduction-section, .page-live__games-showcase, .page-live__why-choose-us, .page-live__getting-started, .page-live__tips-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__introduction-section {
  background-color: #f9f9f9;
  text-align: center;
}

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

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

.page-live__game-card {
  background-color: #f0f8ff; /* Light blue background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #007bff;
}

.page-live__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 15px 10px;
}

.page-live__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-live__card-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 15px 20px;
}

.page-live__card-button:hover {
  background-color: #e0a800;
}

.page-live__other-games {
  margin-top: 60px;
  text-align: center;
  background-color: #f0f8ff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 123, 255, 0.1);
}

.page-live__why-choose-us {
  background-color: #e6f2ff; /* Light blue background */
}

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

.page-live__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

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

.page-live__feature-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-live__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live__feature-link {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-live__feature-link:hover {
  background-color: #0056b3;
}

.page-live__getting-started {
  background-color: #ffffff;
}

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

.page-live__step-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-number {
  background-color: #ffc107;
  color: #333333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.4);
}

.page-live__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-live__step-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-live__step-button:hover {
  background-color: #0056b3;
}

.page-live__tips-section {
  background-color: #f9f9f9;
}

.page-live__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live__tip-item {
  background-color: #ffffff;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-live__tip-item strong {
  color: #007bff;
}

.page-live__tip-link {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-live__tip-link:hover {
  color: #0056b3;
}

.page-live__cta-section {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-live__cta-section .page-live__section-title {
  color: #ffc107;
}

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

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

.page-live__button--primary {
  background-color: #ffc107;
  color: #333333;
  padding: 15px 30px;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-live__button--primary:hover {
  background-color: #e0a800;
}

.page-live__button--secondary {
  background-color: #ffffff;
  color: #007bff;
  padding: 15px 30px;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.page-live__button--secondary:hover {
  background-color: #e6e6e6;
  color: #0056b3;
}

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__sub-section-title {
    font-size: 1.5em;
  }
  .page-live__game-cards, .page-live__features-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__feature-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button, .page-live__hero-button, .page-live__button--primary, .page-live__button--secondary {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-live__tips-list {
    padding-left: 0;
  }
  .page-live__tip-item {
    font-size: 1em;
    padding: 15px;
  }
}