.premium-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    margin-left: -11px;
    margin-top: -11px;
    border-radius: 50%;
    border: 1px solid rgba(239, 206, 160, 0.4);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.3s ease,
        margin 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        opacity 0.3s ease;
    will-change: transform;
    opacity: 0;
}

body:hover .premium-cursor {
    opacity: 1;
}

.premium-cursor.is-active {
    width: 56px;
    height: 56px;
    margin-left: -28px;
    margin-top: -28px;
    background-color: rgba(239, 206, 160, 0.1);
    border-color: rgba(239, 206, 160, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 768px),
(pointer: coarse) {
    .premium-cursor {
        display: none !important;
    }
}

/* Skeleton Loading Effects */
.skeleton-pulse {
    background: linear-gradient(-90deg,
            rgba(239, 206, 160, 0.04) 0%,
            rgba(239, 206, 160, 0.1) 40%,
            rgba(239, 206, 160, 0.04) 80%);
    background-size: 400% 400%;
    animation: pulseSkeleton 1.8s ease-in-out infinite;
    border-radius: 6px;
}

@keyframes pulseSkeleton {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: -100% 0%;
    }
}

.skeleton .card-media {
    background: transparent;
}

.skeleton .skeleton-text {
    height: 0.8rem;
    margin-top: 0.5rem;
    border-radius: 4px;
}

.skeleton.project-card {
    pointer-events: none;
}