* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #00FF41;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#tax-form {
    position: relative;
    border: 2px solid #00FF41;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

#submit-btn {
    background-color: #000000;
    color: #00FF41;
    border: 2px solid #00FF41;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.1s;
}

#submit-btn:hover {
    background-color: #00FF41;
    color: #000000;
}

#countdown-display {
    width: 80%;
    height: 20px;
    border: 2px solid #00FF41;
    background-color: #000000;
    margin-bottom: 30px;
    overflow: hidden;
}

#countdown-bar {
    height: 100%;
    width: 100%;
    background-color: #00FF41;
    transition: width 1s linear;
}

#denied-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    color: #00FF41;
    opacity: 0;
    transition: opacity 0.5s;
}

#game-state {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
}
