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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

/* Story Chapter Active State */
.story-chapter.active {
    opacity: 1;
    transform: translateX(0);
}

.story-chapter {
    transform: translateX(-10px);
    transition: all 0.6s ease-out;
}

/* Map Tooltip Customization */
.echarts-tooltip {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e7e5e4 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    border-radius: 4px !important;
    padding: 12px !important;
    font-family: 'Noto Serif SC', serif !important;
    color: #44403c !important;
}

.tooltip-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #d6d3d1;
    padding-bottom: 0.25rem;
}

.tooltip-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.tooltip-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-top: 0.5rem;
    border-radius: 2px;
}
