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

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

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

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

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    color: #667eea;
    font-size: 3em;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.bio {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

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

.skill {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s;
    cursor: default;
}

.skill:hover {
    background: #764ba2;
    transform: scale(1.05);
}

.projects {
    display: grid;
    gap: 20px;
}

.project {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.project:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project h3 {
    color: #333;
    margin-bottom: 10px;
}

.project p {
    color: #666;
    line-height: 1.6;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1em;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    background: #764ba2;
    color: white;
}

.btn-secondary:hover {
    background: #633d8a;
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
    color: #999;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .skills {
        gap: 10px;
    }
    
    .skill {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}