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

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

.page-live__hero-section {
  background-color: #f8f8f8;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-live__hero-title {
  font-size: 3.2em;
  color: #E44D26; /* Main color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__btn {
  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, transform 0.2s ease;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-live__btn--primary {
  background-color: #E44D26; /* Main color */
  color: #ffffff;
  border: 2px solid #E44D26;
}

.page-live__btn--primary:hover {
  background-color: #c93b1e;
  transform: translateY(-2px);
}

.page-live__btn--secondary {
  background-color: transparent;
  color: #E44D26; /* Main color */
  border: 2px solid #E44D26;
}

.page-live__btn--secondary:hover {
  background-color: #E44D26;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-live__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  min-width: 150px;
}

.page-live__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

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

.page-live__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure image meets minimum size */
  min-height: 200px; /* Ensure image meets minimum size */
}

.page-live__section-title {
  font-size: 2.5em;
  color: #E44D26; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-live__about-section, .page-live__games-section, .page-live__bonuses-section, .page-live__get-started-section, .page-live__mobile-section, .page-live__security-section, .page-live__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-live__about-section {
  background-color: #fdfdfd;
}

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

.page-live__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__feature-title {
  font-size: 1.5em;
  color: #FFB300; /* Auxiliary color */
  margin-bottom: 15px;
}

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

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

.page-live__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure image meets minimum size */
  min-height: 200px; /* Ensure image meets minimum size */
}

.page-live__game-title {
  font-size: 1.6em;
  color: #E44D26; /* Main color */
  margin-bottom: 10px;
}

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

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

.page-live__bonus-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFB300; /* Auxiliary color accent */
}

.page-live__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__bonus-title {
  font-size: 1.8em;
  color: #E44D26; /* Main color */
  margin-bottom: 15px;
}

.page-live__bonus-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-live__promo-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555;
}

.page-live__promo-note a {
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

.page-live__promo-note a:hover {
  text-decoration: underline;
}

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

.page-live__step-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #E44D26; /* Main color accent */
}

.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__step-title {
  font-size: 1.6em;
  color: #FFB300; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-live__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-live__mobile-section {
  background-color: #f8f8f8;
}

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

.page-live__mobile-content {
  flex: 1;
  text-align: left;
}

.page-live__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-live__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure image meets minimum size */
  min-height: 200px; /* Ensure image meets minimum size */
}

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

.page-live__security-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFB300;
}

.page-live__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__security-title {
  font-size: 1.5em;
  color: #E44D26;
  margin-bottom: 10px;
}

.page-live__security-description {
  font-size: 1em;
  color: #666666;
}

.page-live__cta-section {
  background-color: #E44D26; /* Main color */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-live__cta-section .page-live__section-title, .page-live__cta-section .page-live__section-intro {
  color: #ffffff;
}

.page-live__cta-section .page-live__btn--primary {
  background-color: #FFB300; /* Auxiliary color */
  color: #333333;
  border-color: #FFB300;
}

.page-live__cta-section .page-live__btn--primary:hover {
  background-color: #e6a200;
  border-color: #e6a200;
}

.page-live__cta-small-text {
  margin-top: 20px;
  font-size: 1.1em;
}

.page-live__cta-small-text a {
  color: #FFB300;
  text-decoration: none;
  font-weight: bold;
}

.page-live__cta-small-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__mobile-container {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-content {
    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__btn {
    min-width: unset;
    width: 100%;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__bonus-grid, .page-live__steps-grid, .page-live__security-features {
    grid-template-columns: 1fr;
  }
  .page-live__about-section, .page-live__games-section, .page-live__bonuses-section, .page-live__get-started-section, .page-live__mobile-section, .page-live__security-section, .page-live__cta-section {
    padding: 40px 0;
  }
  /* Ensure content area images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-actions {
    padding: 0 10px;
  }
  .page-live__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-live__container {
    padding: 0 15px;
  }
}