.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-live__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A2E59;
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-live__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}

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

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

.page-live__hero-buttons {
  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;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A2E59;
  border: 2px solid #FFD700;
}

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

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

.page-live__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-live__section-title {
  font-size: 2.8em;
  color: #1A2E59;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-live__game-showcase-section,
.page-live__why-choose-section,
.page-live__getting-started-section,
.page-live__mobile-app-section,
.page-live__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-live__why-choose-section {
  background-color: #ffffff;
}

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

.page-live__game-card,
.page-live__feature-item,
.page-live__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__game-image,
.page-live__feature-icon,
.page-live__step-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live__feature-icon {
  max-width: 200px;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 25px;
}

.page-live__game-title,
.page-live__feature-title,
.page-live__step-title {
  font-size: 1.8em;
  color: #1A2E59;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-live__game-text,
.page-live__feature-text,
.page-live__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-live__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-live__mobile-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-live__app-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-live__app-features li {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
}

.page-live__app-features li img {
  
  
  margin-right: 15px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.page-live__faq-accordion {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-live__faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #1A2E59;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-live__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Responsive adjustments */
@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__game-grid,
  .page-live__features-grid,
  .page-live__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 0;
  }
  .page-live__hero-content {
    position: static;
    transform: none;
    padding: 20px;
  }
  .page-live__hero-image {
    filter: brightness(0.4);
  }
  .page-live__hero-title {
    font-size: 2.2em;
    margin-top: 20px;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__game-card,
  .page-live__feature-item,
  .page-live__step-card {
    padding: 25px;
  }
  .page-live__game-title,
  .page-live__feature-title,
  .page-live__step-title {
    font-size: 1.5em;
  }
  .page-live__game-text,
  .page-live__feature-text,
  .page-live__step-text {
    font-size: 0.9em;
  }
  .page-live__mobile-content,
  .page-live__mobile-image-wrapper {
    flex: 1 1 100%;
    text-align: center;
  }
  .page-live__mobile-content {
    order: 2;
  }
  .page-live__mobile-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  .page-live__app-features {
    text-align: left;
    max-width: 350px;
    margin: 30px auto 40px auto;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer {
    font-size: 0.9em;
  }
  .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.9em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
  }
  .page-live__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
}