/* skin/css/list.css */

.neon-tabs {
    display: flex; gap: 12px; padding: 15px 20px; overflow-x: auto;
}
.nt-item {
    background: #242629; padding: 6px 18px; border-radius: 20px;
    font-size: 13px; color: #888; white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.nt-item.active {
    background: var(--mid-primary); color: #fff; border-color: var(--mid-primary);
    box-shadow: 0 0 12px rgba(127, 90, 240, 0.4);
}

/* Pagination */
.tspage {
    text-align: center; padding: 20px 0; font-size: 12px; color: #666;
}
.tspage a { margin: 0 5px; color: #ccc; }
.tspage b { color: var(--mid-primary); font-weight: bold; margin: 0 5px; }
.tspage i { font-style: normal; }

/* Reuse list items style from index.css logic */
.list-box { padding: 5px 20px; }
.dark-row {
    display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dark-row img { width: 50px; height: 50px; border-radius: 12px; margin-right: 12px; }
.dr-info { flex: 1; }
.dr-info h3 { font-size: 15px; font-weight: bold; margin-bottom: 3px; color: #fff; }
.dr-info p { font-size: 12px; color: #888; }


/* --- 分页样式 (适配柔光风) --- */
.tspage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    font-size: 13px;
    flex-wrap: wrap;
}

/* 普通链接 */
.tspage {
    font-size: 14px !important;
    background: none !important;
    clear: both !important;
    height: auto !important;
    overflow: hidden !important;
    line-height: 32px !important;
    padding: 0;
    text-align: center !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.tspage i { font-style: normal; font-weight: 500; }
.tspage a {
    color: #64748b !important;
    text-decoration: none;
    padding: 12px 16px;
    margin: 0 6px;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    border: 1px solid transparent;
}
.tspage a:hover {
    color: #4a6cf7 !important;
    background-color: #f8fafc !important;
    border-color: #e2e8f0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.tspage b {
    color: #fff !important;
    background-color: #4a6cf7 !important;
    padding: 12px 16px !important;
    margin: 0 6px !important;
    display: inline-block !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 12px rgba(74, 108, 247, 0.3) !important;
    transition: all 0.3s !important;
}
.tspage b:hover { box-shadow: 0 4px 15px rgba(74, 108, 247, 0.4) !important; }
.tspage .tsp_count, .tspage i:not(.tsp_next i):not(.tsp_prev i), .tspage .tsp_end, .tspage .tsp_first, .tspage a.tsp_more, .tspage a.tsp_end, .tspage a.tsp_first, .tspage .tsp_change { display: none !important; }