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

body {
    overflow: hidden;
    background: #000;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

#hud {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 24px;
    z-index: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#style-meter, #health {
    margin-bottom: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

#style-score {
    color: #ff0;
}

#health-value {
    color: #0f0;
} 