*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:sans-serif;
}

body{
display:flex;
background:#0b1020;
color:white;
height:100vh;
overflow:hidden;
}

.sidebar{
width:90px;
background:rgba(20,20,30,.9);
backdrop-filter:blur(15px);
padding:20px 10px;
display:flex;
flex-direction:column;
align-items:center;
border-right:2px solid #5865F2;
}

.logo{
width:60px;
height:60px;
border-radius:50%;
background:linear-gradient(45deg,#5865F2,#FFD700);
display:flex;
align-items:center;
justify-content:center;
font-size:25px;
margin-bottom:30px;
}

.sidebar ul{
list-style:none;
width:100%;
}

.sidebar li{
padding:15px;
margin:10px 0;
border-radius:15px;
cursor:pointer;
display:flex;
flex-direction:column;
align-items:center;
gap:5px;
transition:.3s;
}

.sidebar li:hover,
.sidebar .active{
background:#5865F2;
box-shadow:0 0 20px #5865F2;
}

.main{
flex:1;
padding:20px;
overflow:auto;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.topbar h1{
color:#FFD700;
font-size:40px;
}

.profile{
width:55px;
height:55px;
border-radius:50%;
background:linear-gradient(45deg,#5865F2,#FFD700);
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-bottom:30px;
}

.card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.1);
padding:25px;
border-radius:20px;
backdrop-filter:blur(10px);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 0 25px #5865F2;
}

.glow{
box-shadow:0 0 30px #FFD700;
}

.card h2{
margin-bottom:10px;
color:#5865F2;
}

.card button{
margin-top:15px;
padding:12px 20px;
border:none;
border-radius:12px;
background:#5865F2;
color:white;
cursor:pointer;
font-size:16px;
}

.server-box{
background:rgba(255,255,255,.05);
padding:30px;
border-radius:20px;
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.1);
}

.server-box h2{
margin-bottom:20px;
color:#FFD700;
}

.server-box input,
.server-box select{
width:100%;
padding:15px;
margin:10px 0;
border:none;
border-radius:12px;
background:#151b35;
color:white;
font-size:16px;
}

.big-btn{
width:100%;
padding:15px;
margin-top:15px;
border:none;
border-radius:15px;
background:linear-gradient(45deg,#5865F2,#FFD700);
color:black;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

.big-btn:hover{
transform:scale(1.02);
box-shadow:0 0 20px #FFD700;
}