.page-live {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures 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.5em;
  color: #000000; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-live__hero-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-live__hero-content {
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

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

.page-live__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust based on desired layout */
  margin-top: 40px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live__why-choose-section,
.page-live__featured-games-section,
.page-live__promotions-section,
.page-live__security-section,
.page-live__get-started-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__why-choose-section,
.page-live__promotions-section,
.page-live__get-started-section {
  background-color: #f9f9f9;
}

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

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

.page-live__feature-card:hover,
.page-live__game-card:hover,
.page-live__promo-card:hover,
.page-live__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon,
.page-live__game-image,
.page-live__promo-image,
.page-live__security-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Max width for images within cards */
  min-width: 200px; /* Min width for images within cards */
  min-height: 200px; /* Min height for images within cards */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensures image covers the area without distortion */
}

.page-live__feature-title,
.page-live__game-title,
.page-live__promo-title,
.page-live__security-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__game-button,
.page-live__promo-button {
  display: inline-block;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__game-button:hover,
.page-live__promo-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-live__promo-cta-text,
.page-live__security-cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-live__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__inline-link:hover {
  text-decoration: underline;
}

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

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

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

.page-live__step-description {
  font-size: 1em;
  color: #666666;
}

.page-live__get-started-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__get-started-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-live__faq-list {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  position: relative;
  font-weight: bold;
}

.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 {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFFFFF;
  font-size: 3em;
}

.page-live__cta-section .page-live__section-intro {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 50px;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__cta-button--login {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live__cta-button--login:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__cta-section .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-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-live__why-choose-section,
  .page-live__featured-games-section,
  .page-live__promotions-section,
  .page-live__security-section,
  .page-live__get-started-section,
  .page-live__faq-section,
  .page-live__cta-section {
    padding: 60px 0;
  }

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

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promo-grid,
  .page-live__security-grid,
  .page-live__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__feature-card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__security-item {
    padding: 25px;
  }
  
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__security-icon {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    height: auto;
  }

  .page-live__feature-title,
  .page-live__game-title,
  .page-live__promo-title,
  .page-live__security-heading {
    font-size: 1.5em;
  }

  .page-live__game-button,
  .page-live__promo-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }

  .page-live__get-started-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-live__cta-section .page-live__section-title {
    font-size: 2em;
  }
  .page-live__cta-section .page-live__section-intro {
    font-size: 1em;
  }
  .page-live__cta-button {
    font-size: 1.1em;
    padding: 15px 25px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }

  /* Ensure images within .page-live do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__cta-section .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__container {
    padding: 0 15px;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__promo-title,
  .page-live__security-heading {
    font-size: 1.3em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-live__faq-question::after {
    right: 15px;
  }
  .page-live__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-live__cta-button {
    font-size: 1em;
    padding: 12px 20px;
    margin: 8px 0;
  }
}