body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    touch-action: none;
}
#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #e0e0e0;
    overflow: hidden;
}
#player {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #3498db;
    border-radius: 50%;
    z-index: 100;
}
.woman {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #e74c3c;
    border-radius: 50%;
}
#score {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: #333;
    z-index: 200;
}
#message {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: #666;
    z-index: 200;
}
#restart {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 200;
}
#instructions {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666;
    z-index: 200;
}
