body {
    background-color: #050505; 
    color: #0f0; 
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    border: 2px solid #0f0;
    width: 800px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    background-color: #000;
}

.header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.status-box {
    text-align: right;
}

.main-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cpu-box {
    border: 1px solid #0f0;
    width: 45%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#multiplier-display {
    font-size: 4em; 
    font-weight: bold;
    margin: 20px 0;
}

.log-container {
    border: 1px solid #0f0;
    width: 50%;
    height: 250px;
    background: #001100;
    display: flex;
    flex-direction: column;
}

.log-header {
    background: #0f0;
    color: #000;
    padding: 2px 5px;
    font-weight: bold;
}

.log-content {
    padding: 10px;
    overflow-y: auto;
    flex-grow: 1;
    font-size: 0.9em;
}

.controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

input[type="number"] {
    background: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 10px;
    font-family: inherit;
    font-size: 1.2em;
    width: 80px;
}

button {
    background: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover {
    background: #0f0;
    color: #000;
}

#btn-be {
    border-color: #ff00ff;
    color: #ff00ff;
}
#btn-be:hover {
    background: #ff00ff;
}
