@charset "utf-8";
/* CSS Document */
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            background-color: #000;
            color: #fff;
            font-family: Verdana, sans-serif;
        }

        #text-container {
            position: absolute;
            top: 10px;
            left: 10px;
            color: #0ff;
            font-size: 14px;
            text-shadow: 0 0 6px #0ff;
        }

        #main-container {
            display: flex;
            align-items: center;
        }

        #left-text, #right-text {
            width: 150px;
            text-align: center;
            padding: 10px;
            box-sizing: border-box;
            color: #0ff;
            text-shadow: 0 0 6px #0ff;
            font-size: 12px;
        }

        #game-container {
            border: 2px solid #0ff;
            box-shadow: 0 0 20px #0ff;
            margin: 0 20px;
            background: radial-gradient(circle at top, #111 0%, #000 60%);
        }

        #footer {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background-color: #111;
            padding: 10px 14px;
            border-radius: 5px;
            border: 1px solid #0ff;
            box-shadow: 0 0 10px #0ff;
            font-size: 11px;
        }

        #footer a {
            color: #0ff;
            text-decoration: none;
            font-family: Verdana, sans-serif;
            text-shadow: 0 0 6px #0ff;
        }

        .hud-line {
            margin-bottom: 4px;
        }

        .hud-label {
            color: #888;
        }

        .hud-value {
            color: #0ff;
        }

.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0ff;
    font-size: 24px;
    text-shadow: 0 0 10px #0ff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0ff;
    font-size: 22px;
    text-align: center;
    text-shadow: 0 0 10px #0ff;
    padding: 20px 30px;
    border: 1px solid #0ff;
    box-shadow: 0 0 20px #0ff;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}
.preloader.hidden {
    display: none;
}

.pulse {
    animation: pulse 0.6s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: translate(-50%, -50%) scale(1); }
    to   { transform: translate(-50%, -50%) scale(1.08); }
}

#hud {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: Verdana, sans-serif;
    font-size: 24px;      /* Bigger HUD */
    color: white;         /* White text */
    text-shadow: 0 0 10px #00ffff;
    line-height: 1.4;
    z-index: 9999;
}

#playerName {
    font-size: 26px;      /* Slightly bigger for name */
    font-weight: bold;
    margin-bottom: 8px;
}