/* ============================================
   CUSTOM CURSOR STYLES
   ============================================ */

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #94ba33;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transition: transform 0.2s ease, background 0.3s ease;
}

/* .custom-cursor.on-dark {
    background: #00abdc;
} */

.custom-cursor.on-image {
    background: #00abdc;
    transform: scale(1.2);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #003f66;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Dark background state - highest priority */
/* .cursor-follower.on-dark {
    border-color: #00abdc !important;
} */

.cursor-follower.on-link {
    width: 60px;
    height: 60px;
    border-color: #94ba33;
    border-width: 3px;
}

/* Link on dark background */
/* .cursor-follower.on-link.on-dark {
    border-color: #94ba33 !important;
} */

.cursor-follower.sticky {
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.cursor-follower.with-text {
    width: 120px;
    height: 120px;
    background: rgba(0, 63, 102, 0.05);
    border-color: #003f66;
}

/* .cursor-follower.with-text.on-dark {
    background: rgba(0, 171, 220, 0.1);
    border-color: #00abdc !important;
} */

.cursor-text {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cursor-follower.with-text .cursor-text {
    opacity: 1;
}

.cursor-text svg {
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cursor-text text {
    fill: #003f66;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* .cursor-follower.on-dark .cursor-text text {
    fill: #00abdc;
} */

.custom-cursor.on-link {
    transform: scale(0.8);
}
