.page-live {
  color: #333333; /* Default text color for light body background */
}

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

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

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  color: #FFFFFF;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px; /* PC desktop padding */
  background-color: #000000; /* Fallback for image loading */
  overflow: hidden;
}

.page-live__hero-section::before { /* Overlay for darkening */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 1;
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Image behind overlay */
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 150px;
  filter: none; /* Ensure no filter is applied to the image itself */
}

.page-live__hero-content {
  position: relative;
  z-index: 2; /* Content above overlay */
  max-width: 900px;
  padding: 20px;
}

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

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

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

.page-live__hero-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__hero-btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__hero-btn--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-live__hero-btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__hero-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Why Choose Us Section */
.page-live__why-choose-us {
  background-color: #FFFFFF;
}

.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: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px; /* Ensure minimum display height */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

/* Featured Games Section */
.page-live__featured-games {
  background-color: #f2f2f2;
}

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

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

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px; /* Ensure minimum display height */
}

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

.page-live__game-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-live__game-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__game-btn:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* How It Works Section */
.page-live__how-it-works {
  background-color: #FFFFFF;
}

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

.page-live__step-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-live__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-live__cta-wrapper {
  margin-top: 50px;
}

.page-live__cta-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-live__cta-btn:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Promotions Section */
.page-live__promotions {
  background-color: #f2f2f2;
}