body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: white;
    display: grid;
    grid-template-columns: 2.5fr 5fr 2.5fr;
    min-height: 100vh;
}
.left-bg {
    background-color: #fff;
}
.right-bg {
    background-color: #fff;
}
.portfolio-content {
    background-color: #fff;
    padding: 20px;
    color: black;
}
.card {
    background: #3f4048;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    margin: 0;
    text-align: left;
    position: fixed;
    left: 20px;
    bottom: 20px;
}
.avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0;
    margin-bottom: 10px;
    float: left;
}
.avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
}
.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #3f4048;
    background-color: #747f8d;
}
.status-online {
    background-color: #3ba55c;
}
.status-idle {
    background-color: #faa61a;
}
.status-dnd {
    background-color: #ed4245;
}
.status-offline {
    background-color: #747f8d;
}
.activity {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    border-bottom: 1px solid #444;
    align-items: flex-start;
    clear: both;
}
.activity-image-container {
    position: relative;
    width: 60px;
    height: 60px;
}
.activity-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}
.activity-image.yt-image {
    width: 60px;
    height: 33.64px;
    margin-top: 15px;
}
.activity-small-image {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #3f4048;
    background-color: #3f4048;
    object-fit: cover;
    z-index: 1;
}
.activity-content {
    flex: 1;
    text-align: left;
}
.activity-details {
    font-size: 0.9em;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}
.activity-state {
    font-size: 0.85em;
    color: #aaa;
    margin-bottom: 6px;
}
.track {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8em;
    margin-top: 4px;
}
.bar {
    flex: 1;
    height: 3px;
    background: #444;
    border-radius: 2px;
    overflow: hidden;
}
.bar-inner {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.5s linear;
}
#name {
    margin-left: 90px;
    margin-top: 20px;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    clear: both;
}
.username-value {
    font-size: 0.9em;
}
.tag-group {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #2c2d32;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
}
.tag-icon {
    width: 14px;
    height: 14px;
}
.hypesquad-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    .left-bg, .right-bg {
        display: none;
    }
    
    .portfolio-content {
        width: 100%;
        padding: 10px;
    }
    
    .card {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: 100%;
        margin: 20px 0;
    }
    
    #name {
        margin-left: 0;
        margin-top: 10px;
        clear: both;
    }
    
    .avatar-container {
        float: none;
        margin-right: 15px;
        display: inline-block;
        vertical-align: top;
    }
    
    .activity-details {
        max-width: calc(100vw - 160px);
        white-space: normal;
    }
    
    .user-info {
        flex-wrap: wrap;
    }
}