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

.page-live__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
  padding: 0;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.page-live__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

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

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #F0F0F0;
}

.page-live__hero-actions {
  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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-live__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Custom register text color */
  border: 2px solid #FFFFFF;
}

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

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

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

.page-live__button--play, .page-live__button--action, .page-live__button--promo, .page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--play:hover, .page-live__button--action:hover, .page-live__button--promo:hover, .page-live__button--download:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

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

.page-live__feature-grid, .page-live__game-grid, .page-live__steps-grid, .page-live__testimonial-grid, .page-live__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-live__feature-card, .page-live__game-card, .page-live__step-card, .page-live__testimonial-card, .page-live__security-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__step-card:hover, .page-live__testimonial-card:hover, .page-live__security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live__feature-icon, .page-live__game-image, .page-live__app-image, .page-live__security-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-live__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-live__feature-heading, .page-live__game-heading, .page-live__step-heading, .page-live__app-heading, .page-live__security-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.page-live__feature-text, .page-live__game-text, .page-live__step-text, .page-live__app-text, .page-live__testimonial-text, .page-live__security-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  text-align: center;
}

.page-live__game-card .page-live__button {
  margin-top: auto;
  width: auto;
  padding: 10px 20px;
  font-size: 0.95em;
}

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

.page-live__section--bonuses .page-live__bonus-container, .page-live__section--mobile-app .page-live__app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-live__bonus-image, .page-live__app-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-live__bonus-content, .page-live__app-content {
  flex: 1;
  max-width: 50%;
}

.page-live__bonus-heading, .page-live__app-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.page-live__bonus-text, .page-live__app-text {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 30px;
  text-align: left;
}

.page-live__testimonial-card {
  background-color: #F8F8F8;
  padding: 25px;
  border-left: 5px solid #FCBC45;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.page-live__testimonial-text {
  font-style: italic;
  color: #555555;
  margin-bottom: 15px;
}

.page-live__testimonial-author {
  font-weight: bold;
  color: #000000;
  text-align: right;
}

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

.page-live__security-icon {
  width: 150px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-live__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__bonus-container, .page-live__app-container {
    flex-direction: column;
    text-align: center;
  }
  .page-live__bonus-image, .page-live__app-image {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }
  .page-live__bonus-content, .page-live__app-content {
    max-width: 100%;
  }
  .page-live__bonus-heading, .page-live__app-heading {
    text-align: center;
  }
  .page-live__bonus-text, .page-live__app-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__feature-grid, .page-live__game-grid, .page-live__steps-grid, .page-live__testimonial-grid, .page-live__security-features {
    grid-template-columns: 1fr;
  }
  .page-live__section {
    margin: 40px auto;
  }
  .page-live__cta-actions {
    flex-direction: column;
  }
  .page-live__feature-icon, .page-live__game-image, .page-live__app-image, .page-live__security-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
  .page-live__feature-icon {
    width: 200px; /* Specific smaller width for these icons if needed, but still >= 200px */
    height: auto;
  }
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live {
    overflow-x: hidden;
  }
}