/* Home page styles */
body.home-page {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}


body.home-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.home-container {
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.home-back-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 0.875rem;
  z-index: 1;
}

.home-back-link a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.home-back-link a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.home-credit {
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  z-index: 1;
}

.home-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.home-credit a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
