@keyframes animate-stars {
    from {
        background-position-y: 0px;
    }
    to {
        background-position-y: -1000px;
    }
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: animate-stars 150s linear infinite;
    z-index: -1;
}

.stars-small {
    background-image: radial-gradient(1px 1px at 50px 150px, white, transparent);
    background-size: 200px 200px;
    animation-duration: 150s;
}

.stars-medium {
    background-image: radial-gradient(2px 2px at 200px 50px, white, transparent);
    background-size: 300px 300px;
    animation-duration: 100s;
}

.stars-large {
    background-image: radial-gradient(2px 2px at 100px 300px, white, transparent);
    background-size: 400px 400px;
    animation-duration: 50s;
}

@font-face {
    font-family: 'Thaleah';
    src: url('fonts/thaleahfat.ttf') format('truetype');
}

body {
    background-color: #4B2E83;
    color: #C5B4E3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.title-container {
    z-index: 1;
    position: relative;
    text-align: center;
}

h1 {
    font-family: 'Thaleah', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: pixelated;
    text-shadow: 
        1px 1px 0 #3A2269,
        2px 2px 0 #3A2269,
        3px 3px 0 #3A2269,
        4px 4px 0 #3A2269,
        5px 5px 0 #3A2269;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

#splash-text {
    position: absolute;
    top: 70px;
    left: 50%;
    animation: bounce 2.5s ease-in-out infinite;
    color: #FFD700;
    font-family: 'Thaleah', sans-serif;
    font-size: 1.8rem;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: pixelated;
    text-shadow: 2px 2px 0px #3A2269;
    white-space: nowrap;
}

.social-links {
    z-index: 1;
    margin-top: 20px;
}

.social-links a {
    color: #C5B4E3;
    font-size: 2rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFFFFF;
}

.bio-container {
    z-index: 1;
    text-align: center;
    margin-top: 20px;
}

.bio-container p {
    margin: 8px 0;
    font-size: 1rem;
}