.page-live {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main color as background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-live__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  z-index: 1;
}

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

.page-live__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  font-weight: bold;
}

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  margin-top: 20px;
}

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-live__game-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__button--play:hover {
  background-color: #e0a830;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__feature-icon {
  width: 100%;
  height: auto;
  max-width: 300px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-live__feature-description {
  font-size: 0.95em;
  color: #555555;
}

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

.page-live__promotions-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__promotions-section .page-live__text-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-live__promo-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  min-width: 200px;
  min-height: 200px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__button--promo {
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-live__button--promo:hover {
  background-color: #e0a830;
}

.page-live__getting-started-section {
  padding: 60px 20px;
}

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

.page-live__step-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

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

.page-live__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-live__button--register-small, .page-live__button--deposit, .page-live__button--play-game {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 0.95em;
}

.page-live__button--register-small:hover, .page-live__button--deposit:hover, .page-live__button--play-game:hover {
  background-color: #e0a830;
}

.page-live__faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

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

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

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

.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-item.active .page-live__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-live__button--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-live__button--secondary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-live__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-live__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-live__button--register-large:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-5px);
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-bottom: 60px;
  }

  .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 {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-live__text-content {
    font-size: 0.95em;
  }

  .page-live__games-grid, .page-live__features-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-live__game-image {
    height: 200px;
  }

  .page-live__feature-icon {
    max-width: 250px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-live__promo-image {
    min-width: 200px;
    min-height: 200px;
  }

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

  .page-live__cta-description {
    font-size: 1em;
  }

  /* Mobile content area image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto; /* Ensures images scale down */
  }

  .page-live {
    overflow-x: hidden;
  }
}

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

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

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

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

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