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

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

.page-live__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Desktop fixed header spacing */
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-live__hero-content-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -100px; /* Overlap slightly for visual effect, but content is below image */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-live__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__lead-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-live__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bold;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;
}

.page-live__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF6D6;
}

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

.page-live__cta-buttons--center {
  justify-content: center;
}

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* 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 #FFD36B; /* Glow */
}

.page-live__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
}

.page-live__btn-secondary:hover {
  background: #222222;
  box-shadow: 0 0 15px #FFD36B; /* Glow */
}

.page-live__btn-text {
  background: none;
  color: #FFD36B; /* Glow */
  border: 2px solid transparent;
  padding: 0;
  text-decoration: underline;
  font-weight: normal;
}

.page-live__btn-text:hover {
  color: #F2C14E;
}

.page-live__intro-section,
.page-live__getting-started-section,
.page-live__promos-section,
.page-live__why-choose-section,
.page-live__responsible-gaming-section,
.page-live__faq-section,
.page-live__cta-section {
  padding: 50px 0;
}

.page-live__games-section {
  padding: 50px 0;
  background-color: #111111; /* Card BG */
}

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

.page-live__game-card,
.page-live__promo-card,
.page-live__step-card {
  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.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

.page-live__game-card:hover,
.page-live__promo-card:hover,
.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B; /* Glow */
}

.page-live__game-image,
.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-live__game-title,
.page-live__promo-title,
.page-live__step-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-live__game-title a,
.page-live__promo-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-live__game-title a:hover,
.page-live__promo-title a:hover {
  text-decoration: underline;
}

.page-live__game-description,
.page-live__promo-description,
.page-live__step-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

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

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

.page-live__feature-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-live__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

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

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

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  background-color: #1a1a1a; /* Slightly lighter than card BG */
  transition: background-color 0.3s ease;
}

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

.page-live__faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #F2C14E;
}

.page-live__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow */
}

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

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

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Important to override potential inline styles or other rules */
  padding: 15px 20px;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-live__hero-content-wrapper {
    margin-top: -50px;
    padding: 25px 15px;
  }
  .page-live__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-live__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-live__game-image, .page-live__promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-live {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-live__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile fixed header spacing */
    padding-bottom: 30px;
  }
  .page-live__hero-content-wrapper {
    margin-top: -30px;
    padding: 20px 15px;
    max-width: 100%;
    border-radius: 0;
  }
  .page-live__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-live__lead-text {
    font-size: 1rem;
  }
  .page-live__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary,
  .page-live a[class*="button"],
  .page-live a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__cta-buttons,
  .page-live__button-group,
  .page-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-live__game-grid,
  .page-live__steps-grid,
  .page-live__promo-cards,
  .page-live__features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__step-card,
  .page-live__feature-item {
    padding: 20px;
  }
  .page-live__game-image, .page-live__promo-image {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-live__section,
  .page-live__card,
  .page-live__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-content-wrapper {
    margin-top: -20px;
    padding: 15px 10px;
  }
  .page-live__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-live__lead-text {
    font-size: 0.9rem;
  }
  .page-live__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-live__cta-buttons {
    gap: 10px;
  }
  .page-live__btn-primary, .page-live__btn-secondary {
    padding: 10px 20px;
  }
  .page-live__faq-question h3 {
    font-size: 1rem;
  }
  .page-live__faq-answer p {
    font-size: 0.85rem;
  }
}