/*    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #000;
        margin: 0;
        flex-direction: column;
    }*/

    .ball {
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 20px;
    }

    .ball.red {
        background-color: #ff006e;
        box-shadow: 0 0 4px #ff006e, 0 0 8px #ff006e, 0 0 12px #ff006e;
        animation: flicker-red 1.5s infinite;
    }

    .ball.blue {
        background-color: #3a86ff;
        box-shadow: 0 0 4px #3a86ff, 0 0 8px #3a86ff, 0 0 12px #3a86ff;
        animation: flicker-blue 1.5s infinite;
    }

    .ball.yellow {
        background-color: #ffbe0b;
        box-shadow: 0 0 4px #ffbe0b, 0 0 8px #ffbe0b, 0 0 12px #ffbe0b;
        animation: flicker-yellow 1.5s infinite;
    }

    .flame-container {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        animation: rotateFlame 6s linear infinite;
        z-index: 2;
    }

    .flame {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        animation: flameFlicker 1.5s infinite;
    }

    .flame.red {
        background: radial-gradient(circle, rgba(255,0,110,0.6) 0%, rgba(255,0,110,0) 70%);
    }

    .flame.blue {
        background: radial-gradient(circle, rgba(58,134,255,0.6) 0%, rgba(58,134,255,0) 70%);
    }

    .flame.yellow {
        background: radial-gradient(circle, rgba(255,190,11,0.6) 0%, rgba(255,190,11,0) 70%);
    }

    .flame:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
    .flame:nth-child(2) { top: 38%; left: 12%; transform: translate(-50%, -50%); }
    .flame:nth-child(3) { top: 38%; right: 12%; transform: translate(50%, -50%); }
    .flame:nth-child(4) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
    .flame:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .flame:nth-child(6) { top: 27%; left: 0%; transform: translate(-50%, -50%); }    
    .flame:nth-child(7) { top: 14%; left: 0%; transform: translate(-50%, -50%); }    
    .flame:nth-child(8) { top: 0%; left: 85%; transform: translate(-50%, -50%); }
    .flame:nth-child(9) { top: 0%; left: 91%; transform: translate(-50%, -50%); }
    .flame:nth-child(10) { top: 33%; left: 0%; transform: translate(-50%, -50%); }

    @keyframes flicker-red {
        0%, 100% {
            box-shadow: 0 0 4px #ff006e, 0 0 8px #ff006e, 0 0 12px #ff006e;
        }
        50% {
            box-shadow: 0 0 6px #ff006e, 0 0 12px #ff006e, 0 0 18px #ff006e;
        }
    }

    @keyframes flicker-blue {
        0%, 100% {
            box-shadow: 0 0 4px #3a86ff, 0 0 8px #3a86ff, 0 0 12px #3a86ff;
        }
        50% {
            box-shadow: 0 0 6px #3a86ff, 0 0 12px #3a86ff, 0 0 18px #3a86ff;
        }
    }

    @keyframes flicker-yellow {
        0%, 100% {
            box-shadow: 0 0 4px #ffbe0b, 0 0 8px #ffbe0b, 0 0 12px #ffbe0b;
        }
        50% {
            box-shadow: 0 0 6px #ffbe0b, 0 0 12px #ffbe0b, 0 0 18px #ffbe0b;
        }
    }

    @keyframes flameFlicker {
        0%, 100% {
            transform: scale(1);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.2);
            opacity: 1;
        }
    }

    @keyframes rotateFlame {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .connection-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        margin: 30px 0 30px 0;
        width: 200px;
        height: 40px;
    }

    .line {
        position: absolute;
        top: 50%;
        left: 30%;
        width: 50%;
        height: 5px;
        background: linear-gradient(90deg, transparent, #fff, transparent);
        background-size: 10%;
        animation: energyFlow 10s infinite;
        z-index: 0;
    }

    @keyframes energyFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .glow {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
        opacity: 0.5;
        animation: glowPulse 2s infinite;
    }

    @keyframes glowPulse {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }