.page-live {
  color: #333333; /* Default text color for 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__hero-section {
  background-color: #003366; /* Main brand color for hero background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text stand out */
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly */
}

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

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

.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;
  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, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #003366;
}

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-live__why-choose-us-section, .page-live__popular-games-section, .page-live__providers-section, .page-live__mobile-experience-section, .page-live__bonuses-section, .page-live__getting-started-section, .page-live__faq-section, .page-live__cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.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: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366;
}

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

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

.page-live__feature-text {
  color: #555555;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-live__game-description {
  color: #555555;
  padding: 0 15px 20px;
}

.page-live__game-card .page-live__button {
  margin-bottom: 20px;
}

.page-live__providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-live__provider-item {
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-live__providers-cta {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-live__providers-section .page-live__button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live__mobile-experience-section {
  background-color: #003366;
  color: #ffffff;
}

.page-live__mobile-experience-section .page-live__section-title,
.page-live__mobile-experience-section .page-live__section-intro {
  color: #ffffff;
}

.page-live__mobile-experience-section .page-live__section-title::after {
  background-color: #FFD700;
}

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

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

.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 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-live__mobile-features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-live__mobile-features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-live__list-icon {
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
}

.page-live__mobile-experience-section .page-live__button {
  margin-top: 30px;
  margin-right: 15px;
}

.page-live__bonuses-section {
  background-color: #f0f0f0;
}

.page-live__bonus-cards-grid {
  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 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

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

.page-live__bonus-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-live__bonus-text {
  color: #555555;
  padding: 0 15px 20px;
}

.page-live__bonus-card .page-live__button {
  margin-bottom: 20px;
}

.page-live__bonuses-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
  color: #777777;
}

.page-live__bonuses-section .page-live__button--primary {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-live__step-card {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-bottom: 5px solid #FFD700;
}

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

.page-live__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-live__step-text {
  color: #555555;
  margin-bottom: 20px;
}

.page-live__faq-section {
  background-color: #f9f9f9;
}

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

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-live__faq-answer {
  color: #555555;
  font-size: 1.0em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-live__faq-answer.open {
  max-height: 300px; /* Adjust as needed for content */
}

.page-live__faq-section .page-live__button--secondary {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live__cta-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-live__cta-section .page-live__button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 0;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__features-grid, .page-live__game-cards-grid, .page-live__bonus-cards-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__mobile-content-wrapper {
    flex-direction: column;
  }
  .page-live__mobile-experience-section .page-live__button {
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-live__cta-title {
    font-size: 2.2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__cta-section .page-live__button {
    width: 90%;
    margin: 10px auto;
  }
  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__game-image, .page-live__bonus-image, .page-live__mobile-image {
    height: auto; /* Allow height to adjust for responsiveness */
  }
  /* Content area images must not be smaller than 200px */
  .page-live__game-image, .page-live__bonus-image, .page-live__mobile-image, .page-live__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
  /* Specific overrides for small buttons on mobile */
  .page-live__game-card .page-live__button--small, .page-live__bonus-card .page-live__button--small, .page-live__step-card .page-live__button--small {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@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__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-title {
    font-size: 1.4em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-description {
    font-size: 0.9em;
  }
  .page-live__providers-list {
    gap: 10px;
  }
  .page-live__provider-item {
    padding: 10px 20px;
    font-size: 1em;
  }
}