body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #0f1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.card {
    width: 320px;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: rgba(20, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00ffcc;
    margin-bottom: 15px;
}

h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

p {
    color: #bbbbbb;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #bbbbbb;
    margin: 0 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00ffcc;
}