body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
}

#escape {
    padding: 15px 30px;
    font-size: 20px;
    background: red;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px #990000;
    transition: 0.1s;
}

#glory-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: bold;
    color: #ffd700; /* Gold */
    text-shadow: 0 0 20px #ffcc00;
    text-align: center;
    font-family: sans-serif;
    display: none; /* Hidden until clicked */
    z-index: 100;
}