/* Minimal Cursor Trail - fc0138f9 */

/* Cursor dot */
.mct-cursor-dot-fc0138f9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 1), rgba(220, 220, 255, 0.85) 60%, rgba(180, 180, 255, 0.5));
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.7),
        0 0 24px rgba(200, 200, 255, 0.3),
        0 0 48px rgba(180, 180, 255, 0.1);
    pointer-events: none;
    z-index: 100002;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                height 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
    will-change: transform;
}

/* Soft ambient glow behind dot */
.mct-cursor-glow-fc0138f9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 200, 255, 0.08) 0%, rgba(200, 200, 255, 0) 70%);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.4s ease;
    will-change: transform;
    opacity: 1;
}

/* Outer ring */
.mct-cursor-ring-fc0138f9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.35s ease,
                background 0.35s ease,
                opacity 0.35s ease;
    will-change: transform;
    opacity: 0.65;
}

/* Trail container */
.mct-trail-container-fc0138f9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

/* Individual trail dot */
.mct-trail-dot-fc0138f9 {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 6px rgba(200, 210, 255, 0.3);
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

/* Hover state */
.mct-cursor-dot-fc0138f9.mct-hover-fc0138f9 {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 1), rgba(200, 210, 255, 0.9) 60%, rgba(160, 170, 255, 0.6));
    box-shadow:
        0 0 14px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(200, 200, 255, 0.4),
        0 0 80px rgba(180, 180, 255, 0.15);
}

.mct-cursor-ring-fc0138f9.mct-hover-fc0138f9 {
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
}

.mct-cursor-glow-fc0138f9.mct-hover-fc0138f9 {
    width: 90px;
    height: 90px;
    opacity: 1;
}

/* Click state */
.mct-cursor-dot-fc0138f9.mct-click-fc0138f9 {
    width: 7px;
    height: 7px;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 1),
        0 0 60px rgba(200, 200, 255, 0.5);
}

.mct-cursor-ring-fc0138f9.mct-click-fc0138f9 {
    width: 26px;
    height: 26px;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.mct-cursor-glow-fc0138f9.mct-click-fc0138f9 {
    width: 40px;
    height: 40px;
}

/* Hidden state when cursor leaves window */
.mct-cursor-dot-fc0138f9.mct-hidden-fc0138f9,
.mct-cursor-ring-fc0138f9.mct-hidden-fc0138f9,
.mct-cursor-glow-fc0138f9.mct-hidden-fc0138f9 {
    opacity: 0;
}
