.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); /* Ensure space for fixed header */
}

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

.page-live__hero-section {
  background-color: #000000; /* Dark background for hero to contrast with site background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let content stand out */
}

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

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  min-width: 180px; /* Ensure buttons are large enough */
  text-align: center;
}

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

.page-live__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

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

.page-live__button--login:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
}

.page-live__button--play, .page-live__button--play-now, .page-live__button--download, .page-live__button--register-small {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-live__button--play:hover, .page-live__button--play-now:hover, .page-live__button--download:hover, .page-live__button--register-small:hover {
  background-color: #e6a73a;
  transform: translateY(-1px);
}

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

.page-live__introduction-section, .page-live__why-choose-section, .page-live__getting-started-section, .page-live__responsible-gaming-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

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

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

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

.page-live__game-card {
  background-color: #000000; /* Dark card background */
  color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__game-card-title {
  font-size: 1.8em;
  margin: 25px 20px 15px;
  color: #FCBC45;
}

.page-live__game-card-description {
  font-size: 1em;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

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

.page-live__feature-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FCBC45;
  box-shadow: 0 0 15px rgba(252, 188, 69, 0.5);
}

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

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

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

.page-live__step-item {
  background-color: #000000; /* Dark step background */
  color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-live__step-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__responsible-gaming-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.page-live__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__accordion-header {
  padding: 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfcfc;
  margin: 0;
  position: relative;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-live__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__accordion-content p {
  padding-bottom: 20px;
  margin: 0;
  color: #555555;
}

.page-live__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-live__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__game-card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on mobile */
  }
  .page-live__hero-section {
    padding: 60px 0;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-live__text-content {
    font-size: 1em;
    text-align: left;
  }
  .page-live__game-cards-grid, .page-live__features-grid, .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image, .page-live__feature-icon {
    max-width: 100%;
    height: auto; /* Prevent image overflow */
  }
  .page-live__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-live__accordion-content p {
    padding-bottom: 15px;
  }
  /* Content area images must not cause horizontal scrolling */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__button {
    font-size: 1em;
    padding: 12px 20px;
    min-width: unset;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-card-title {
    font-size: 1.3em;
  }
  .page-live__feature-title, .page-live__step-title {
    font-size: 1.3em;
  }
}