/* General Page Styling */
body {
    font-family: 'Comic Sans MS', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Main Container */
.trap-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

/* Title Styling */
h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
    color: #ffcc00;
    text-shadow: 2px 2px black;
}

/* Button Container */
.button-container {
    margin-top: 20px;
}

/* Button Styling */
button {
    font-size: 1.5em;
    padding: 10px 30px;
    border: none;
    background-color: #00ff99;
    color: black;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ff0033;
    color: white;
    transform: scale(1.2);
}
/* Same styling as before with additional rules for the fake escape button */
.hidden {
    display: none;
}

#fake-escape {
    margin-top: 20px;
}

#fake-btn {
    font-size: 1.5em;
    padding: 10px 30px;
    border: none;
    background-color: #ff9900;
    color: black;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#fake-btn:hover {
    background-color: #cc3300;
    color: white;
    transform: scale(1.2);
}

