* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #352214 0%, #523820 50%, #352214 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

h1 {
    color: #f4d03f;
    text-shadow: 3px 3px 0 #8b4513, 4px 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    font-size: 2.5rem;
    letter-spacing: 4px;
}

#gameContainer {
    position: relative;
    border: 8px solid #a0603a;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(255, 200, 100, 0.2), 0 0 30px rgba(244, 208, 63, 0.3), inset 0 0 20px rgba(0,0,0,0.4);
    background: #1a0f05;
}

canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#ui {
    margin-top: 20px;
    color: #f4d03f;
    font-size: 1.2rem;
    text-align: center;
}

#controls {
    margin-top: 15px;
    color: #d4a574;
    font-size: 0.9rem;
}

#message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.85);
    color: #f4d03f;
    padding: 30px 50px;
    border-radius: 10px;
    border: 4px solid #8b4513;
    font-size: 1.5rem;
    text-align: center;
    display: none;
    z-index: 100;
}

#message button {
    margin-top: 15px;
    padding: 10px 30px;
    font-size: 1rem;
    background: #8b4513;
    color: #f4d03f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

#message button:hover {
    background: #a0522d;
}
