/**
 * Film Link Scroll Styles
 * 为电影链接滚动功能提供样式
 */

.film-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.film-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.film-info-section {
    scroll-margin-top: 100px; /* 为固定导航栏留出空间 */
}

