* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 83, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    width: 100%;
    padding: 40px 50px;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
    position: relative;
    z-index: 1;
}

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



h1 {
    color: #ffffff;
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title {
    color: #34d399;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.bio {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    flex: 0 1 calc(33.333% - 10px);
    min-width: 160px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 211, 153, 0.3);
    border-color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

.social-link.github:hover {
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.3);
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
}

.social-link.linkedin:hover {
    box-shadow: 0 15px 40px rgba(14, 118, 168, 0.3);
    border-color: #0e76a8;
    background: rgba(14, 118, 168, 0.1);
}

.social-link.leetcode:hover {
    box-shadow: 0 15px 40px rgba(255, 161, 22, 0.3);
    border-color: #ffa116;
    background: rgba(255, 161, 22, 0.1);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: white;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: rotate(360deg) scale(1.2);
}

.contact-section {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.contact-btn::after {
    content: '→';
    position: absolute;
    right: 18px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.6);
}

.contact-btn:hover::after {
    transform: translateX(5px);
}

.contact-btn:active {
    transform: translateY(-1px);
}

    @media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.2em;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        flex: 1 1 auto;
        width: 100%;
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(52, 211, 153, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}