@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");

* {
    cursor: none !important;
}

body {
    font-family: "Wanted Sans Variable", sans-serif !important;
    background-color: #f2f2f2;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cursor {
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s ease;
    opacity: 0;
}

.cursor.hover {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
}

/* 툴팁 기본 스타일 - 단순화 */
.tooltip-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #191f28;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 화살표 */
.tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #191f28;
}

.tooltip-box.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.custom-tooltip {
  --bs-tooltip-bg: #fff!important;
  --bs-tooltip-color: #000!important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px!important;
}