/* scenes.css - 场景网格、场景卡片 */
.scene-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 9px; margin-bottom: 14px; }
.scene-card { border: 1.5px solid #e0e0d8; border-radius: 10px; padding: 12px; cursor: pointer; transition: all .15s; position: relative; }
.scene-card:hover { border-color: #888; background: #fafaf8; }
.scene-card.selected { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.scene-card.selected .scene-sub { color: #aaa; }
.scene-icon { font-size: 20px; margin-bottom: 5px; }
.scene-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.scene-sub { font-size: 11px; color: #888; margin-top: 3px; line-height: 1.4; }
.scene-check { position: absolute; top: 8px; right: 8px; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.scene-card.selected .scene-check { background: #fff; border-color: #fff; color: #1a1a1a; }
