body {
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    background-color: #121b2d; 
    color: #e6f1ff; 

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}

.container {
   
    background: #1d2b4f;
    padding: 2rem;
    
    border-radius: 0; 
    
    box-shadow: 0 5px 20px rgba(255, 211, 0, 0.1);
    
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

h1, h2 {
    text-align: center;
    color: #FFD300; 
    margin-top: 0;
}

p {
    text-align: center;
    font-size: 0.9rem;
}

a {
    color: #FFD300; 
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    
    border-radius: 0;
    
    background: #121b2d;
    border: 1px solid #FFD300;
    color: #e6f1ff;
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {

    outline: 2px solid #FFD300;
    outline-offset: -1px;
    border-color: #FFD300;
}

button {
    width: 100%;
    padding: 0.75rem;
    
    background-color: #FFD300;
    color: #121b2d; 
    
    border: none;
    
    border-radius: 0; 
    
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    
    box-shadow: 0 2px 8px rgba(255, 211, 0, 0.2);
}

button:hover {
    background-color: #ffdf33;
    box-shadow: 0 4px 12px rgba(255, 211, 0, 0.3);
}

#message,
.error,
.success {
    text-align: center;
    padding: 0.75rem;
    margin-bottom: 1rem;
    
    border-radius: 0;
    
    font-weight: bold;
}

.error {
    background-color: rgba(217, 48, 37, 0.2);
    color: #d93025; 
}

.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50; 
}


#game-container {
    width: 100%;
}

#question {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD300; 
    text-align: center;
    margin-bottom: 1.5rem;
}

#answer-container {
    display: flex;
    gap: 1rem;
}


#logout-button {
    margin-top: 1rem;
    
    
    background-color: transparent;
    border: 2px solid #d93025;
    color: #d93025;
    box-shadow: none; 
}

#logout-button:hover {
    
    background-color: #d93025;
    color: #121b2d; 
    box-shadow: 0 2px 8px rgba(217, 48, 37, 0.3);
}