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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Minimum height for hero section */
  color: #ffffff;
}

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

.page-live__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-live__hero-button:hover {
  background-color: #f0c200;
  color: #5a0000;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Burgundy for main headings */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-live__features-section,
.page-live__games-section,
.page-live__promotions-section,
.page-live__how-to-start-section,
.page-live__security-section,
.page-live__testimonials-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-live__feature-card,
.page-live__game-card,
.page-live__step-card,
.page-live__testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-live__game-button,
.page-live__step-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-live__game-button:hover,
.page-live__step-button:hover {
  background-color: #a00000;
}

.page-live__promotions-section,
.page-live__security-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.page-live__promo-content,
.page-live__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__promo-image,
.page-live__security-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-live__promo-details,
.page-live__security-details {
  flex: 2;
  min-width: 300px;
}

.page-live__promo-subtitle,
.page-live__security-subtitle {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-live__promo-text,
.page-live__security-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-live__promo-list,
.page-live__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-live__promo-list li,
.page-live__security-list li {
  font-size: 1em;
  color: #555555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-live__promo-list li::before,
.page-live__security-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-live__promo-button,
.page-live__security-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__promo-button:hover,
.page-live__security-button:hover {
  background-color: #f0c200;
}

.page-live__testimonial-card {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  padding: 25px;
  text-align: left;
}

.page-live__testimonial-text {
  font-style: italic;
  color: #444444;
  margin-bottom: 15px;
}

.page-live__testimonial-author {
  font-weight: bold;
  color: #8B0000;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #333333;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live__faq-answer {
  padding: 20px 25px;
  color: #555555;
  display: none;
}

.page-live__cta-section {
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-live__cta-section .page-live__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-live__cta-button:hover {
  background-color: #f0c200;
  color: #5a0000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__promo-subtitle,
  .page-live__security-subtitle {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-grid,
  .page-live__testimonials-grid {
    grid-template-columns: 1fr;
  }
  .page-live__promo-content,
  .page-live__security-content {
    flex-direction: column;
  }
  .page-live__promo-image,
  .page-live__security-image {
    max-width: 100%;
  }
  .page-live__promo-subtitle,
  .page-live__security-subtitle {
    font-size: 1.6em;
    text-align: center;
  }
  .page-live__promo-text,
  .page-live__security-text {
    text-align: center;
  }
  .page-live__promo-list,
  .page-live__security-list {
    text-align: left;
    margin: 0 auto 30px auto;
  }
  .page-live__promo-button,
  .page-live__security-button {
    width: 100%;
    text-align: center;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Content area images must be >= 200px. For mobile, max-width: 100% ensures they fit */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
    object-fit: cover;
  }
  .page-live__hero-image {
    min-width: unset;
    min-height: unset;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__promo-image, .page-live__security-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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