* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.container {
    width: 900px;
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
    color: #38bdf8;
}

.upload-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

input[type="file"] {
    padding: 10px;
    background: white;
    color: black;
    border-radius: 8px;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #38bdf8;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0ea5e9;
    transform: scale(1.05);
}

.results h2 {
    margin-bottom: 20px;
    color: #38bdf8;
}

.results h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

#score {
    color: #22c55e;
    font-size: 24px;
    font-weight: bold;
}

ul {
    background: #334155;
    padding: 20px;
    border-radius: 10px;
    list-style-position: inside;
}

li {
    margin-bottom: 8px;
}

.role-box {
    margin-bottom: 30px;
    text-align: center;
}

select {
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-left: 10px;
}

.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(
        #22c55e 0deg,
        #22c55e 0deg,
        #334155 0deg
    );

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 36px;
    font-weight: bold;
    color: white;

    margin-bottom: 10px;

    transition: 1s;
}

.circle span {
    background: #1e293b;
    width: 110px;
    height: 110px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}