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

.page-live__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.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: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF; /* White text over dark hero image */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

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

.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;
  color: #000000;
}

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

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.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: 20px;
  color: #000000;
}

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

.page-live__about-section,
.page-live__games-section,
.page-live__advantages-section,
.page-live__getting-started-section,
.page-live__faq-section,
.page-live__responsible-gambling-section,
.page-live__cta-final-section {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-8px);
}

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

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

.page-live__feature-text {
  color: #666666;
  font-size: 1em;
}

.page-live__game-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.page-live__game-category--reverse {
  flex-direction: column-reverse;
}

.page-live__game-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-live__game-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.page-live__game-category:nth-child(even) .page-live__game-content {
  flex-direction: row-reverse;
}

.page-live__game-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__game-text {
  flex: 1;
  min-width: 300px;
}

.page-live__game-text p {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-live__game-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #444444;
}

.page-live__game-list li {
  margin-bottom: 8px;
}

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

.page-live__button--play-now:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

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

.page-live__advantage-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-live__advantage-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-live__advantage-text {
  color: #666666;
  font-size: 0.95em;
}

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

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

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

.page-live__button--download-app {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-live__button--download-app:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-live__getting-started-section {
  background-color: #f8f8f8;
}

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

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

.page-live__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-live__button--step-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-live__button--step-action:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-live__faq-answer {
  color: #555555;
  font-size: 1em;
  display: none; /* Hidden by default */
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

.page-live__responsible-gambling-section {
  background-color: #f0f0f0;
  text-align: center;
}

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

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

.page-live__cta-final-section {
  text-align: center;
}

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

.page-live__button--register-final {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-live__button--login-final {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__game-content {
    flex-direction: column;
  }
  .page-live__game-category:nth-child(even) .page-live__game-content {
    flex-direction: column;
  }
  .page-live__game-image {
    width: 100%;
    max-width: 600px;
  }
  .page-live__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding: 30px 15px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has header offset */
  }
  .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: 100%;
    max-width: 280px;
  }
  .page-live__container {
    padding: 20px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__features-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__feature-image, .page-live__step-image {
    max-width: 100%;
    height: auto; /* Prevent image overflow */
  }
  .page-live__cta-buttons, .page-live__cta-final-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button--register-large,
  .page-live__button--download-app,
  .page-live__button--register-final,
  .page-live__button--login-final {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__advantage-item, .page-live__faq-item {
    padding: 20px;
  }
  .page-live__advantage-title, .page-live__faq-question, .page-live__step-title {
    font-size: 1.3em;
  }
  .page-live__advantage-text, .page-live__faq-answer, .page-live__step-text {
    font-size: 0.9em;
  }
  .page-live__game-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__game-image {
    height: auto;
  }
  .page-live__feature-image {
    height: auto;
  }
  .page-live__step-image {
    height: auto;
  }
}