body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.game-container {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

h1 {
    color: #333;
    font-size: 2rem;
}

.controls {
    margin-bottom: 20px;
}

.controls select, .controls button {
    padding: 10px;
    font-size: 1rem;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.controls button {
    background-color: #ff4d4d;
    color: white;
    border: none;
}

.controls button:hover {
    background-color: #e60000;
}

#start-button {
    background-color: #4caf50;
}

#start-button:hover {
    background-color: #45a049;
}

canvas {
    border: 2px solid #333;
    background-color: #fff;
    max-width: 100%;
    height: auto;
    display: block;
    touch-action: none;
}

/* WordPress and Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .controls select, .controls button {
        font-size: 0.9rem;
        padding: 8px;
    }

    canvas {
        width: 90vw;
        height: 90vw;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }

    .controls select, .controls button {
        font-size: 0.8rem;
        padding: 6px;
    }

    canvas {
        width: 95vw;
        height: 95vw;
    }
}