.blob-animate { animation: blob-bounce 10s infinite ease-in-out; }
@keyframes blob-bounce {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.code-editor {
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    font-family: 'Courier New', Courier, monospace;
}
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
}
@keyframes blink { 50% { opacity: 0; } }