body {
    font-family: 'Inter', sans-serif;
}
.hero-section {
    background-color: #FFFFFF;
}
/* Modal 背景遮罩 */
.modal-overlay {
    background: rgba(0, 0, 0, 0.5);
}
/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
}

.loader {
    border: 2px solid #FFFFFF;
    border-top: 2px solid #aaa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
