.page-live {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-live__heading {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-live__sub-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-live__button--play, .page-live__button--claim-bonus, .page-live__button--play-game, .page-live__button--download-app, .page-live__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--play:hover, .page-live__button--claim-bonus:hover, .page-live__button--play-game:hover, .page-live__button--download-app:hover, .page-live__button--join-now:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-live__button--view-promo, .page-live__button--learn-security, .page-live__button--view-all-promo {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-live__button--view-promo:hover, .page-live__button--learn-security:hover, .page-live__button--view-all-promo:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* Why Choose Section */
.page-live__why-choose-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-live__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-live__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image size within card */
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-live__game-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-live__game-text {
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-live__button--play-game {
  margin: 0 20px 20px;
  padding: 12px 20px;
  font-size: 1em;
}

/* How to Claim Section */
.page-live__how-to-claim-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-live__steps-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

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

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-live__step-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

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

.page-live__step-text {
  color: #555555;
}

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

.page-live__steps-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Constrain image size */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-live__button--claim-bonus {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__promo-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__promo-text {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__button--view-promo {
  margin-top: auto; /* Push button to bottom */
}

.page-live__all-promo-cta {
  text-align: center;
  margin-top: 50px;
}

/* Security Section */
.page-live__security-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__security-section .page-live__container {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

.page-live__security-section .page-live__heading {
  color: #FCBC45;
  text-align: left;
}

.page-live__security-section .page-live__sub-description {
  color: #f0f0f0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-live__security-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-live__security-item {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: 1.1em;
}

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

.page-live__security-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-live__mobile-section .page-live__container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse; /* Image on right, text on left */
}

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

.page-live__mobile-section .page-live__heading, .page-live__mobile-section .page-live__sub-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-live__button--download-app {
  margin-top: 30px;
}

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

.page-live__mobile-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image size */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

/* .page-live__faq-question.active::after { content: '-'; } */

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  display: none; /* Hidden by default, JS will toggle */
}

/* Final CTA Section */
.page-live__cta-final-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-final-section .page-live__heading {
  color: #FCBC45;
}

.page-live__cta-final-section .page-live__sub-description {
  color: #f0f0f0;
}

.page-live__button--join-now {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.2em;
  }
  .page-live__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 0;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__heading {
    font-size: 1.8em;
  }
  .page-live__sub-description {
    font-size: 0.9em;
  }
  .page-live__steps-wrapper, .page-live__security-section .page-live__container, .page-live__mobile-section .page-live__container {
    flex-direction: column;
  }
  .page-live__security-section .page-live__heading, .page-live__security-section .page-live__sub-description,
  .page-live__mobile-section .page-live__heading, .page-live__mobile-section .page-live__sub-description {
    text-align: center;
  }
  .page-live__security-list {
    text-align: left;
    padding-left: 20px;
  }
  .page-live__security-image, .page-live__mobile-image, .page-live__steps-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  /* Enforce image sizing for content area images */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  /* No content area image should be smaller than 200px */
  .page-live__feature-image, .page-live__game-image, .page-live__steps-image, .page-live__security-image, .page-live__mobile-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__heading {
    font-size: 1.5em;
  }
  .page-live__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__promo-card {
    padding: 20px;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__promo-title {
    font-size: 1.3em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
  }
  .page-live__hero-section {
    padding-bottom: 40px;
  }
}