/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Profile Container */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.profile-avatar {
    margin-bottom: 20px;
}

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-title {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

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

.profile-content h2 {
    color: #667eea;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.profile-content h2:first-child {
    margin-top: 0;
}

.profile-content p {
    margin-bottom: 15px;
    color: #555;
}

.profile-content ul {
    list-style: none;
    padding-left: 0;
}

.profile-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.profile-content li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.profile-content strong {
    color: #764ba2;
}

.profile-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.profile-content a:hover {
    border-bottom-color: #667eea;
}

.profile-content hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

/* Profile Footer */
.profile-footer {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-link .icon {
    width: 20px;
    height: 20px;
}

/* Container (for default layout) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Site Header (for default layout) */
.site-header {
    background: #667eea;
    color: white;
    padding: 20px 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.site-nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s ease;
}

.site-nav a:hover {
    opacity: 0.8;
}

/* Page Content (for default layout) */
.page-content {
    padding: 40px;
    min-height: calc(100vh - 200px);
}

/* Site Footer (for default layout) */
.site-footer {
    background: #f8f9fa;
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .profile-header {
        padding: 40px 20px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-content {
        padding: 30px 20px;
    }
    
    .profile-footer {
        padding: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .avatar-img {
        width: 120px;
        height: 120px;
    }
}
