body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #34495e; /* Dark forest theme */
    color: #ecf0f1;
}

#game-container {
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 800px;
    width: 90%;
}

h1 {
    color: #2ecc71; /* Green arrow color */
    margin-bottom: 20px;
}

/* --- Status and Canvas --- */
#status-area, #input-display {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

#archery-canvas {
    border: 3px solid #bdc3c7;
    background-color: #fff; /* White sky/target background */
    margin: 0 auto;
    display: block;
    cursor: crosshair;
}

/* --- Controls and Feedback --- */
#controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#shoot-button {
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #e74c3c; /* Red shoot button */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#shoot-button:hover:not(:disabled) {
    background-color: #c0392b;
}

#shoot-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#reset-button {
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#feedback-message {
    min-height: 20px;
    margin-top: 15px;
}