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

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('media/images/bacon-blast.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.game-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

h1 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px #333, 0 0 15px #fff;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 2px;
}

canvas {
    background-color: rgba(34, 34, 34, 0.85);
    border: 4px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    display: block;
    margin: 0 auto;
}

.controls {
    margin-top: 20px;
    background-color: rgba(224, 224, 224, 0.9);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    border: 2px solid #ff6b6b;
}

.controls p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.controls .hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
}
