*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
body
{
    min-height: 100vh;
    background: linear-gradient(135deg,#000000, #1a1a00);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#container
{
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.4);
    border: 2px solid #FFD700
}
h1
{
    color: #000;
    font-size: 30px;
    margin-bottom: 6px;
}
h3 {
    color: #888;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
#timer 
{
    background : #FFD700;
    color : #000;
    padding : 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight:bold;
    display:inline-block;
    margin-bottom: 20px;
}
#Question {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
}
#options
{
    display: flex;
    flex-direction:column;
    gap: 12px;
    margin-bottom: 24px;
}
#options button 
{
    padding : 14px 20px;
    border : 2px solid #eee;
    border-radius : 10px;
    background: white;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    transition : border-color 0.2s;
}
#options button:hover:not(:disabled)
{
    border-color: #FFD700;
}
#next-btn {
    padding: 12px 32px;
    background: #FFD700;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 14px;
}
#next-btn:hover
{
    background: #e6c200;
}
#score 
{
    color: #888;
    font-size: 13px;
    margin-top: 16px;
}
#result {
    font-weight : bold;
    padding: 20px 0;
}
#restart {
    padding: 12px 32px;
    background: #FFD700;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 14px;
    text-align : center;
    margin-left: 190px;
}