body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Press Start 2P', cursive, monospace;
    text-align: center;
    margin: 0;
    padding: 20px;
}

input {
    background: #1a1a1a;
    border: 2px solid #ff3333;
    border-radius: 8px;
    color: #ff3333;
    font-family: inherit;
    font-size: 14px;
    padding: 10px;
    width: 80%;
    max-width: 300px;
    margin-top: 10px;
    text-align: center;
}

#count-value {
    display: inline-block;
    font-size: 24px;
    margin-left: 15px;
    color: #00ff99;
    text-shadow: 0 0 8px #00ff99;
}

button {
    background: #222;
    border: 3px solid #ff3333;
    color: #ff3333;
    font-size: 18px;
    font-family: inherit;
    padding: 15px 25px;
    margin: 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px #ff3333;
    min-width: 100px;
}

button:hover {
    background: #ff3333;
    color: #0d0d0d;
    box-shadow: 0 0 15px #ff3333, 0 0 25px #ff3333;
}

#started {
    font-size: smaller;
    font-weight: 100;
}

#reset {
    scale: 0.8;
}

#support {
    background: #222;
    border: 3px solid #3aff33;
    color: #3aff33;
    font-size: 18px;
    font-family: inherit;
    padding: 15px 25px;
    margin: 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px #3aff33;
    min-width: 100px;
}
#support:hover {
    background: #3aff33;
    color: #0d0d0d;
    box-shadow: 0 0 100px #3aff33, 0 0 100px #3aff33;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    button {
        width: 45%;
        font-size: 16px;
        padding: 12px;
    }

    #count-value {
        display: block;
        margin: 15px 0 0;
        font-size: 28px;
    }
}
