body,
input,
button,
label,
h1,
h2,
h3,
p {
    font-family: 'Barlow', sans-serif;
}

body {
    font-family: Barlow;
    background: #0A1D2F;
    color: #1f2937;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 650px;
    margin: 40px auto;
    background-color: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #0f4c81;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 30px;
    font-size: 16px;
}

.survey-form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 6px;
    font-weight: bold;
    color: #111827;
}

input {
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #0f4c81;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

button {
    background-color: #0f4c81;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: Barlow; 
}

button:hover {
    background-color: #0c3b63;
}
.survey-title {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
}

.confirmation-box {

    margin-top: 25px;
    padding: 25px;

    background-color: #f1f5f9;
    border-radius: 12px;

    text-align: center;

}

.confirmation-box h2 {

    color: #0f4c81;
    font-size: 32px;
    margin-top: 10px;

}

.closed-box {

    text-align: center;
    padding: 40px;
    margin-top: 20px;

    background-color: #f8fafc;
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);

}

.closed-box h1 {

    color: #6D6F70;
    font-size: 36px;
    margin-bottom: 15px;

}

.closed-box p {

    font-size: 18px;
    margin-bottom: 10px;

}

#wheelCanvas {
    display: block;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.wheel-list {
    margin-top: 30px;
}

.wheel-list ul {
    list-style-type: none;
    padding: 0;
}

.wheel-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.wheel-wrapper {
    position: relative;
    width: 500px;
    margin: 30px auto;
}

.pointer {
    width: 0;
    height: 0;
    margin: 0 auto -10px auto;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 30px solid #dc2626;
    position: relative;
    z-index: 10;
}

.wheel-controls {
    text-align: center;
    margin-top: 20px;
}

.winner-display {
    text-align: center;
    margin-top: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #0f4c81;
}

.duplicate-box {

    text-align: center;
    padding: 40px;
    margin-top: 20px;

    background-color: #f8fafc;
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);

}

.duplicate-box h1 {

    color: #f59e0b;
    font-size: 34px;
    margin-bottom: 15px;

}

.duplicate-box p {

    font-size: 18px;
    margin-bottom: 10px;

}

* {
    box-sizing: border-box;
}