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

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text for light gradient background */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.page-live__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #000000; /* Dark text for light gradient background */
}

.page-live__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #333333; /* Dark text for light gradient background */
}

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

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

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

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

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

.page-live__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
  color: #FFF6D6;
}

.page-live__section-description--light {
  color: #FFF6D6;
}

.page-live__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-live__grid-2-col--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-live__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #FFF6D6;
}

.page-live__text-block--light {
  color: #FFF6D6;
}

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

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

.page-live__dark-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

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

.page-live__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

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

.page-live__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E;
}

.page-live__card-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #FFF6D6;
}

.page-live__card-button {
  margin-top: auto;
}

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

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

.page-live__step-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  background: #3A2A12;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid #FFD36B;
}

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

.page-live__step-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-live__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-live__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #000000; /* Dark text for light button */
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid #F2C14E; /* Main color */
  color: #F2C14E; /* Main color */
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.page-live__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

.page-live__faq-list {
  margin-top: 40px;
}

.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;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E;
  transition: background-color 0.3s ease;
}

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

.page-live__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  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;
}

.page-live__faq-answer p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

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

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

.page-live__cta-container {
  text-align: center;
}

.page-live__cta-button {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-live__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
  .page-live__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-live__grid-2-col--reverse {
    grid-template-columns: 1fr;
  }
  .page-live__image-right, .page-live__image-left {
    order: -1; /* Image first on mobile */
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: unset;
    padding: 20px 0;
  }
  .page-live__section-padding {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-live__section-description {
    font-size: 1rem;
  }
  .page-live__game-cards,
  .page-live__steps-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile image responsiveness */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .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-cta-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-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
  .page-live__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }
  .page-live__faq-answer {
    padding: 0 15px;
  }
  .page-live__faq-item.active .page-live__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-live__hero-description {
    font-size: 0.9rem;
  }
  .page-live__step-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  .page-live__card-title {
    font-size: 1.3rem;
  }
  .page-live__step-title {
    font-size: 1.2rem;
  }
}