* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    background-color: #050505;
    color: #fff;
    font-family: 'Fira Code', monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: black;
    z-index: -1;
    opacity: 0.3;
}

.card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 340px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    

    opacity: 1;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    min-height: 28px; 
}

p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

#flake-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; 
    z-index: 10; 
    overflow: hidden;
}

.nix-flake {
    position: absolute;
    top: -50px;
    filter: drop-shadow(0 0 5px rgba(126, 186, 228, 0.6));
    animation: fall linear forwards;
    opacity: 0.9;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}