body{
margin:0;
font-family:sans-serif;
color:white;

background:linear-gradient(-45deg,#685AFF,#9CCFFF,#FF5B5B,#F0FFC3);
background-size:400% 400%;
animation:gradientMove 15s ease infinite;

display:flex;
justify-content:center;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.container{
width:1100px;
padding:30px;
background:rgba(0,0,0,0.35);
backdrop-filter:blur(20px);
border-radius:20px;
margin-top:40px;
}

h1{text-align:center;}

.search{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:20px;
}

input{
padding:10px;
border-radius:8px;
border:none;
}

button{
padding:10px 18px;
background:#685AFF;
border:none;
border-radius:8px;
cursor:pointer;
color:white;
}

#profile{text-align:center;}

#stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}

.card{
background:rgba(255,255,255,0.08);
border-radius:12px;
padding:20px;
text-align:center;
}

.chart-card{
background:rgba(255,255,255,0.08);
border-radius:12px;
padding:20px;
margin-top:20px;
}

.charts{
display:flex;
flex-direction:column;
gap:20px;
}

#repos{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:20px;
}

.repo{
background:rgba(255,255,255,0.08);
border-radius:10px;
padding:15px;
}

.calendar{
overflow-x:auto;
margin-bottom:20px;
}

.contribution-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.stat{
background:rgba(255,255,255,0.08);
border-radius:10px;
padding:15px;
text-align:center;
}

.chart-small{
max-width:400px;
margin:auto;
}

.chart-small canvas{
width:100% !important;
height:250px !important;
}
.charts{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
align-items:center;
}