.page-live {
  color: #333333; /* Dark text for default light body background */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Hide overflow from image */
  background-color: #0A192F; /* Dark background for hero section */
  color: #ffffff;
  padding-bottom: 80px;
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

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

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A192F; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent text on dark background */
  border: 2px solid #FFD700;
}

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

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

.page-live__section-title {
  font-size: 2.8em;
  color: #0A192F; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-live__dark-background .page-live__section-title {
  color: #FFD700; /* Accent color on dark background */
}

.page-live__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-live__dark-background .page-live__text-block {
  color: #f0f0f0;
}

.page-live__introduction-section,
.page-live__why-choose-section,
.page-live__getting-started-section,
.page-live__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__games-section,
.page-live__promotions-section,
.page-live__responsible-gaming-section,
.page-live__cta-final-section {
  padding: 80px 0;
  background-color: #0A192F; /* Main brand color as background */
  color: #ffffff;
}

.page-live__game-grid,
.page-live__features-grid,
.page-live__promotions-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-card,
.page-live__promo-card,
.page-live__step-card {
  background-color: #1a2a40; /* Slightly lighter dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__game-card-image,
.page-live__feature-card-icon,
.page-live__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency, images will object-fit */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-live__game-card-title,
.page-live__feature-card-title,
.page-live__promo-card-title,
.page-live__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Accent color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__game-card-description,
.page-live__feature-card-description,
.page-live__promo-card-description,
.page-live__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-live__cta-wrapper .page-live__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-live__faq-accordion {
  margin-top: 40px;
}

.page-live__accordion-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-live__accordion-header {
  background-color: #FFD700; /* Accent color */
  color: #0A192F; /* Dark text on accent background */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__accordion-header:hover {
  background-color: #e6c200;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

.page-live__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  color: #333333;
}

.page-live__cta-final-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-live__cta-final-section .page-live__button {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }

  .page-live__hero-description {
    font-size: 1.2em;
  }

  .page-live__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    padding-bottom: 60px;
  }

  .page-live__hero-title {
    font-size: 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: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-live__text-block {
    font-size: 0.95em;
  }

  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__promotions-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-live__game-card-image,
  .page-live__feature-card-icon,
  .page-live__promo-card-image {
    width: 100%;
    height: auto; /* Allow height to adjust naturally */
    min-height: 200px; /* Enforce minimum height */
    object-fit: cover;
  }

  .page-live__game-card-title,
  .page-live__feature-card-title,
  .page-live__promo-card-title,
  .page-live__step-title {
    font-size: 1.4em;
  }

  .page-live__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Ensure content area images do not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.6em;
  }

  .page-live__hero-description {
    font-size: 0.9em;
  }

  .page-live__section-title {
    font-size: 1.5em;
  }

  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}