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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Main color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* White text on dark background */
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

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

.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;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Minimum width for buttons */
  text-align: center;
}

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

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

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

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

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

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

.page-live__games-overview,
.page-live__features-section,
.page-live__promotions-section,
.page-live__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

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

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

.page-live__game-card:hover {
  transform: translateY(-5px);
}

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

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

.page-live__game-text {
  padding: 0 20px;
  color: #666666;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.page-live__feature-text {
  color: #666666;
}

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

.page-live__promo-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-live__promo-card:hover {
  transform: translateY(-5px);
}

.page-live__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__promo-title {
  font-size: 1.8em;
  margin: 20px 0 10px 0;
  color: #FCBC45;
}

.page-live__promo-text {
  padding: 0 20px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

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

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

.page-live__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-live__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

.page-live__floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-live__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.page-live__floating-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__floating-button--register:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-live__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__floating-button--login:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header for mobile */
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    min-width: unset;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 1em;
  }
  .page-live__games-grid,
  .page-live__features-grid,
  .page-live__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .page-live__floating-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  /* Content area images must be at least 200px where applicable, but max-width: 100% handles overflow */
  .page-live__game-image, .page-live__feature-icon, .page-live__promo-image {
    width: 100%; /* Ensures they scale down */
    height: auto; /* Maintains aspect ratio */
    min-height: 200px; /* Minimum height for visual importance */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.5em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__cta-title {
    font-size: 1.5em;
  }
  .page-live__hero-content {
    padding: 20px 15px;
  }
  .page-live__games-overview,
  .page-live__features-section,
  .page-live__promotions-section,
  .page-live__cta-section {
    margin: 40px auto;
    padding: 15px;
  }
}