body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    font-family: 'Courier New', Courier, monospace;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#instructions {
    text-align: center;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border: 1px solid #444;
    border-radius: 5px;
}

#instructions h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffaa;
    text-shadow: 0 0 10px rgba(255, 255, 170, 0.5);
}

#instructions p {
    font-size: 18px;
    line-height: 1.5;
}
