* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1b1816;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

h1 {
    color: #ff6b00;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2521;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.credits {
    margin-top: 20px;
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    #canvas-container {
        padding: 10px;
    }
}