
body {
    background: linear-gradient(160deg,
        #1E2A28 0%,
        #2E4B47 40%,
        #54B5A4 90%
    );
    background-attachment: fixed;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
* {
    transition: all 0.25s ease;
}



.card {
    box-shadow: none !important; 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);    
    border-radius: 20px;
    width: 450px; 
}


.bio-links .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600 !important;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 12px 16px;

   
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

   
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}


.bio-links .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


.bio-links .btn-primary:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.25);
}


.bio-links .btn-primary i {
    font-size: 1.3rem;
    line-height: 0;
}


.card h2, .card p, .card .text-muted {
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); 
}


.bio-header img {
    border: 4px solid rgba(255, 255, 255, 0.8); 
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bio-header img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}