* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body 
{
    font-family: "Lucida Console", "Courier New", monospace;
    background: linear-gradient(135deg, #385cfc 0%, #552288 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.developer-card 
{
    border-radius: 20px;
    box-shadow: 
        0 0 50px rgba(121, 33, 121, 0.6),
        0 0 80px rgba(0, 255, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    transition: all 0.5s ease;
    
    background: linear-gradient(
        lime,
        #552288
    );
}

.developer-card:hover 
{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 70px rgba(121, 33, 121, 0.8),
        0 0 120px rgba(0, 255, 0, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.card-body {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header 
{
    text-align: center;
    padding: 30px 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.avatar 
{
    width: 120px;
    height: 120px;
    border-radius: 4em;
    border: 4px solid transparent;
    margin-bottom: 15px;
    object-fit: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.name 
{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    color: black;
}

.title 
{
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
    color: black;
}

.description 
{
    color: lime;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.skills 
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tag 
{
    background: white;
    color: black;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.skill-tag:hover 
{
    background: lime;
    color: black;
    transform: scale(1);
}

.card-footer 
{
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.social-link 
{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e344efa;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.social-link:hover 
{
    background: #667eea;
    color: white;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.social-link:nth-child(1):hover 
{
    background: #333; 
}
.social-link:nth-child(3):hover 
{ 
    background: #0088cc; 
}

@media (max-width: 480px) 
{
    .developer-card 
    {
        margin: 10px;
    }
    
    .card-header 
    {
        padding: 20px 15px;
    }
    
    .avatar 
    {
        width: 100px;
        height: 100px;
    }
    
    .social-link 
    {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}