body{
    background:#0f172a;
    color:white;
    font-family:Arial;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    margin:0;
}

.container{
    background:#1e293b;
    padding:40px;
    border-radius:15px;
    text-align:center;
    width:350px;
    box-shadow:0 0 20px rgba(0,0,0,0.5);
}

h1{
    margin-bottom:20px;
}

.user{
    margin-bottom:20px;
    color:#cbd5e1;
}

.menu{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.menu a{
    background:#2563eb;
    color:white;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    transition:0.3s;
}

.menu a:hover{
    background:#1d4ed8;
    transform:scale(1.03);
}