.page-live {
  color: #000000; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.page-live__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

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

.page-live__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1.1em;
}

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

.page-live__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-live__button--login:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.page-live__hero-image {
  margin-top: 40px;
}

.page-live__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 1200px; /* Display width */
  height: 675px; /* Display height */
  object-fit: cover;
}

.page-live__about-section,
.page-live__games-section,
.page-live__bonus-section,
.page-live__safety-section,
.page-live__mobile-section,
.page-live__faq-section,
.page-live__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-live__about-title,
.page-live__games-title,
.page-live__bonus-title,
.page-live__safety-title,
.page-live__mobile-title,
.page-live__faq-title,
.page-live__cta-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live__about-text,
.page-live__games-description,
.page-live__bonus-description,
.page-live__safety-text,
.page-live__mobile-description,
.page-live__faq-answer,
.page-live__cta-description {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__feature-item img {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
}

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

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

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

.page-live__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100%;
}

.page-live__game-card-title {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-live__game-card-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-live__button--play {
  background-color: #000000;
  color: #FFFFFF;
  margin: 0 15px 20px;
  padding: 12px 20px;
  font-size: 1em;
}

.page-live__button--play:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-live__step-number {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  font-size: 1.2em;
}

.page-live__button--claim:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__safety-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-live__safety-content {
  text-align: center;
}

.page-live__safety-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  width: 600px; /* Display width */
  height: 450px; /* Display height */
  object-fit: cover;
}

.page-live__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 30px;
  font-size: 1em;
}

.page-live__button--learn-more:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__mobile-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-live__mobile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  width: 400px; /* Display width */
  height: 533px; /* Display height */
  object-fit: cover;
}

.page-live__mobile-content {
  text-align: center;
}

.page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 30px;
  font-size: 1.2em;
}

.page-live__button--download:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

.page-live__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 12px;
}

.page-live__cta-title {
  color: #FFFFFF;
}

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

.page-live__button--join {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  font-size: 1.3em;
}

.page-live__button--join:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* Media Queries for Responsiveness */
@media (min-width: 769px) {
  .page-live__hero-container {
    flex-direction: row;
    text-align: left;
  }

  .page-live__hero-content {
    text-align: left;
    padding-right: 40px;
  }

  .page-live__safety-container,
  .page-live__mobile-container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .page-live__safety-content,
  .page-live__mobile-content {
    text-align: left;
    flex: 1;
    padding-right: 40px;
  }
  
  .page-live__mobile-image {
    order: 2; /* Image on right for desktop */
    padding-left: 40px;
  }
  
  .page-live__safety-image {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }

  .page-live__hero-description {
    font-size: 1em;
  }

  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-live__about-title,
  .page-live__games-title,
  .page-live__bonus-title,
  .page-live__safety-title,
  .page-live__mobile-title,
  .page-live__faq-title,
  .page-live__cta-title {
    font-size: 2em;
  }

  .page-live__about-text,
  .page-live__games-description,
  .page-live__bonus-description,
  .page-live__safety-text,
  .page-live__mobile-description,
  .page-live__faq-answer,
  .page-live__cta-description {
    font-size: 0.95em;
  }

  .page-live__feature-item img,
  .page-live__game-card img,
  .page-live__safety-image img,
  .page-live__mobile-image img,
  .page-live__hero-image img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are not too small */
  .page-live__feature-item img,
  .page-live__game-card img,
  .page-live__safety-image img,
  .page-live__mobile-image img {
    min-width: 200px;
    min-height: 200px;
  }

  /* Override specific image widths for mobile to prevent overflow */
  .page-live__hero-image img {
    width: 100%; /* Take full width of container */
    height: auto;
  }

  .page-live__safety-image img {
    width: 100%;
    height: auto;
  }

  .page-live__mobile-image img {
    width: 100%;
    height: auto;
  }
}