#game-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    background: #2e7d32;
    border: 5px solid #1b5e20;
    border-radius: 12px;
    overflow: hidden;
}

#golfCanvas {
    display: block;
    width: 100%;
    height: auto;
    background: radial-gradient(circle, #4caf50 0%, #2e7d32 100%);
}

#controls {
    padding: 15px;
    background: #222;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.meter-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meter-container label {
    font-size: 0.7rem;
    width: 50px;
    color: #aaa;
}

.meter {
    flex-grow: 1;
    height: 12px;
    background: #444;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

#power-bar, #aim-bar {
    width: 0%;
    height: 100%;
    background: #f44336;
    position: absolute;
}

#aim-bar { background: #2196f3; }

#stats {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

#status-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); display: flex; flex-direction: column;
    justify-content: center; align-items: center; z-index: 20;
}

#status-overlay.hidden { display: none; }