body {
     background: #0d0d0d; color: #00ff41; font-family: 'Courier New', monospace; display: flex; flex-direction: column; align-items: center; padding: 20px; 
    }

.container {
     border: 1px solid #333; padding: 25px; background: #1a1a1a; width: 450px; border-radius: 12px; text-align: center; }        #timerDisplay { font-size: 3.5rem; color: #ff3e3e; margin: 20px 0; display: none; 
    }

.passcode-area { 
    margin: 20px 0; display: none; border-top: 1px solid #333; padding-top: 20px; 
}

input { 
    background: #000; color: #00ff41; border: 1px solid #00ff41; padding: 10px; width: 80px; text-align: center; font-size: 1.2rem; margin-right: 10px; 
}

button { 
    background: transparent; color: #00ff41; border: 1px solid #00ff41; padding: 10px 15px; cursor: pointer; text-transform: uppercase; font-weight: bold; 
}

button:hover {
    background: #00ff41; color: #000; 
}

#console { 
    background: #000; height: 120px; overflow-y: auto; border: 1px solid #333; padding: 10px; margin-top: 20px; font-size: 0.8rem; text-align: left; 
}

p{
    color:orange;
}

#startTimerBtn{
    display:none;
    color:#ff3e3e;
    border-color: #ff3e3e;
}

.progressdiv{
    width: 100%; 
    max-width: 400px; 
    background: #222;
    height: 15px;
    border: 1px solid #444;
    margin-bottom: 10px;
    overflow: hidden;
}

#progressBar{
    width: 100%; 
    background: #ff3e3e; 
    height: 100%; 
    box-shadow: 0 0 10px #ff3e3e; 
    transition: width 0.1s linear;
}