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

.page-live__section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A0A0A; /* Ensure consistency with body background */
}

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

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

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

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color from custom palette */
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-live__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
  margin-left: 20px;
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-live__button-icon {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

/* Hero Section */
.page-live__hero-section {
  padding-top: 10px; /* Small top padding for body offset */
  background-color: #0A0A0A;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 20px;
  box-sizing: border-box;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-live__hero-text-content {
  text-align: center;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Why Choose Us Section */
.page-live__why-choose-us {
  background-color: #111111; /* Card BG from custom palette */
}

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

.page-live__feature-item {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #3A2A12; /* Border from custom palette */
}

.page-live__feature-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #F2C14E);
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 10px;
}

.page-live__feature-text {
  color: #FFF6D6;
  font-size: 1em;
}

/* Games Section */
.page-live__game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-live__game-card {
  background-color: #111111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.2s ease;
}

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

.page-live__game-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-live__game-title {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-live__game-text {
  color: #FFF6D6;
  font-size: 0.95em;
}

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

/* CTA Section (Full Width) */
.page-live__cta-section--full-width {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding: 80px 0;
  color: #111111;
}

.page-live__cta-section--full-width .page-live__section-title,
.page-live__cta-section--full-width .page-live__section-description {
  color: #111111;
}

.page-live__cta-section--full-width .page-live__btn-primary {
  background: #111111;
  color: #FFD36B;
  box-shadow: none;
}

.page-live__cta-section--full-width .page-live__btn-primary:hover {
  background: #0A0A0A;
  color: #FFD36B;
}

.page-live__cta-section--full-width .page-live__btn-secondary {
  border-color: #111111;
  color: #111111;
}

.page-live__cta-section--full-width .page-live__btn-secondary:hover {
  background-color: #111111;
  color: #F2C14E;
}

.page-live__container--flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-live__cta-content {
  flex: 1;
}

.page-live__cta-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

/* App Section */
.page-live__app-section {
  background-color: #0A0A0A;
}

.page-live__app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-live__app-image {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Promo Section */
.page-live__promo-section {
  background-color: #111111;
}

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

.page-live__promo-card {
  background-color: #0A0A0A;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__promo-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-live__promo-text {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__btn-promo {
  margin-top: auto;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Security Section */
.page-live__security-section {
  background-color: #0A0A0A;
}

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

.page-live__security-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid #3A2A12;
}

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

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

.page-live__faq-item {
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #111111;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2C14E;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B;
  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;
  background-color: #0A0A0A;
}

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

.page-live__faq-answer p {
  margin: 0;
  padding-bottom: 5px;
}

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

.page-live__partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__partner-logo {
  max-width: 167px;
  height: 127px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) drop-shadow(0 0 5px #FFD36B);
  transition: filter 0.3s ease;
}

.page-live__partner-logo:hover {
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 10px #FFD36B);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-live__cta-content {
    order: 2;
  }
  .page-live__cta-image-wrapper {
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding for header offset */
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__hero-cta-buttons,
  .page-live__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__hero-image,
  .page-live__cta-image,
  .page-live__app-image,
  .page-live__promo-image,
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-live__container,
  .page-live__section,
  .page-live__card,
  .page-live__feature-item,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__security-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__partner-logo {
    max-width: 100px; /* Adjust size for mobile if needed, but maintain aspect ratio */
    height: auto;
  }
  .page-live__faq-list {
    padding: 0;
  }
  .page-live__faq-item {
    margin-left: 0;
    margin-right: 0;
  }
  .page-live__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-live__faq-answer {
    padding: 0 15px;
  }
  .page-live__faq-item.active .page-live__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}