.page-live {
  color: #ffffff; /* Light text for dark body background */
  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: 0 20px;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__section-subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1a1a1a; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text for gold background */
  transform: translateY(-2px);
}

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

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
}

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

.page-live__hero-description {
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  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__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-live__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2); /* Darken and enhance colors slightly for background effect */
  transform: scale(1.05);
}

/* About Section */
.page-live__about-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

.page-live__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-live__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.85);
}

.page-live__image-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-live__image-content--center {
  text-align: center;
}

.page-live__image-content--center img {
  display: inline-block;
}

/* Games Section */
.page-live__games-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  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;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-live__game-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-live__game-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__call-to-action {
  text-align: center;
  margin-top: 60px;
}

.page-live__call-to-action--bottom {
  margin-top: 80px;
}

/* VIP Benefits Section */
.page-live__vip-benefits-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

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

.page-live__benefit-item {
  background-color: rgba(139, 0, 0, 0.3); /* Wine red auxiliary color with transparency */
  border: 1px solid #8B0000;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-live__benefit-item:hover {
  background-color: rgba(139, 0, 0, 0.5);
  border-color: #FFD700;
}

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

.page-live__benefit-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Section */
.page-live__why-choose-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-live__feature-item {
  background-color: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-live__feature-item:hover {
  background-color: rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
}

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

.page-live__feature-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

/* Getting Started Section */
.page-live__getting-started-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

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

.page-live__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-live__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #8B0000; /* Wine red auxiliary color */
  color: #FFD700; /* Gold text */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

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

.page-live__step-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
}

/* Testimonials Section */
.page-live__testimonials-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-live__testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.page-live__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
}

/* FAQ Section */
.page-live__faq-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-live__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-live__faq-answer {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.page-live__final-cta-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

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

  .page-live__hero-description {
    font-size: 1.3em;
  }

  .page-live__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-live__hero-content {
    margin-bottom: 40px;
  }

  .page-live__hero-title {
    font-size: 2.8em;
  }

  .page-live__hero-description {
    font-size: 1.1em;
  }

  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__content-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-grid, .page-live__benefits-grid, .page-live__features-grid, .page-live__steps-grid, .page-live__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-live__section-title {
    font-size: 2em;
  }

  .page-live__section-subtitle {
    font-size: 1em;
  }

  .page-live__button {
    width: 100%;
    max-width: 300px;
  }

  .page-live__image-content img {
    max-width: 100%;
    height: auto;
  }

  .page-live__hero-image img, 
  .page-live__about-section img, 
  .page-live__games-section img, 
  .page-live__vip-benefits-section img, 
  .page-live__why-choose-section img, 
  .page-live__getting-started-section img, 
  .page-live__testimonials-section img, 
  .page-live__faq-section img, 
  .page-live__final-cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure no horizontal scrolling */
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }

  .page-live__hero-description {
    font-size: 0.95em;
  }

  .page-live__section-title {
    font-size: 1.8em;
  }

  .page-live__game-card, .page-live__benefit-item, .page-live__feature-item, .page-live__step-item, .page-live__testimonial-card, .page-live__faq-item {
    padding: 20px;
  }

  .page-live__step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.5em;
  }
}