.page-live {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-live__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* Desktop padding-top */
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-live__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A0A0A; /* Dark text for contrast on light gradient */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-live__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333333; /* Dark text for contrast on light gradient */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2C14E; /* Primary Color */
  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: #FFD36B; /* Glow */
  border-radius: 2px;
}

.page-live__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6; /* Text Main */
}

.page-live__about-section,
.page-live__games-section,
.page-live__promo-section,
.page-live__why-choose-section,
.page-live__getting-started-section,
.page-live__faq-section,
.page-live__responsible-gaming-section,
.page-live__future-section,
.page-live__final-cta-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-live__games-section,
.page-live__promo-section {
  background-color: #111111; /* Card BG */
}

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

.page-live__game-card,
.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-live__game-title,
.page-live__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-live__game-title a,
.page-live__promo-title a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__game-title a:hover,
.page-live__promo-title a:hover {
  color: #F2C14E; /* Primary Color */
}

.page-live__game-description,
.page-live__promo-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 15px;
}

.page-live__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-live__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Primary Color */
}

.page-live__feature-description {
  font-size: 0.9rem;
  color: #FFF6D6; /* Text Main */
}

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

.page-live__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-live__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-live__step-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
}

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

.page-live__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #1A1A1A; /* Slightly darker for question */
  color: #F2C14E; /* Primary Color */
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px;
}

.page-live__faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #0A0A0A; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-live__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Primary Color */
  border: 2px solid #F2C14E; /* Primary Color */
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Dark text for contrast */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

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

/* All images responsive base styles */
.page-live img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding-top */
    padding-bottom: 30px;
  }

  .page-live__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-live__hero-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .page-live__section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .page-live__about-section,
  .page-live__games-section,
  .page-live__promo-section,
  .page-live__why-choose-section,
  .page-live__getting-started-section,
  .page-live__faq-section,
  .page-live__responsible-gaming-section,
  .page-live__future-section,
  .page-live__final-cta-section {
    padding: 40px 0;
  }

  .page-live__game-list,
  .page-live__promo-grid,
  .page-live__feature-list,
  .page-live__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }

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

  .page-live__game-title,
  .page-live__promo-title {
    font-size: 1.3rem;
  }

  .page-live__feature-icon {
    width: 150px;
    height: 150px;
  }

  .page-live__feature-title {
    font-size: 1.4rem;
  }

  .page-live__step-title {
    font-size: 1.2rem;
  }

  .page-live__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-live__faq-answer {
    padding: 0 20px;
  }

  .page-live__faq-item.active .page-live__faq-answer {
    padding: 10px 20px 20px;
  }

  /* Mobile responsive image and container styles */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-live__hero-section,
  .page-live__about-section,
  .page-live__games-section,
  .page-live__promo-section,
  .page-live__why-choose-section,
  .page-live__getting-started-section,
  .page-live__faq-section,
  .page-live__responsible-gaming-section,
  .page-live__future-section,
  .page-live__final-cta-section,
  .page-live__container,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__feature-item,
  .page-live__step-item,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}