/* Glowing Profile Card Styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0f0f0f;
    font-family: Arial, sans-serif;
    margin: 0;
}

.card {
    width: 450px;
    padding: 25px;
    background: linear-gradient(135deg, #1e1e1e, #292929);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-radius: 15px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid cyan;
    display: block;
    margin: auto;
    object-fit: cover;
    object-position: center;
} 

.name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.followers {
    font-size: 1.2em;
    color: cyan;
}
