/* Code Particle Styling */
.code-particle {
    position: fixed;
    color: rgba(167, 139, 250, 0.15); /* Faint Purple */
    pointer-events: none;
    z-index: -1;
    font-family: monospace;
    user-select: none;
}

/* Heart Rain Animation */
.falling-heart {
    position: fixed;
    top: -50px;
    z-index: 10000;
    pointer-events: none;
    animation: fall linear forwards;
}

@keyframes fall {
    to { transform: translateY(110vh) rotate(360deg); }
}