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

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

.page-live__section {
  padding: 60px 0;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary Color */
  line-height: 1.2;
}

.page-live__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

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

.page-live__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-live__card-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-live__card-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
}

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

.page-live__btn-secondary:hover {
  background-color: #FFD36B;
  color: #111111; /* Dark text for contrast */
  transform: translateY(-2px);
}

.page-live__btn-text {
  display: inline-block;
  color: #FFD36B; /* Auxiliary Color */
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-live__btn-text:hover {
  color: #F2C14E; /* Primary Color */
}

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

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-live__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-live__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.5;
}

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

/* Why Choose Us Section */
.page-live__why-choose-us {
  background-color: #0A0A0A; /* Background */
}

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

.page-live__feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-live__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Popular Games Section */
.page-live__popular-games {
  background-color: #0A0A0A; /* Background */
}

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

.page-live__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Getting Started Section */
.page-live__getting-started {
  background-color: #111111; /* Card BG, as a dark section */
}

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

.page-live__step-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-live__step-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 25px;
}

/* Promotions Section */
.page-live__promotions {
  background-color: #0A0A0A; /* Background */
}

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

/* FAQ Section */
.page-live__faq {
  background-color: #111111; /* Card BG */
}

.page-live__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-live__faq-item {
  background-color: #0A0A0A; /* Background */
  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: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary Color */
  cursor: pointer;
  background-color: #0A0A0A;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-toggle {
  font-size: 1.5em;
  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 20px;
  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 20px 20px 20px;
}

.page-live__faq-answer p {
  margin: 0;
}

/* Partners Section */
.page-live__partners {
  background-color: #0A0A0A; /* Background */
}

.page-live__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for 10 items in 2x5 */
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-live__partner-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 127px; /* Fixed height for partner items matching image height */
  width: 100%; /* Ensure width flexibility */
  max-width: 167px; /* Max width matching image width */
  box-sizing: border-box;
}

.page-live__partner-item img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8) grayscale(0.2); /* Slightly dim for integration, but no color change */
  transition: filter 0.3s ease;
}

.page-live__partner-item img:hover {
  filter: brightness(1) grayscale(0); /* Brighten on hover */
}

/* Copyright Info */
.page-live__copyright-info {
  text-align: center;
  padding: 30px 15px;
  font-size: 0.9em;
  color: #3A2A12; /* Border color for subtle text */
  background-color: #0A0A0A; /* Background */
  border-top: 1px solid #3A2A12;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__section-title {
    font-size: 2.5em;
  }

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

@media (max-width: 768px) {
  .page-live {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding for header */
    padding-bottom: 40px;
  }

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

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

  .page-live__hero-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__hero-buttons,
  .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__section {
    padding: 40px 0;
  }

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

  .page-live__card {
    padding: 20px;
  }

  .page-live__card-title {
    font-size: 1.4em;
  }

  .page-live__feature-image,
  .page-live__game-image,
  .page-live__partner-item img,
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__hero-image-wrapper,
  .page-live__partner-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-live__faq-list {
    margin-left: 0;
    margin-right: 0;
  }

  .page-live__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

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

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

  .page-live__partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 15px;
  }
  .page-live__partner-item {
    max-width: unset;
    width: 100%;
    height: auto; /* Allow height to adjust */
    padding: 10px;
  }
  .page-live__partner-item img {
     /* Constrain height for smaller screens */
    object-fit: contain;
  }
}