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

body{
    background:#0f172a;
    color:#fff;
}

.container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

h1{
    font-size:38px;
    margin-bottom:10px;
}

.subtitle{
    color:#94a3b8;
    margin-bottom:30px;
}

.card{
    background:#1e293b;
    border-radius:16px;
    padding:25px;
}

.form-group{
    margin-bottom:20px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

input,
select{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#0f172a;
    color:#fff;
    font-size:16px;
}

button{
    width:100%;
    padding:16px;
    margin-top:10px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#1d4ed8;
}

#loading{
    display:none;
    text-align:center;
    margin-top:30px;
    font-size:18px;
}

#results{
    display:none;
    margin-top:30px;
}

.result-card{
    background:#1e293b;
    padding:20px;
    border-radius:16px;
    margin-bottom:20px;
}

.score{
    display:inline-block;
    margin:15px 0;
    background:#16a34a;
    padding:8px 16px;
    border-radius:999px;
    font-weight:bold;
}

.result-card p{
    margin:10px 0;
}

.result-card a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:bold;
}