.page-live {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live__section {
  padding: 60px 0;
}

.page-live__section:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff;
  padding: 0;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1a1a1a; /* Dark text for contrast */
}

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

.page-live__button--secondary {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #ffffff;
}

.page-live__button--secondary:hover {
  background-color: #6b0000;
  transform: translateY(-3px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  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: #8B0000; /* Dark red auxiliary color */
  border-radius: 2px;
}

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

.page-live__section-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.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: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-live__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.page-live__game-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum image size */
  min-width: 200px; /* Enforce minimum image size */
}

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

.page-live__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-live__feature-list, .page-live__bonus-list, .page-live__contact-list, .page-live__advantage-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-live__feature-item, .page-live__bonus-item, .page-live__contact-item, .page-live__advantage-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
  border-left: 5px solid #FFD700;
  transition: background-color 0.3s ease;
}

.page-live__feature-item:hover, .page-live__bonus-item:hover, .page-live__contact-item:hover, .page-live__advantage-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-live__feature-item strong, .page-live__bonus-item strong, .page-live__contact-item strong, .page-live__advantage-item strong {
  color: #FFD700;
}

.page-live__download-actions, .page-live__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-live__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin: 30px auto;
  max-width: 800px;
}

.page-live__step-item {
  counter-increment: step-counter;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 25px 20px 60px;
  margin-bottom: 15px;
  border-radius: 10px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
  border-left: 5px solid #8B0000;
}

.page-live__step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1a1a1a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-live__step-item strong {
  color: #FFD700;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-live__final-cta {
  background-color: #8B0000; /* Dark red background for strong CTA */
  text-align: center;
  padding: 80px 20px;
}

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

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding: 0;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-list, .page-live__bonus-list, .page-live__contact-list, .page-live__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
    min-height: 200px; /* Maintain minimum height */
    min-width: 200px; /* Maintain minimum width */
  }
  .page-live__section-text img, .page-live__game-card img {
    max-width: 100%;
    height: auto; /* Ensure all images in content area are responsive */
    min-width: 200px; /* Maintain minimum width for content images */
    min-height: 200px; /* Maintain minimum height for content images */
  }
  .page-live__download-actions, .page-live__cta-buttons {
    flex-direction: column;
  }
  .page-live__step-item {
    padding-left: 50px;
  }
  .page-live__step-item::before {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-container {
    padding: 20px;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}