:root{
    --accent: #7899d4;
    --bg: #0b0b0b;
    --card: #101010;
    --muted: #cfcfcf8a;
    --glass: rgba(255,255,255,0.03);
    font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #eaeaea;
}

html,body{ height:100%; }
body{
    margin: 0;
    background: #0b0b0b;
    padding: 28px;
    line-height: 1.45;
}

main {
    max-width: 1000px;
    margin: 18px auto;
}

/* header class */
.header {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto 18px;
}

h2.title {
    margin: 0;
    font-size: 22px;
    line-height: 1;
}
h2.title span {
    color: var(--accent);
}

/* bs to make it responsive */
@media (max-width:720px){
    .header { flex-direction:column; align-items:flex-start; gap:12px; }
    .pfp { width:72px;height:72px; }
}

.pfp {
    width: 86px;
    height: 86px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--accent),#ffdffb);
    display: inline-block;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    flex-shrink: 0;
    overflow: hidden;
}
.pfp img{ width:100%; height:100%; object-fit:cover; display:block; }

p.sub { 
    margin: 6px 0 0;
    color:#cfcfcf7a;
    font-size: 14px;
}

hr.separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,#2b2b2b,transparent);
    margin: 18px 0; 
}

.section { margin:20px 0; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 12px;
}
.project { 
    text-decoration: none;
    background: var(--glass);
    padding: 12px;
    border-radius:10px; 
    color: var(--muted); }
.project h4 { 
    margin: 0 0 6px 0;
    color:#fff; font-size:15px;
}

.trackn p { 
    margin: 0;
    font-size: 13px;
    color: var(--muted); 
}

.trackn {
    display: flex;
    flex-direction: column;
    width: 125px; 
    flex-shrink: 0; 
    text-decoration: none;
    background: var(--glass);
    padding: 12px;
    border-radius: 10px;
    color: var(--muted);
    align-items: center;
}
.trackn h4 { 
    margin: 0 0 6px 0;
    color:#fff; font-size:15px;
}

.trackn p { 
    margin: 0;
    font-size: 13px;
    color: var(--muted); 
}

/* friends row */
.contacts {
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap;
}
.contact{
    width:46px;
    height:46px;
    border-radius:9px;
    overflow:hidden;
    display:flex; 
    justify-content: center;
    align-items: center;
    background: var(--glass);
    /* border: 1px solid rgba(255,255,255,0.03);*/
}
.contact img {
    width: 67%;
    height: 67%;
    object-fit: fill;
    filter: invert(1);
}




.muted { 
    color: var(--muted);
    font-size: 13px; 
}
a.hyperlink { 
    color: var(--accent);
    text-decoration: none;
    font-weight: 600; 
}
.small { 
    font-size: 13px;
    color: var(--muted); 
}
::selection {
    color: var(--accent);
}
/* hide page scrollbar */
html { scrollbar-width: none; } /* Firefox */
body { -ms-overflow-style: none; } /* IE and Edge */
body::-webkit-scrollbar, body::-webkit-scrollbar-button { display: none; } /* Chrome */
/* end hide page scrollbar */


#lastfm-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    text-align: center;
    padding-bottom: 10px;
}

.track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 125px;
    text-decoration: none;
    /* color: #dbdbdb;*/
}

.trackImg {
    width: 125px;
    height: 125px;
    border-radius: 8px;
    transition: all 0.25s;
}

.trackImg:hover {
    opacity: 0.6;
    background-color: #0c0c0c56;
}

.artistName {
    font-size: 14px;
    color: #dbdbdb4b;
    margin-top: 12px;
}

.trackName {
    font-size: 14px !important;
    font-weight: bold;
    color: #ffffff !important;
    margin-top: 4px !important;
}