body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1b2838;
    color: #c7d5e0;
}


.profile-header {
    background: url('background-image.jpg') center/cover no-repeat;
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a475e;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 5px;
    border: 2px solid #c7d5e0;
    margin-right: 20px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
}

.profile-level {
    background-color: #2a475e;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.showcase {
    padding: 20px;
    border-bottom: 1px solid #2a475e;
}

.showcase-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.recent-activity {
    padding: 20px;
    border-bottom: 1px solid #2a475e;
}

.recent-activity-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.friends-list {
    padding: 20px;
}

.friends-list-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.friend {
    display: inline-block;
    text-align: center;
    margin: 5px;
}

.friend img {
    width: 64px;
    height: 64px;
    border-radius: 5px;
}

.friend-name {
    font-size: 12px;
    margin-top: 5px;
}