body {
    background: url('https://bin.renev.me/girlalsida.background.night.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    font-family: 'Dancing Script', cursive;
    margin: 0;
}

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

.background-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990; 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeOutBlur 5s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.full-page-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 995; 
}

.content-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
    padding-top: 5vh;
}

.profile-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1; 
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    object-fit: cover;
    animation: popIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
}

.profile-name {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0; 
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.profile-bio {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0; 
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.special-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    height: 60px;
    border-radius: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 400;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s backwards;
}

.links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.link-item {
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.link-item a.link-button {
    display: flex;
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s ease;
    gap: 15px;
    text-decoration: none;
}

.link-item a.link-button:hover {
    transform: scale(1.03);
}

.link-item a.link-button:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.link-button-icon,
.link-button-text {
    background: rgba(255, 255, 255, 0.1); 
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff; 
}

.link-button-icon {
    width: 60px;
    border-radius: 30px 15px 15px 30px;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.link-button-text {
    flex: 1;
    padding: 15px 30px;
    border-radius: 15px 30px 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 400;
}

@keyframes fadeOutBlur {
    0% {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    100% {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

footer p {
    font-size: 1.2em;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}
