body {
    cursor: none;
}
.custom-cursor-dot-64df9ecd {
    width: 8px;
    height: 8px;
    background-color: #ff0055;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}
.custom-cursor-ring-64df9ecd {
    width: 40px;
    height: 40px;
    border: 2px solid #ff0055;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
/* Hover state classes for JS */
.custom-cursor-ring-64df9ecd.hover-active {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 85, 0.1);
}
