* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1a1a1a;
}

.profile-card {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.profile-card:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.profile-image {
    width: 150px;
    height: 150px;
   border-radius: 50%;
    margin: 0 auto 20px;
    background-color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.1);
}

.profile-name {
     width: 13ch;
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    animation: typing 2s steps(22), blink .5s step-end infinite 
    alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
}
@keyframes typing {
from {
 width: 0
 }
}

@keyframes blink {
50% {
border-color: transparent
}
}

.profile-title {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.profile-bio {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-instagram:hover {
    color: #e4405f;
}

/* Glowing border effect */
.profile-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, transparent);
    z-index: -1;
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 0.19;
}
