/* Custom Dynamic Cursor - Philosophy & CS Theme */

#dynamic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0.8;
    transition: width 0.3s ease, height 0.3s ease, font-size 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: multiply;
}

#dynamic-cursor.hover {
    font-size: 2rem;
    opacity: 1;
    color: var(--accent);
}

#dynamic-cursor.clicking {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Hide fallback cursor for devices without fine pointer */
@media (pointer: coarse) {
    #dynamic-cursor {
        display: none;
    }
}