body {
    background: #111;
    color: white;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.card {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
    box-sizing: border-box;
}

button,
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-hold {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
    display: inline-block;
    box-sizing: border-box;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
    text-decoration: none;
}

.btn-hold {
    background: #ffc107;
    color: black;
}

.highlight {
    color: #00f2ea;
}

.secret-area {
    margin: 20px 0;
    padding: 20px;
    background: #000;
    border-radius: 10px;
    transition: filter 0.2s;
}

.blurred {
    filter: blur(15px);
    user-select: none;
}

.blurred * {
    opacity: 0;
}

.timer {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: bold;
}

.impostor-text {
    color: red;
    font-weight: bold;
}

.citizen-text {
    color: cyan;
}