body{
    margin: 0;
    padding: 0;
    font-family: monospace;
    font-size: 14px;
    color: whitesmoke;
    user-select: none;
    -webkit-user-select: none;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: none;
    
}


@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Info Pane styling */
#info-left, #info-right {
    position: absolute;
    top: 20px;
    font-size: 20px;
    font-family: 'Press Start 2P', sans-serif;
    color: #fff;
    padding: 10px;
    background-color: #0706026f;
    border: 3px solid black;
    border-radius: 5px;
    text-shadow: 2px 2px black; 
}

/* Egyedi pozíciók */
#info-left {
    left: 25px;
}

#info-right {
    right: 25px;
    text-align: right;
}


/* bombarea */
#bomb-grab-area{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    cursor: grab;
}

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Congratulations Pane styling */
#congratulations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    padding: 20px 40px;
    font-size: 28px;
    font-family: 'Press Start 2P', sans-serif;
    color: #ffcc00;
    background-color: #333;
    border: 5px solid black; 
    border-radius: 10px;
    text-align: center;
    text-shadow: 2px 2px black;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);

    /* Retro glow animation */
    animation: retroGlow 1.5s infinite alternate;
}

/* Retro glow animation */
@keyframes retroGlow {
    0% {
        text-shadow: 0 0 5px #008cff, 0 0 10px #008cff, 0 0 20px #0051ff;
        border-color: #0051ff;
    }
    100% {
        text-shadow: 0 0 10px #008cff, 0 0 20px #0051ff, 0 0 30px #3c00ff;
        border-color: #3c00ff;
    }
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');




/* Retro button styling */
.retro-button {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 18px;
    color: #ffcc00;
    padding: 15px 30px;
    background: linear-gradient(145deg, #333, #555);
    border: 3px solid #3c00ff;
    border-radius: 10px;
    text-shadow: 2px 2px #000;
    box-shadow: 0 0 10px #3c00ff, 0 0 20px #0051ff, 0 0 30px #008cff;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    animation: neonPulse 1.5s infinite alternate;
}

/* Gomb hover és kattintás effektus */
.retro-button:hover {
    transform: scale(1.1);
}

.retro-button:active {
    transform: scale(0.9);
}

/* Neon pulzálás animáció */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 5px #3c00ff, 0 0 10px #0051ff, 0 0 15px #008cff;
        border-color: #3c00ff;
    }
    100% {
        box-shadow: 0 0 20px #3c00ff, 0 0 40px #0051ff, 0 0 60px #008cff;
        border-color: #008cff;
    }
}

