body {
    background-color: #181818;
    color: #ffffff;
    font-family: 'IBM Plex Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Typography improvements */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    color: #ffffff;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0.5rem 0 0.5rem;
    letter-spacing: -0.01em;
}

.credentials {
    font-size: 0.95rem;
    color: #8C8C8C;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Profile image improvements */
.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile:hover {
    filter: none;
    transform: scale(1.05);
}

/* Bio sections */
.bio {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* Links styling */
.connect-section {
    margin-top: 3rem;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 2rem 0;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.2s ease;
}

.link-item:hover {
    padding-left: 0.5rem;
    color: #fff;
}

.link-label {
    font-size: 1.1rem;
    font-weight: 400;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.location {
    margin: 2rem 0;
    color: #8C8C8C;
    font-size: 0.95rem;
}

.last-update {
    color: #666;
    font-size: 0.85rem;
    margin-top: 3rem;
}

.emoji-icon {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.last-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .profile {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
}