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

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

/* Hero Section */
.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Darker gradient for hero background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and text */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-live__hero-content {
  position: relative;
  z-index: 1; /* Ensure text is above background elements if any */
  padding-top: 20px; /* Small padding below image */
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Main color for emphasis */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

.page-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

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

.page-live__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-live__btn-secondary:hover {
  background: #F2C14E; /* Main color */
  color: #0A0A0A; /* Dark text for contrast */
  border-color: #F2C14E;
  transform: translateY(-2px);
}

/* General Section Styles */
.page-live__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-live__section:last-of-type {
  border-bottom: none;
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 20px;
}

.page-live__section-title--light {
  color: #FFF6D6; /* Text Main */
}

.page-live__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

.page-live__section-description--light {
  color: #FFF6D6; /* Text Main */
}

/* Feature Grid */
.page-live__features-grid,
.page-live__games-grid,
.page-live__promotions-grid,
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-live__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px #FFD36B; /* Glow */
}

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

.page-live__feature-text,
.page-live__game-text,
.page-live__promo-text,
.page-live__step-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

/* Games Showcase */
.page-live__game-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-height: 200px; /* Minimum size for content images */
}

.page-live__game-card .page-live__game-title {
  flex-grow: 1; /* Allows title to take available space */
  font-size: 1.3rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-live__game-card .page-live__game-text {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
}

.page-live__cta-buttons--center {
  margin-top: 40px;
}

/* Promotions Section (Dark Background) */
.page-live__section--promotions,
.page-live__section--mobile,
.page-live__section--why-choose {
  background: #111111; /* Card BG for dark sections */
  color: #FFF6D6; /* Text Main */
}

/* Get Started Steps */
.page-live__step-card {
  position: relative;
  padding-top: 50px; /* Make space for step number */
}

.page-live__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #F2C14E; /* Main color */
  color: #0A0A0A; /* Dark text for contrast */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Soft glow */
}

.page-live__step-card .page-live__btn-primary,
.page-live__step-card .page-live__btn-secondary {
  margin-top: 20px;
}

/* Mobile Section */
.page-live__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-live__mobile-features {
  flex: 1;
  text-align: left;
}

.page-live__feature-item {
  margin-bottom: 30px;
}

.page-live__feature-item:last-child {
  margin-bottom: 0;
}

.page-live__feature-title--light,
.page-live__feature-text--light {
  color: #FFF6D6; /* Text Main */
}

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

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

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: #0A0A0A; /* Slightly darker on hover */
}

.page-live__faq-question h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #F2C14E; /* Main color */
}

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

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg); /* Plus to X / Minus */
}

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

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* !important for strict rule */
  padding: 15px 25px 25px 25px; /* Adjust padding when open */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__container {
    padding: 0 15px;
  }

  .page-live__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

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

  .page-live__hero-image-wrapper {
    max-height: 500px;
  }
}

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

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

  .page-live__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-live__section {
    padding: 40px 0;
  }

  .page-live__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-live__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promotions-grid,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-live__card {
    padding: 25px;
  }

  .page-live__game-image {
    height: 180px;
    min-height: 180px; /* Maintain minimum height for mobile */
  }

  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  .page-live__mobile-image-wrapper {
    margin-bottom: 30px;
  }

  .page-live__mobile-features {
    padding: 0 15px;
  }

  .page-live__faq-question {
    padding: 15px 20px;
  }

  .page-live__faq-question h3 {
    font-size: 1rem;
  }

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

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

  /* Mobile image responsiveness for all images */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__hero-section,
  .page-live__cta-buttons,
  .page-live__mobile-content,
  .page-live__faq-list,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Adding padding to sections/containers to prevent content touching edges */
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Remove specific padding for containers inside other padded elements if double-padding */
  .page-live__hero-section .page-live__container,
  .page-live__section .page-live__container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Ensure no filter on images */
.page-live img {
  filter: none !important;
}