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

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  padding: 0;
  min-height: 500px; /* Ensure hero section has a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Limit container width for very large screens */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.7; /* Slightly dim the background image */
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  color: #ffffff;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-live__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Royal Blue for section titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

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

.page-live__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-live__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 150px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-live__games-section {
  padding: 80px 0;
  background-color: #eef7ff;
}

.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 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.08);
  overflow: hidden;
  text-align: center;
  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;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin: 20px 15px 10px 15px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px 20px;
  min-height: 100px; /* Ensure consistent card height */
}

.page-live__button--game {
  background-color: #FFD700;
  color: #1a1a1a;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.page-live__button--game:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-live__experience-section {
  padding: 80px 0;
  background-color: #fefefe;
}

.page-live__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-live__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-live__experience-image,
.page-live__mobile-image {
  flex: 1;
  min-width: 400px; /* Minimum image width */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-live__security-section {
  padding: 80px 0;
  background-color: #f0f8ff;
  text-align: center;
}

.page-live__security-section .page-live__button {
  margin: 20px 10px;
}

.page-live__promo-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-live__promo-section .page-live__section-title {
  color: #FFD700;
}

.page-live__promo-section .page-live__section-text {
  color: #f0f0f0;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-live__promo-image {
  width: 250px; /* Minimum 200px */
  height: 150px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__promo-description {
  font-size: 1em;
  color: #cccccc;
  min-height: 80px;
}

.page-live__button--promo {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #1E90FF;
  padding: 10px 20px;
  margin-top: 20px;
}

.page-live__button--promo:hover {
  background-color: #1565b3;
  border-color: #1565b3;
}

.page-live__promo-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__promo-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-live__get-started-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-live__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1E90FF;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-live__step-description {
  font-size: 1em;
  color: #666666;
  min-height: 80px;
}

.page-live__button--step {
  background-color: #FFD700;
  color: #1a1a1a;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  margin-top: 20px;
}

.page-live__button--step:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-live__mobile-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-live__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

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

.page-live__faq-question {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 50px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-live__faq-question:hover {
  background-color: #1565b3;
}

.page-live__faq-answer {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-live__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-live__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

.page-live__cta-section {
  padding: 80px 0;
  background-color: #1E90FF;
  color: #ffffff;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700;
}

.page-live__cta-section .page-live__section-text {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-live__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__experience-image,
  .page-live__mobile-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__content-wrapper,
  .page-live__content-wrapper--reverse {
    flex-direction: column;
    gap: 30px;
  }
  .page-live__experience-image,
  .page-live__mobile-image {
    width: 100%;
    max-width: 100%; /* Important for preventing overflow */
    height: auto; /* Important for preventing overflow */
    min-width: unset;
  }
  .page-live__feature-icon, .page-live__promo-image {
    width: 200px; /* Ensure images are not smaller than 200px */
    height: 120px; /* Adjust height while maintaining aspect ratio or minimum */
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__promo-cards, .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
    min-width: unset;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-live__faq-question::after {
    right: 20px;
  }
  .page-live__faq-answer.page-live__faq-answer--active {
    padding: 15px 20px;
  }
  .page-live__container {
    padding: 0 15px;
  }
  /* Ensure all images within .page-live are responsive */
  .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: 1em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__button {
    min-width: 150px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
  }
  .page-live__hero-content {
    padding: 60px 15px;
  }
  .page-live__feature-icon, .page-live__promo-image {
    width: 200px; /* Minimum 200px */
    height: 120px; /* Minimum 200px */
  }
  .page-live__game-image {
    height: 180px;
  }
}