* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Code Pro', monospace;
}

body {
    background-color: rgb(10, 10, 10);
    background-image: url('/files/bg.gif');
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

.profile {
    margin-bottom: 30px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 0px 13px 0px #ffffffbf;
    -moz-box-shadow: 0px 0px 13px 0px #ffffffbf;
    box-shadow: 0px 0px 13px 0px #ffffffbf;
}

.username {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #9cffd1;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background-color: #111;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease, color 0.3s ease;
    cursor: pointer;
    height: 54px;

    -webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
}

.link-item:hover {
    transform: translateY(-2px);
    -webkit-box-shadow: 0px 0px 13px 0px #9cffd1bf;
    -moz-box-shadow: 0px 0px 13px 0px #9cffd1bf;
    box-shadow: 0px 0px 13px 0px #9cffd1bf;
}

.link-item:hover i {
    color: #9cffd1;
}

.link-item i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-item span {
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Delay each link animation */
.links .link-item:nth-child(1) { animation-delay: 0.2s; }
.links .link-item:nth-child(2) { animation-delay: 0.4s; }
.links .link-item:nth-child(3) { animation-delay: 0.6s; }
.links .link-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
