/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: url('assets/background-stars.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e0e0e0;
  font-family: 'Source Sans 3', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  position: relative;
  transform: translateY(-5vh);
}

/* Overlay for better text visibility */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(3px);
  z-index: 0;
  transform: translateY(5vh);
}

header, main, footer {
  position: relative;
  z-index: 1;
}

/* Header */
header {
  max-width: 800px;
  margin-bottom: 3rem;
}

h1 {
  font-family: 'Fascinate', 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #caa0ff;
  text-transform: none;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tagline {
  font-size: 1rem;
  color: #d0c5e8;
  line-height: 1.6;
}

/* Links Section */
.links {
  list-style: none;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links a {
  display: block;
  text-decoration: none;
  color: #e0e0e0;
  background-color: rgba(20, 20, 30, 0.8);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(155, 93, 229, 0.4);
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(2px);
}

.links a:hover {
  color: #fff;
  border-color: #9b5de5;
  box-shadow: 0 0 15px #9b5de5;
  transform: translateY(-2px);
}

/* Footer */
footer {
  position: fixed;
  bottom: 10px;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  width: 100%;
  z-index: 1;
  transform: translateY(5vh);
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
  .links a {
    font-size: 0.95rem;
  }
}
