.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-size: 2em;
    opacity: 1;
    transition: opacity 1s ease-out;
}

body {
    background: black no-repeat fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
}

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: white;
  opacity: 0.8;
  border-radius: 50%;
  animation: fall linear infinite;
  will-change: transform, opacity;
}

@keyframes fall {
  from {
    transform: translateY(0vh);
    opacity: 1;
  }
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}
.profile, .links {
    position: relative;
    z-index: 1;
}

.username {
    font-size: 1.5em;
    font-weight: bold;
    opacity: 0.9;
}

.profile-pic {
    margin-top: 15px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
}

.description {
    font-size: 1em;
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    text-decoration: none;
    background: transparent;
    color: white;
    padding: 12px;
    border: 2px solid white;
    border-radius: 25px;
    width: 250px;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

.links a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}
