.page-live {
  color: #333333; /* Dark text for default light body background */
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  padding: 80px 20px;
  background-color: #000080; /* Midnight Blue background for hero */
  color: #ffffff;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Overlay to ensure text readability */
}

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

.page-live__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-live__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Midnight blue text */
}

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

.page-live__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-live__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-live__section-title {
  font-size: 2.8em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #000080; /* Midnight blue for section titles */
}

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

.page-live__about-section,
.page-live__games-section,
.page-live__bonuses-section,
.page-live__how-to-play-section,
.page-live__security-section,
.page-live__cta-section,
.page-live__faq-section {
  padding: 80px 0;
}

.page-live__about-section {
  background-color: #f8f8f8;
}

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

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

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

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

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

.page-live__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

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

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

.page-live__game-card {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.page-live__game-card h3,
.page-live__game-card p,
.page-live__game-card a {
  padding: 0 25px;
}

.page-live__game-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000080;
}

.page-live__game-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 25px;
  align-self: flex-start;
  margin-left: 25px;
}

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

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

.page-live__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
}

.page-live__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__promo-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000080;
  padding: 0 20px;
}

.page-live__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-live__how-to-play-section {
  background-color: #ffffff;
}

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

.page-live__step-card {
  background-color: #fdfdfd;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.page-live__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold number background */
  color: #000080; /* Midnight blue number text */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  border: 3px solid #ffffff;
}

.page-live__step-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #000080;
}

.page-live__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__security-section {
  background-color: #000080;
  color: #ffffff;
}

.page-live__security-section .page-live__section-title {
  color: #FFD700; /* Gold for title on dark background */
}

.page-live__security-section .page-live__section-description {
  color: #f0f0f0;
}

.page-live__security-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-live__highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-live__highlight-item::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-live__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  margin-top: 40px;
}

.page-live__btn--outline:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-live__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  color: #000080;
}

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

.page-live__cta-section .page-live__section-description {
  color: #000080;
}

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

.page-live__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live__cta-section .page-live__btn--primary {
  background-color: #000080;
  color: #FFD700;
}

.page-live__cta-section .page-live__btn--primary:hover {
  background-color: #0a0a90;
}

.page-live__cta-section .page-live__btn--secondary {
  background-color: transparent;
  color: #000080;
  border-color: #000080;
}

.page-live__cta-section .page-live__btn--secondary:hover {
  background-color: #000080;
  color: #FFD700;
}

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

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

.page-live__faq-question {
  font-size: 1.4em;
  font-weight: 600;
  color: #000080;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding: 60px 15px;
  }

  .page-live__hero-title {
    font-size: 2.5em;
  }

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

  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-live__about-section,
  .page-live__games-section,
  .page-live__bonuses-section,
  .page-live__how-to-play-section,
  .page-live__security-section,
  .page-live__cta-section,
  .page-live__faq-section {
    padding: 60px 0;
  }

  .page-live__feature-card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__step-card {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-live__container {
    padding: 0 15px;
  }

  .page-live__game-image {
    height: 200px;
  }

  .page-live__promo-image {
    height: 180px;
  }

  .page-live__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-live__faq-question {
    font-size: 1.2em;
  }

  .page-live__faq-answer {
    font-size: 0.9em;
  }

  /* Mobile content area image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__hero-image {
    width: 100%; /* Ensure hero image is responsive */
    height: auto;
  }
}

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

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

  .page-live__hero-actions {
    gap: 10px;
  }

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

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

  .page-live__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }

  .page-live__security-highlights {
    font-size: 1em;
  }
}