html,
body,
* {
    cursor: none !important;
}

html,
body {
    min-height: 100vh;
}

.cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2147483647;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2147483647;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 15px #10b981, 0 0 30px rgba(16, 185, 129, 0.5);
}

/* Tech notch decoration */
.cursor-outer::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(16, 185, 129, 0.2);
    animation: cursorRotate 10s linear infinite;
}

@keyframes cursorRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hover State */
.cursor-outer.hover {
    width: 55px;
    height: 55px;
    background-color: rgba(16, 185, 129, 0.15);
    border-color: #34d399;
}

.cursor-inner.hover {
    width: 0;
    height: 0;
    opacity: 0;
}

/* Hand icon inside when hovering */
.cursor-outer::after {
    content: '\f25a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cursor-outer.hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Click Animation */
.cursor-outer.clicking {
    transform: translate(-50%, -50%) scale(0.85);
    background-color: rgba(16, 185, 129, 0.3);
}

@media (max-width: 1024px) {

    .cursor-outer,
    .cursor-inner {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}