body {
    background-color: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    color: #e0e0e0;
    overflow: hidden;
}

.main-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: gap 0.3s ease;
}

.line {
    width: 4px;
    height: 120px;
    background-color: white;
    box-shadow: 0 0 15px white, 0 0 30px rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 3rem;
}

.text-node {
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hidden { display: none !important; }

/* --- Animasi Himpit Berulang (Vibrating Squeeze) --- */
.squeezing .left-line { animation: shakeL 0.2s infinite alternate; }
.squeezing .right-line { animation: shakeR 0.2s infinite alternate; }

@keyframes shakeL {
    from { transform: translateX(0); }
    to { transform: translateX(20px); }
}
@keyframes shakeR {
    from { transform: translateX(0); }
    to { transform: translateX(-20px); }
}

/* --- Efek Squeezing untuk SEMUA kata yang aktif --- */
.global-distort .text-node:not(.hidden) {
    animation: squeezeEffect 0.2s infinite alternate;
}

/* Efek jantung juga ikut terdistorsi sedikit saat dihimpit */
.global-distort .heart {
    animation: squeezeEffect 0.2s infinite alternate;
}

@keyframes squeezeEffect {
    from { transform: scaleX(1) scaleY(1); filter: blur(0px); }
    to { transform: scaleX(0.7) scaleY(1.3); filter: blur(1px); }
}

/* --- Efek Pecah --- */
.bubble-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(138,43,226,0.3) 60%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 10;
}

.heart {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px red);
    display: inline-block;
}