.page-live {
  color: #333333; /* Dark text for default (light) body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A1A1A; /* Dark background for hero */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text pop */
  object-fit: cover;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
}

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

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

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

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

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

.page-live__about-section, .page-live__games-showcase, .page-live__bonuses-section, .page-live__seamless-experience, .page-live__getting-started, .page-live__faq-section, .page-live__cta-final-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

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

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

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

.page-live__feature-card, .page-live__game-card, .page-live__bonus-card, .page-live__experience-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__bonus-card:hover, .page-live__experience-card:hover {
  transform: translateY(-10px);
}

.page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__experience-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__feature-description, .page-live__game-description, .page-live__bonus-description, .page-live__experience-description {
  font-size: 1em;
  color: #666666;
}

.page-live__game-image, .page-live__bonus-image, .page-live__experience-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-live__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-live__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-live__step-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-live__step-description {
  color: #666666;
}

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

.page-live__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #1A1A1A;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: #e0e0e0;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__faq-answer.page-live__faq-answer--open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-live__faq-answer p {
  margin: 0;
  color: #666666;
}

.page-live__cta-final-section {
  text-align: center;
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 100px 20px;
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__bonus-cards, .page-live__experience-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__bonus-card, .page-live__experience-card {
    padding: 20px;
  }
  .page-live__game-image, .page-live__bonus-image, .page-live__experience-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-live__faq-answer {
    padding: 15px 20px;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile specific image sizing */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }
  .page-live__hero-content {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__experience-title {
    font-size: 1.4em;
  }
}