/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #fad0c4 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, #EDF7ED 0%, #DCEFD8 100%);
    color: #2d5a4b;
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.name {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0.9;
}

/* Profile Content */
.profile-content {
    padding: 40px 30px;
}

.section {
    margin-bottom: 35px;
}

.section h2 {
    color: #374151;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h2 i {
    color: #059af7;
    width: 20px;
}

.section p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Research List */
.research-list {
    margin-top: 20px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.research-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #059af7;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.research-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.research-item i {
    color: #059af7;
    margin-top: 3px;
    font-size: 1.1em;
}

.research-item strong {
    color: #1f2937;
    font-weight: 600;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.github {
    background: #24292e;
    color: white;
}

.social-link.github:hover {
    background: #1a1e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 41, 46, 0.4);
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-link.email {
    background: #dc2626;
    color: white;
}

.social-link.email:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* Emoji Section */
.emoji-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.emoji-section p {
    color: #92400e;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emoji-section i {
    color: #dc2626;
}

/* Links */
a {
    color: #059af7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #3730a3;
    text-decoration: underline;
}

a i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .profile-content {
        padding: 30px 20px;
    }
    
    .profile-header {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 2em;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .research-list {
        gap: 12px;
    }
    
    .research-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}