body {
    margin: 0;
    background: linear-gradient(135deg, #000428, #004e92);
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 50px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.name-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    user-select: none;
    animation: fadeIn 1s ease-in-out;
}

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

.social-icons a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a.linkedin {
    animation: shake 0.5s ease-in-out 1.2s;
}

.social-icons a.instagram {
    animation: shake 0.5s ease-in-out 1.2s;
}

.social-icons a.linkedin:hover {
    color: #0077b5;
}

.social-icons a.instagram:hover {
    color: #E4405F;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(15deg);
    }
    75% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}