/* assets/css/home-cursor.css */
html.has-custom-cursor,
html.has-custom-cursor *,
body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important;
}

.atikia-cursor-dot,
.atikia-cursor-ring,
.atikia-cursor-badge {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    display: none;
    will-change: transform;
    border-radius: 50%;
}

.atikia-cursor-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, #AC4DFF 0%, #6500BD 100%);
}

.atikia-cursor-ring {
    width: 32px;
    height: 32px;
}

/* City cursor badge */
.atikia-cursor-badge {
    width: 80px;
    height: 80px;
    display: none;
}

.atikia-cursor-badge__svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.atikia-cursor-badge__text {
    font-family: 'Aeonik', 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

html.has-custom-cursor .atikia-cursor-dot,
html.has-custom-cursor .atikia-cursor-ring {
    display: block;
}

/* Make sure links/buttons feel interactive even without pointer cursor */
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor .brick-button {
    cursor: none !important;
}