body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    /* Sleek dark gradient background */
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f8fafc;
}

.card {
    /* Dark semi-transparent card with blur */
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #334155;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    margin-bottom: 24px;
}

h1 {
    margin: 0 0 16px 0;
    font-size: 26px;
    font-weight: 700;
    color: #f1f5f9;
}

.badge {
    display: inline-block;
    /* Larger, reddish badge for visibility */
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Default dark button state */
    background: #334155;
    color: #f8fafc;
}

.link-btn i {
    font-size: 18px;
}

/* Hover effects with brand colors */
.linkedin:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.github:hover {
    background: #24292e;
    transform: translateY(-2px);
}

.facebook:hover {
    background: #1877f2;
    transform: translateY(-2px);
}