body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    cursor: none;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Force hide cursor on interactive elements to use custom cursor */
a, button, [role="button"], input, select, textarea {
    cursor: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ef4123;
}

/* Mobile fallback for cursor */
@media (max-width: 768px) {
    body { cursor: auto; }
    a, button, [role="button"], input, select, textarea {
        cursor: pointer !important;
    }
}

.stroke-text {
    -webkit-text-stroke: 1px #000;
}

/* Hide scrollbar for clean reveal */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

