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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#gameCanvas {
    display: block;
    background-color: #050505;
    width: 1024px;
    height: 768px;
    image-rendering: pixelated;
}

#mainMenu {
    position: absolute;
    width: 1024px;
    height: 768px;
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 100px;
    z-index: 100;
    background: none; 
}

.menuButton {
    width: 280px;
    height: 70px;
    background-size: 100% 300%; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px #000;
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.menuButton:hover {
    filter: brightness(1.4);
    letter-spacing: 2px;
}

#gameTitle {
    font-size: 80px;
    color: white;
    text-shadow: 4px 4px #dddddd;
    margin-bottom: 50px;
    letter-spacing: -5px;
    font-style: italic;
}

#dialogBox {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background-color: rgba(10, 10, 10, 0.9);
    border: 2px solid #333;
    padding: 25px;
    box-sizing: border-box;
    z-index: 1000;
    color: #ccc;
}

#customCursor {
    position: fixed;
    width: 24px; 
    height: 24px;
    background-image: url('assets/Moeda3e4.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
    pointer-events: none;
    display: none;
}
