* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    overflow: hidden;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #000;
}

#game-display {
    width: 100%;
    height: 100%;
}

.page-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#attack-buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.attack-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.101);
    cursor: pointer;
    pointer-events: all;
}

#aglae-btn {
    bottom: 21%;
    left: 7%;
}

