body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    overflow: hidden; /* Hide scrollbars */
}

#c {
    display: block; /* Remove extra space below canvas */
    width: 100vw;
    height: 100vh;
}

#info {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 10;
}

#info h1 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
}
#info p {
    margin: 0;
    font-size: 0.9em;
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 30, 0.95); /* Darker, more thematic */
    color: #00ff00; /* Rick & Morty green */
    display: flex;
    flex-direction: column; /* Stack text and progress */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
    font-size: 1.8em;
    font-family: 'Courier New', Courier, monospace; /* Techy font */
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    /* display: none; Initially hidden, controlled by JS */
}
#loading-message {
    margin-bottom: 20px;
}
#loading-progress-bar-container {
    width: 60%;
    max-width: 400px;
    height: 20px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    overflow: hidden;
}
#loading-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #00ff00;
    transition: width 0.2s ease-out;
}