/* Fjern standard cursor på alle elementer */
html, body, * {
    cursor: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fjern standard cursor på links */
a, a:hover, a:focus, a:active {
    cursor: none !important;
}

/* Fjern standard cursor på billeder */
img {
    cursor: none !important;
}

/* Fjern standard cursor på input felter */
input, textarea, button, select {
    cursor: none !important;
}

/* Custom cursor container */
.custom-cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
}

.custom-cursor {
    --size: 24px;
    --x: 0;
    --y: 0;
    
    position: fixed;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 0;
    transition: width 0.2s ease, height 0.2s ease, font-size 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hover effekt for links */
.custom-cursor.hover-link {
    --size: 28px;
    background: transparent;
    border: 2px solid #000;
}

/* Hover effekt for billeder med links */
.custom-cursor.hover-image {
    --size: 120px;
    background: #000;
    border: none;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}

.custom-cursor.active {
} 