body {
    font-family: 'Comic Sans MS', 'Chalkduster', 'Marker Felt', sans-serif;
    margin: 0;
    overflow: hidden; /* No scrollbars, the world is our oyster */
    background-color: #000;
}

#gameCanvas {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

#ui-container {
    position: fixed;
    top: 10px;
    left: 10px;
    color: #FF69B4; /* Hot Pink, naturally */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 15px;
    border: 3px dashed #FFFF00;
    text-align: left;
    z-index: 100;
    box-shadow: 5px 5px 15px rgba(255, 105, 180, 0.3);
}

h1 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
    color: #32CD32; /* Lime Green */
}

p {
    margin: 5px 0;
}

/* Let's add some humor */
@keyframes funnyAnnoyingPopup {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    20% { transform: translateY(0) rotate(360deg); opacity: 1; }
    80% { transform: translateY(0) rotate(360deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.popup-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFF00; /* Bright Yellow - can't miss it */
    color: #000;
    padding: 20px;
    border-radius: 15px;
    border: 4px dashed red;
    font-size: 1.5em;
    text-align: center;
    box-shadow: 0 0 30px #FFFF00;
    z-index: 1000;
    animation: funnyAnnoyingPopup 5s ease-in-out forwards;
} 
