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

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0A2E36; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-live__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent for 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.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for CTA button */
  color: #0A2E36;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__section-title {
  font-size: 2.2em;
  color: #0A2E36;
  text-align: center;
  margin: 60px 20px 40px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-live__about-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.page-live__about-image {
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-live__about-text {
  width: 50%;
  font-size: 1.05em;
}

.page-live__about-text p {
  margin-bottom: 20px;
}

.page-live__games-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

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

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

.page-live__card-button {
  display: inline-block;
  background-color: #0A2E36;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

.page-live__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.4em;
  color: #0A2E36;
  margin-bottom: 10px;
}

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

.page-live__promo-section {
  background-color: #0A2E36;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-live__promo-section .page-live__section-title {
  color: #FFD700;
}

.page-live__promo-section .page-live__section-title::after {
  background-color: #FFD700;
}

.page-live__promo-description {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

.page-live__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

.page-live__detail-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
}

.page-live__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-live__detail-title a {
  color: #0A2E36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__detail-title a:hover {
  color: #FFD700;
}

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

.page-live__cta-section {
  background-color: #FFD700;
  color: #0A2E36;
  padding: 60px 20px;
  text-align: center;
}

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

.page-live__cta-section .page-live__section-title::after {
  background-color: #0A2E36;
}

.page-live__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.4em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__about-content {
    flex-direction: column;
  }
  .page-live__about-image,
  .page-live__about-text {
    width: 100%;
  }
  .page-live__game-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin: 40px 15px 30px;
  }
  .page-live__about-section,
  .page-live__games-section,
  .page-live__features-section,
  .page-live__promo-section,
  .page-live__detail-pages,
  .page-live__cta-section {
    padding: 30px 15px;
  }
  .page-live__game-grid,
  .page-live__features-list,
  .page-live__detail-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__feature-icon {
    max-width: 200px;
  }
  .page-live__promo-description,
  .page-live__cta-text {
    font-size: 1em;
  }
  /* Ensure all images within .page-live are responsive and don't cause overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.7em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-image {
    height: 180px;
  }
}