.profile-card {
    width: 600px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease-in-out; 
}

@media (min-width: 1024px) {
    .profile-card {
        width: 800px; 
        padding: 50px;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .profile-info h1 {
        font-size: 34px;
    }

    .bio {
        width: 85%;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .profile-card {
        width: 90%;  
        padding: 25px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .profile-info h1 {
        font-size: 24px;
    }

    .bio {
        font-size: 14px;
    }
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profile-pic {
    width: 140px; 
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
}

/* Hover effect for Alice */
.profile-info h1 {
    font-size: 32px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Glow effect */
.profile-info h1:hover {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}


.icons {
    font-size: 24px;
    margin-left: 5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.smallbio {
    font-size: 14px;
    opacity: 0.7;
}

.bio {
    margin-top: 20px;
    font-size: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-align: left;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}


.social-icon {
    font-size: 32px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, text-shadow 0.3s, filter 0.3s;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}