
/* Custom Fonts */
body {
    font-family: 'Inter', sans-serif;
}

.chinese-serif {
    font-family: 'Noto Serif SC', serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: #FF1069;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF106980;
}

/* Selection color */
::selection {
    background: #FF1069;
    color: #FFFFFF;
}

/* Hover transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop blur effect */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

/* Focus styles */
input:focus {
    outline: none;
}

/* Link transitions */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Minimal image effects */
img {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button hover states */
button:hover {
    transform: translateY(-1px);
}

/* Subtle animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
