.page-live {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero to make gold pop */
  color: #ffffff;
  padding: 0;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim image to make text stand out */
  object-fit: cover;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  max-width: 90%;
}

.page-live__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Main brand color for hero title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__hero-button,
.page-live__primary-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color for primary buttons */
  color: #8B0000; /* Auxiliary color for text on primary button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__hero-button:hover,
.page-live__primary-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.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: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-live__feature-title {
  font-size: 1.6em;
  color: #8B0000; /* Auxiliary color for feature titles */
  margin-bottom: 15px;
}

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

.page-live__games-section {
  padding: 60px 0;
}

.page-live__game-list {
  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: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

.page-live__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #8B0000; /* Auxiliary color for game titles */
  padding: 20px 20px 10px;
}

.page-live__game-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover {
  color: #FFD700; /* Main brand color on hover */
}

.page-live__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-live__game-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary color for button text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-live__game-button:hover {
  background-color: #e6c200;
}

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

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

.page-live__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
}

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

.page-live__step-title {
  font-size: 1.4em;
  color: #8B0000; /* Auxiliary color */
  margin-bottom: 10px;
}

.page-live__step-text {
  font-size: 0.95em;
  color: #555555;
}

.page-live__action-center {
  text-align: center;
  margin-top: 50px;
}

.page-live__bonuses-section {
  padding: 60px 0;
}

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

.page-live__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.page-live__bonus-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-live__bonus-title {
  font-size: 1.6em;
  color: #8B0000;
  padding: 20px 20px 10px;
}

.page-live__bonus-title a {
  color: inherit;
  text-decoration: none;
}

.page-live__bonus-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-live__bonus-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-live__bonus-button:hover {
  background-color: #e6c200;
}

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

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

.page-live__security-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__security-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-live__security-item {
  font-size: 1.1em;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.page-live__security-item::before {
  content: '✔';
  color: #FFD700; /* Main brand color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-live__security-item strong {
  color: #8B0000; /* Auxiliary color for strong text */
}

.page-live__security-item a {
  color: #8B0000;
  text-decoration: underline;
}

.page-live__mobile-section {
  padding: 60px 0;
}

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

.page-live__mobile-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text {
  flex: 1 1 45%;
}

.page-live__mobile-text p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

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

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

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

.page-live__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

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

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

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

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

.page-live__faq-answer a {
  color: #8B0000;
  text-decoration: underline;
}

.page-live__secondary-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color for secondary buttons */
  color: #FFD700; /* Main brand color for text on secondary button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__secondary-button:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-live__cta-section {
  background-color: #8B0000; /* Auxiliary color for CTA background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-live__cta-section .page-live__section-title {
  color: #FFD700; /* Main brand color for CTA title */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__security-content,
  .page-live__mobile-content {
    flex-direction: column;
  }
  .page-live__security-image,
  .page-live__mobile-image {
    flex: 1 1 100%;
    min-width: 200px; /* Ensure images are not too small */
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-button,
  .page-live__primary-button,
  .page-live__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.9em;
  }
  .page-live__feature-image,
  .page-live__game-image,
  .page-live__step-image,
  .page-live__bonus-image,
  .page-live__security-image,
  .page-live__mobile-image {
    max-width: 100%;
    height: auto; /* Prevent images from overflowing on mobile */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__faq-answer p {
    font-size: 0.9em;
  }
  .page-live__security-item,
  .page-live__mobile-text p {
    font-size: 1em;
  }
  /* Ensure all images within .page-live are responsive and do not cause overflow */
  .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__feature-card,
  .page-live__game-card,
  .page-live__step-card,
  .page-live__bonus-card {
    padding: 20px;
  }
  .page-live__feature-title,
  .page-live__game-title,
  .page-live__step-title,
  .page-live__bonus-title {
    font-size: 1.3em;
  }
}