body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
    border: 3px solid #333;
    overflow: hidden;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('../assets/images/background.png');*/
    background-size: cover;
    background-position: center;
    z-index: 0;
}

#game-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#khanda {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../assets/images/icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.instructions {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
}

#success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    display: none;
    font-size: 24px;
    color: #00008B;
}

#reset-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #00008B;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

#reset-button:hover {
    background-color: #0000CD;
}

#reset-button:active {
    transform: scale(0.95);
}