.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 20px;
  box-sizing: border-box;
}

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

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

.page-live__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-live__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-live__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
  position: relative;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  margin-top: -100px; /* Pull content up slightly over the image */
}

.page-live__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 900;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

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

.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.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-live__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.2);
}

.page-live__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.4);
}

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

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

.page-live__grid-margin-top {
  margin-top: 60px;
}

.page-live__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

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

.page-live__card-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #FFF6D6;
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-live__game-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-title {
  font-size: 2em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__game-description {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-live__content-block {
  text-align: left;
  padding: 20px;
}

.page-live__content-block-title {
  font-size: 2em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__content-block-description {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

.page-live__image-block {
  padding: 20px;
}

.page-live__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-live__promo-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-live__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF6D6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-live__step-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.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: 20px;
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.05);
}

.page-live__faq-question-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B;
  margin: 0;
}

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

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(0deg); /* Explicitly set to 0 to counter potential default rotations */
}

.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-align: left;
}

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

.page-live__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
}

.page-live__cta-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #111111;
}

.page-live__cta-bottom .page-live__section-title {
  color: #111111;
}

.page-live__cta-bottom .page-live__section-description {
  color: #333333;
}

.page-live__cta-bottom .page-live__btn-primary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #111111;
  box-shadow: none;
}

.page-live__cta-bottom .page-live__btn-primary:hover {
  background: #333333;
  color: #FFD36B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Text Contrast Fixes for specific elements on dark backgrounds */
.page-live__text-contrast-fix {
  color: #FFF6D6; /* Ensure light text on dark backgrounds */
}

.page-live__card-contrast-fix {
  background-color: #111111; /* Ensure dark card background */
  color: #FFF6D6; /* Ensure light text on dark cards */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-live__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-live__hero-content {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .page-live {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-live__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding for header offset */
    padding-bottom: 40px;
  }
  .page-live__hero-image-wrapper {
    max-height: 400px;
  }
  .page-live__hero-content {
    padding: 20px 15px;
    margin-top: -30px;
  }
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__grid-3-col,
  .page-live__grid-2-col,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__step-card,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 15px;
  }
  .page-live__card-image,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-live__content-block,
  .page-live__image-block {
    padding: 15px;
  }
  .page-live__grid-margin-top {
    margin-top: 30px;
  }
  .page-live__faq-question,
  .page-live__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}