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

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

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login color for accent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for accent button */
}

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

.page-live__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for white button */
  border: 2px solid #FCBC45;
}

.page-live__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  margin-top: 15px;
}

.page-live__button--small:hover {
  background-color: #e0a53a;
}

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

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

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-live__why-choose-section, .page-live__getting-started-section, .page-live__popular-games-section, .page-live__technology-section, .page-live__security-section, .page-live__promotions-section, .page-live__support-section, .page-live__cta-final-section, .page-live__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background for sections */
}

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

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

.page-live__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

.page-live__call-to-action {
  text-align: center;
  margin-top: 60px;
}

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

.page-live__step-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-live__step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
}

.page-live__step-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-live__game-title {
  font-size: 1.5em;
  color: #000000;
  padding: 20px 15px 10px;
}

.page-live__game-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-live__tech-list, .page-live__support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live__tech-item, .page-live__support-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

.page-live__tech-title, .page-live__support-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live__tech-description, .page-live__support-description {
  font-size: 0.95em;
  color: #666666;
}

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

.page-live__security-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-live__promotions-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__promotions-section .page-live__section-title, .page-live__promotions-section .page-live__section-intro {
  color: #FFFFFF;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
  padding-bottom: 30px;
}

.page-live__promo-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-live__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.page-live__promo-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-live__promo-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-live__cta-final-section {
  background-color: #f8f8f8;
  text-align: center;
}

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

.page-live__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

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

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 1em;
  }
  .page-live__content-area {
    padding: 30px 15px;
  }
  .page-live__features-grid, .page-live__steps-grid, .page-live__game-cards-grid, .page-live__tech-list, .page-live__security-grid, .page-live__promo-cards-grid, .page-live__support-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-image, .page-live__promo-image {
    height: 180px;
  }
  .page-live__button--small {
    width: auto;
    max-width: none;
  }
  /* Ensure images in content sections are responsive and don't overflow */
  .page-live__features-grid img, .page-live__steps-grid img, .page-live__game-cards-grid img, .page-live__tech-list img, .page-live__security-grid img, .page-live__promo-cards-grid img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}