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

.page-live__text-highlight {
  color: #FFD36B; /* Glow / Auxiliary color */
  font-weight: bold;
}

.page-live__text-link {
  color: #FFD36B;
  text-decoration: underline;
}

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

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

.page-live__section-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for H1, H2, H3 */
  font-weight: 700;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__section-description {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-live__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #FFF6D6;
}

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

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

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  color: #000000;
}

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

.page-live__btn-secondary:hover {
  background: #FFD36B;
  color: #000000;
}

.page-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-live__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* HERO Section */
.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Desktop padding to clear fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-live__hero-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.page-live__hero-text-container {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 15px;
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-live__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

/* About Live Section */
.page-live__about-live {
  background-color: #0A0A0A;
}

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

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

.page-live__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

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

/* Game Selection Section */
.page-live__game-selection {
  background-color: #0A0A0A;
}

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

.page-live__game-card {
  text-align: center;
}

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

.page-live__game-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

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

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

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

.page-live__promo-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

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

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

/* Getting Started Section */
.page-live__getting-started {
  background-color: #0A0A0A;
}

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

.page-live__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__step-icon {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live__step-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

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

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

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

.page-live__security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-live__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__icon-exception {
  width: 100px; /* Specific override for security icons */
  height: 100px; /* Specific override for security icons */
  min-width: 100px;
  min-height: 100px;
}

.page-live__security-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-live__security-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* Mobile Experience Section */
.page-live__mobile-experience {
  background-color: #0A0A0A;
}

.page-live__mobile-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-live__mobile-text-content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  margin-top: 40px;
}

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

/* Support Section */
.page-live__support {
  background-color: #0A0A0A;
}

.page-live__contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-live__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-color: #3A2A12; /* Border */
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border-bottom: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
}

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

.page-live__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(0deg); /* Explicitly set to 0 for '-' */
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background: #111111;
  color: #FFF6D6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 15px 20px;
}

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

/* Conclusion Section */
.page-live__conclusion {
  background-color: #0A0A0A;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 100px);
  }
  .page-live__mobile-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-text-content {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .page-live__mobile-image-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile padding */
  }
  .page-live__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-live__hero-description,
  .page-live__section-description {
    font-size: 1rem;
  }
  .page-live__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }
  .page-live__cta-buttons,
  .page-live__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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;
  }
  .page-live__faq-question,
  .page-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__icon-exception {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
  }
}

@media (max-width: 480px) {
  .page-live__main-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }
  .page-live__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .page-live__feature-image,
  .page-live__game-image,
  .page-live__promo-image {
    height: 150px;
  }
  .page-live__step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .page-live__faq-question h3 {
    font-size: 1rem;
  }
  .page-live__faq-toggle {
    font-size: 1.5rem;
  }
}