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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

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

.header {
    margin-bottom: 40px;
}

.profile-name {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.github {
    background: #24292e;
    color: #ffffff;
}

.github:hover {
    background: #1a1e22;
}

.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.linkedin:hover {
    background: #005885;
}

.projects {
    margin: 30px 0;
}

.project-btn {
    padding: 16px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.bio {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.bio p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 25px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}