.rune-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rune-slot-card,
.rune-slot {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rune-slot-card:hover,
.rune-slot:hover {
    border-color: var(--accent);
}

.rune-slot-title,
.rune-slot-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.rune-slot-empty {
    color: var(--text-muted);
    font-size: 14px;
    padding: 8px 0;
}

.rune-equipped,
.rune-mini {
    font-size: 13px;
}

.rune-select-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    min-width: 300px;
}

.rune-select-item {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: background 0.2s;
}

.rune-select-item:hover {
    background: rgba(245, 158, 11, 0.15);
}

.btn-unequip,
.btn-equip-open {
    margin-top: 8px;
}
