.page-live {
  color: #f0f0f0; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC */
  background-color: #1A202C; /* Auxiliary dark background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #D4AF37; /* Gold accent for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.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;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #D4AF37; /* Gold primary button */
  color: #1A202C;
  border: 2px solid #D4AF37;
}

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

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

.page-live__button--secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

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

.page-live__button--large {
  padding: 20px 40px;
  font-size: 1.4em;
}

.page-live__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #D4AF37; /* Gold accent for section titles */
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-live__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

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

.page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__step-card {
  background-color: #1A202C; /* Dark background for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__promo-card:hover, .page-live__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-live__feature-image, .page-live__game-image, .page-live__promo-image, .page-live__mobile-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__feature-title, .page-live__game-title, .page-live__promo-title, .page-live__step-title, .page-live__mobile-subtitle {
  font-size: 1.8em;
  color: #D4AF37;
  margin-bottom: 15px;
}

.page-live__feature-text, .page-live__game-description, .page-live__promo-text, .page-live__step-text, .page-live__mobile-description, .page-live__support-text, .page-live__responsible-text, .page-live__faq-answer {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__button {
  margin-top: auto; /* Push button to bottom */
}

.page-live__experience-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-live__detail-item {
  background-color: #1A202C;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #D4AF37;
}

.page-live__detail-title {
  font-size: 1.5em;
  color: #D4AF37;
  margin-bottom: 10px;
}

.page-live__detail-text {
  color: #cccccc;
}

.page-live__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-live__mobile-image {
  flex: 1 1 400px;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-live__mobile-text {
  flex: 1 1 400px;
}

.page-live__support-details, .page-live__responsible-content {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-live__support-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-live__support-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-live__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-live__faq-item {
  background-color: #1A202C;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #D4AF37;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #D4AF37;
}

.page-live__faq-question.active::after {
  content: '-';
}

.page-live__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: #cccccc;
}

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

.page-live__call-to-action {
  margin-top: 80px;
  padding: 50px 20px;
  background: linear-gradient(45deg, #1A202C, #333333);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-live__call-to-action .page-live__section-title {
  color: #D4AF37;
}

@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__promo-cards, .page-live__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    min-height: 500px;
  }
  .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: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__promo-card, .page-live__step-card {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__promo-title, .page-live__step-title, .page-live__mobile-subtitle {
    font-size: 1.5em;
  }
  .page-live__feature-text, .page-live__game-description, .page-live__promo-text, .page-live__step-text, .page-live__mobile-description, .page-live__support-text, .page-live__responsible-text, .page-live__faq-answer {
    font-size: 0.9em;
  }
  .page-live__features-grid, .page-live__games-grid, .page-live__promo-cards, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__experience-details {
    grid-template-columns: 1fr;
  }
  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure responsiveness */
  }
  /* Mobile image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
}